Treehopper C++ API
HumiditySensor.h
Go to the documentation of this file.
1 #pragma once
2 
4 #include <Libraries/Pollable.h>
5 
6 namespace Treehopper {
7  namespace Libraries {
8  namespace Sensors {
9  namespace Humidity {
10  class LIBRARIES_API HumiditySensor : virtual public Pollable {
11  public:
12  double relativeHumidity();
13 
14  protected:
15  double _relativeHumidity;
16  };
17  }
18  }
19  }
20 }
21 
#define LIBRARIES_API
Definition: Treehopper.Libraries.h:17
Definition: AdcPin.h:3
Definition: Pollable.h:8