SensESP 2.7.2
Universal Signal K sensor toolkit ESP32
Loading...
Searching...
No Matches
signalk_time.h
Go to the documentation of this file.
1#ifndef _signalk_time_H_
2#define _signalk_time_H_
3
5#include "signalk_emitter.h"
6
7namespace sensesp {
8
9class SKOutputTime : public TimeString, public SKEmitter {
10 public:
12 virtual String as_signalk() override;
13 virtual void get_configuration(JsonObject& doc) override;
14 virtual bool set_configuration(const JsonObject& config) override;
15 virtual String get_config_schema() override;
16};
17
18} // namespace sensesp
19
20#endif
Construct a new transform based on a single function.
A class that produces Signal K output to be forwarded to the Signal K server (if the system is connec...
virtual String get_config_schema() override
virtual void get_configuration(JsonObject &doc) override
virtual String as_signalk() override
virtual bool set_configuration(const JsonObject &config) override
Consumes a time_t time object and produces a human readable string of the time for UTC in ISO 8601 fo...
Definition timestring.h:15