The KPN SenML library helps you create and parse senml documents in both json and cbor format. The library can be used for sending sensor data and receiving actuator commands.

Revision:
0:a9259748d982
diff -r 000000000000 -r a9259748d982 senml_float_actuator.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/senml_float_actuator.cpp	Sat May 19 17:35:20 2018 +0000
@@ -0,0 +1,38 @@
+/*  _  __  ____    _   _ 
+ * | |/ / |  _ \  | \ | |
+ * | ' /  | |_) | |  \| |
+ * | . \  |  __/  | |\  |
+ * |_|\_\ |_|     |_| \_|
+ * 
+ * (c) 2018 KPN
+ * License: MIT License.
+ * Author: Jan Bogaerts
+ * 
+ * support for float actuators
+ */
+
+#include <senml_float_actuator.h>
+#include <senml_logging.h>
+
+void SenMLFloatActuator::actuate(const void* value, int dataLength, SenMLDataType dataType)
+{
+    if(dataType == SENML_TYPE_NR || dataType == CBOR_TYPE_DOUBLE){
+        this->set((float)*((double*)value));
+        if(this->callback)
+            this->callback((float)*((double*)value));
+    }
+    else if(dataType == CBOR_TYPE_FLOAT){
+        this->set(*((float*)value));
+        if(this->callback)
+            this->callback(*((float*)value));
+    }
+    else
+        log_debug("invalid type");
+}
+
+
+
+
+
+
+