#include "TouchSensor.h" namespace RoboidControl { TouchSensor::TouchSensor(RemoteParticipant* participant) : Thing(participant) { this->touchedSomething = false; this->type = (unsigned char) Thing::Type::TouchSensor; } // TouchSensor::TouchSensor(RemoteParticipant* participant, unsigned char networkId, unsigned char thingId) : Thing(participant, networkId, thingId) { // this->touchedSomething = false; // } void TouchSensor::GenerateBinary(char* bytes, unsigned char* ix) {} void TouchSensor::ProcessBinary(char* bytes) {} } // namespace RoboidControl