5namespace RoboidControl {
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
A sensor which can detect touches.
Definition TouchSensor.h:8
int GenerateBinary(char *bytes, unsigned char *ix) override
Function used to generate binary data for this touch sensor.
Definition TouchSensor.cpp:14
bool touchedSomething
Value which is true when the sensor is touching something, false otherwise.
Definition TouchSensor.h:26
TouchSensor()
Create a touch sensor without communication abilities.
Definition TouchSensor.cpp:5
virtual void ProcessBinary(char *bytes) override
Function used to process binary data received for this touch sensor.
Definition TouchSensor.cpp:19