SensESP 3.0.1
Universal Signal K sensor toolkit ESP32
Loading...
Searching...
No Matches
heat_index.h
Go to the documentation of this file.
1#ifndef SENSESP_TRANSFORMS_HEAT_INDEX_H_
2#define SENSESP_TRANSFORMS_HEAT_INDEX_H_
3
4#include "transform.h"
5
6namespace sensesp {
7
17 public:
19 virtual void set(const float& input) override;
20
21 private:
22 float inputs[2]{};
23};
24
32class HeatIndexEffect : public Transform<float, String> {
33 public:
35 virtual void set(const float& input) override;
36};
37
38} // namespace sensesp
39
40#endif
Transforms heat index temperature to heat index effect.
Definition heat_index.h:32
virtual void set(const float &input) override
Transforms temperature and relative humidity in heat index temperature.
Definition heat_index.h:16
virtual void set(const float &input) override
Definition heat_index.cpp:9
The main Transform class. A transform is identified primarily by the type of value that is produces (...
Definition transform.h:53