This repository has been archived by the owner on Mar 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsenml_bool_record.h
62 lines (48 loc) · 1.74 KB
/
senml_bool_record.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/* _ __ ____ _ _
* | |/ / | _ \ | \ | |
* | ' / | |_) | | \| |
* | . \ | __/ | |\ |
* |_|\_\ |_| |_| \_|
*
* (c) 2018 KPN
* License: MIT License.
* Author: Jan Bogaerts
*
* support for bool sensor header
*/
#ifndef SENMLBOOLRECORD
#define SENMLBOOLRECORD
#include <senml_record_t.h>
/**
* A SenMLRecord that stores boolean data.
* This type of object can only be used for sensor data. If actuation is needed, use SenMLBoolActuator
* instead.
*/
class SenMLBoolRecord: public SenMLRecordTemplate<bool>
{
public:
SenMLBoolRecord(const char* name);
SenMLBoolRecord(const char* name, SenMLUnit unit);
SenMLBoolRecord(const char* name, SenMLUnit unit, bool value): SenMLRecordTemplate(name, unit, value){};
~SenMLBoolRecord(){};
/**
* renders all the fields to json, without the starting and ending brackets.
* Inheriters can extend this function if they want to add extra fields to the json output
* note: this is public so that custom implementations for the record object can use other objects
* internally and render to json using this function (ex: coordinatesRecord using 3 floatRecrods for lat, lon & alt.
* @returns: None
*/
virtual void fieldsToJson();
/**
* renders all the fields to cbor format. renders all the fields of the object without the length info
* at the beginning
* note: this is public so that custom implementations for the record object can use other objects
* internally and render to json using this function (ex: coordinatesRecord using 3 floatRecrods for
* lat, lon & alt.
* @returns: The number of bytes that were written.
*/
virtual int fieldsToCbor();
protected:
private:
};
#endif // SENMLBOOLRECORD