[temporary commit]

This commit is contained in:
Phat Nguyen
2024-04-03 21:26:04 +07:00
parent c1ab99ba8d
commit 027ffeaa92
214 changed files with 1150 additions and 506042 deletions

22
src/AgValue.h Normal file
View File

@ -0,0 +1,22 @@
#ifndef _AG_VALUE_H_
#define _AG_VALUE_H_
class AgValue {
private:
public:
AgValue(){
}
~AgValue(){
}
float Temperature = -1001;
int Humidity = -1;
int CO2 = -1;
int PM25 = -1;
int TVOC = -1;
int NOx = -1;
};
#endif /** _AG_VALUE_H_ */