mirror of
https://github.com/airgradienthq/arduino.git
synced 2025-07-16 02:02:11 +02:00
[temporary commit]
This commit is contained in:
22
src/AgValue.h
Normal file
22
src/AgValue.h
Normal 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_ */
|
Reference in New Issue
Block a user