SensESP 3.1.1
Universal Signal K sensor toolkit ESP32
Loading...
Searching...
No Matches
digital_output.h
Go to the documentation of this file.
1#ifndef SENSESP_SENSORS_DIGITAL_OUTPUT_H
2#define SENSESP_SENSORS_DIGITAL_OUTPUT_H
3
4#include <ArduinoJson.h>
5
8
9namespace sensesp {
10
18 public:
19 DigitalOutput(int pin);
20 void set(const bool& new_value) override;
21
22 private:
23 int pin_number_;
24};
25
26} // namespace sensesp
27
28#endif
void set(const bool &new_value) override
SymmetricTransform< bool > BooleanTransform
Definition transform.h:101