SensESP 3.4.1-alpha
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 <tuple>
5
6#include "transform.h"
7
8namespace sensesp {
9
17class DewPoint : public Transform<std::tuple<float, float>, float> {
18 public:
19 DewPoint();
20 virtual void set(const std::tuple<float, float>& input) override;
21};
22
23} // namespace sensesp
24
25#endif
Transforms temperature and relative humidity in dew point temperature.
Definition dew_point.h:17
virtual void set(const std::tuple< float, float > &input) override
Definition dew_point.cpp:11
The main Transform class. A transform is identified primarily by the type of value that is produces (...
Definition transform.h:68