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
senml_bool_actuator.h
- Committer:
- kpniot
- Date:
- 2018-05-27
- Revision:
- 2:9b44be6e79ac
- Parent:
- 0:a9259748d982
File content as of revision 2:9b44be6e79ac:
/* _ __ ____ _ _
* | |/ / | _ \ | \ | |
* | ' / | |_) | | \| |
* | . \ | __/ | |\ |
* |_|\_\ |_| |_| \_|
*
* (c) 2018 KPN
* License: MIT License.
* Author: Jan Bogaerts
*
* support for bool actuator header
*/
#ifndef SENMLBOOLACTUATOR
#define SENMLBOOLACTUATOR
#include <senml_bool_record.h>
#define BOOL_ACTUATOR_SIGNATURE void (*callback)(bool)
/**
* A SenMLRecord that stores boolean data and supports actuation.
*/
class SenMLBoolActuator: public SenMLBoolRecord
{
public:
SenMLBoolActuator(const char* name, BOOL_ACTUATOR_SIGNATURE): SenMLBoolRecord(name, SENML_UNIT_NONE, false), callback(callback) {};
SenMLBoolActuator(const char* name, SenMLUnit unit, BOOL_ACTUATOR_SIGNATURE): SenMLBoolRecord(name, unit, false), callback(callback) {};
SenMLBoolActuator(const char* name, SenMLUnit unit, bool value, BOOL_ACTUATOR_SIGNATURE): SenMLBoolRecord(name, unit, value), callback(callback) {};
~SenMLBoolActuator(){};
protected:
//called while parsing a senml message, when the parser found the value for an SenMLJsonListener
virtual void actuate(const void* value, int dataLength, SenMLDataType dataType);
private:
BOOL_ACTUATOR_SIGNATURE;
};
#endif // SENMLBOOLACTUATOR
