15 lines
513 B
C++
15 lines
513 B
C++
#include "TouchSensor.h"
|
|
|
|
namespace RoboidControl {
|
|
|
|
TouchSensor::TouchSensor(RemoteParticipant* participant) : Thing(participant) {
|
|
this->touchedSomething = false;
|
|
}
|
|
|
|
// 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
|