5namespace RoboidControl {
A digital (on/off, 1/0, true/false) sensor.
Definition DigitalSensor.h:8
DigitalSensor()
Create a digital sensor without communication abilities.
Definition DigitalSensor.cpp:5
virtual void ProcessBinary(char *bytes) override
Function used to process binary data received for this digital sensor.
Definition DigitalSensor.cpp:18
int GenerateBinary(char *bytes, unsigned char *ix) override
Function used to generate binary data for this digital sensor.
Definition DigitalSensor.cpp:13
bool state
The sigital state.
Definition DigitalSensor.h:24
A participant is a device which manages things. It can communicate with other participant to synchron...
Definition Participant.h:52
A thing is the primitive building block.
Definition Thing.h:20
Participant * owner
The participant managing this thing.
Definition Thing.h:74