add WiFiManager and 'U8g2 to Libraries`

This commit is contained in:
Phat Nguyen
2024-04-04 18:35:15 +07:00
parent dba385f5bb
commit f681d4b2e8
247 changed files with 515031 additions and 795 deletions

View File

@ -4,19 +4,17 @@
class AgValue {
private:
public:
AgValue(){
}
~AgValue(){
}
AgValue() {}
~AgValue() {}
float Temperature = -1001;
int Humidity = -1;
int CO2 = -1;
int PM25 = -1;
int TVOC = -1;
int TVOCRaw = -1;
int NOx = -1;
int NOxRaw = -1;
};
#endif /** _AG_VALUE_H_ */