Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of kpn_senml by
Diff: senml_bool_record.h
- Revision:
- 0:a9259748d982
diff -r 000000000000 -r a9259748d982 senml_bool_record.h
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/senml_bool_record.h Sat May 19 17:35:20 2018 +0000
@@ -0,0 +1,63 @@
+/* _ __ ____ _ _
+ * | |/ / | _ \ | \ | |
+ * | ' / | |_) | | \| |
+ * | . \ | __/ | |\ |
+ * |_|\_\ |_| |_| \_|
+ *
+ * (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
+
+
+
+
+
+
+
