Files
arduino/src/AgValue.h

21 lines
294 B
C
Raw Normal View History

2024-04-03 21:26:04 +07:00
#ifndef _AG_VALUE_H_
#define _AG_VALUE_H_
class AgValue {
private:
public:
AgValue() {}
~AgValue() {}
2024-04-03 21:26:04 +07:00
float Temperature = -1001;
int Humidity = -1;
int CO2 = -1;
int PM25 = -1;
int TVOC = -1;
int TVOCRaw = -1;
2024-04-03 21:26:04 +07:00
int NOx = -1;
int NOxRaw = -1;
2024-04-03 21:26:04 +07:00
};
#endif /** _AG_VALUE_H_ */