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