5namespace RoboidControl {
A participant is a device which manages things. It can communicate with other participant to synchron...
Definition Participant.h:14
A temperature sensor.
Definition TemperatureSensor.h:8
virtual void SetTemperature(float temperature)
Manually override the measured temperature.
Definition TemperatureSensor.cpp:16
float temperature
The measured temperature.
Definition TemperatureSensor.h:11
virtual void ProcessBinary(char *bytes) override
Function to extract the temperature received in the binary message.
Definition TemperatureSensor.cpp:25
void GenerateBinary(char *bytes, unsigned char *ix) override
Function to create a binary message with the temperature.
Definition TemperatureSensor.cpp:20
A thing is the primitive building block.
Definition Thing.h:20
unsigned char networkId
The network ID of this thing.
Definition Thing.h:64