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.

Fork of kpn_senml by KPN IoT

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