SensESP 3.0.1
Universal Signal K sensor toolkit ESP32
Loading...
Searching...
No Matches
dew_point.h
Go to the documentation of this file.
1#ifndef SENSESP_TRANSFORMS_DEW_POINT_H_
2#define SENSESP_TRANSFORMS_DEW_POINT_H_
3
4#include "transform.h"
5
6namespace sensesp {
7
15class DewPoint : public FloatTransform {
16 public:
18 virtual void set(const float& input) override;
19
20 private:
21 float inputs[2]{};
22};
23
24} // namespace sensesp
25
26#endif
Transforms temperature and relative humidity in dew point temperature.
Definition dew_point.h:15
virtual void set(const float &input) override
Definition dew_point.cpp:7