mirror of
https://github.com/airgradienthq/arduino.git
synced 2025-07-05 04:06:31 +02:00
23 lines
265 B
C
23 lines
265 B
C
![]() |
#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_ */
|