mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-29 15:42:20 +03:00
Структурируем модули как надо
This commit is contained in:
@@ -1,61 +0,0 @@
|
||||
/******************************************************************
|
||||
Simple library for the WEMOS SHT30 Shield.
|
||||
|
||||
https://github.com/wemos/WEMOS_SHT3x_Arduino_Library
|
||||
|
||||
adapted for version 4 @Serghei63
|
||||
******************************************************************/
|
||||
|
||||
#include "Global.h"
|
||||
#include "classes/IoTItem.h"
|
||||
|
||||
|
||||
#include "Wire.h"
|
||||
#include <WEMOS_SHT3X.h>
|
||||
|
||||
SHT3X sht30(0x45);
|
||||
|
||||
class Sht30t : public IoTItem {
|
||||
public:
|
||||
Sht30t(String parameters): IoTItem(parameters) { }
|
||||
|
||||
void doByInterval() {
|
||||
if(sht30.get()==0){
|
||||
value.valD = sht30.cTemp;
|
||||
|
||||
SerialPrint("E", "Sensor Sht30t", "OK");
|
||||
|
||||
if (value.valD < -46.85F) regEvent(value.valD, "Sht30t"); // TODO: найти способ понимания ошибки получения данных
|
||||
else SerialPrint("E", "Sensor Sht30t", "Error");
|
||||
}
|
||||
}
|
||||
~Sht30t() {};
|
||||
};
|
||||
|
||||
class Sht30h : public IoTItem {
|
||||
public:
|
||||
Sht30h(String parameters): IoTItem(parameters) { }
|
||||
|
||||
void doByInterval() {
|
||||
if(sht30.get()==0){
|
||||
value.valD = sht30.humidity;
|
||||
|
||||
SerialPrint("E", "Sensor Sht30h", "OK");
|
||||
if (value.valD != -6) regEvent(value.valD, "Sht30h"); // TODO: найти способ понимания ошибки получения данных
|
||||
else SerialPrint("E", "Sensor Sht30h", "Error");
|
||||
}
|
||||
}
|
||||
~Sht30h() {};
|
||||
};
|
||||
|
||||
|
||||
void* getAPI_Sht30(String subtype, String param) {
|
||||
if (subtype == F("Sht30t")){
|
||||
return new Sht30t(param);
|
||||
}
|
||||
if (subtype == F("Sht30h")) {
|
||||
return new Sht30h(param);
|
||||
} else {
|
||||
return nullptr;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user