9 lines
369 B
C++
9 lines
369 B
C++
#include "service/ProtocolGroup.h"
|
|
|
|
int ProtocolGroup::methods() const {
|
|
return TELLSTICK_TURNON | TELLSTICK_TURNOFF | TELLSTICK_DIM | TELLSTICK_BELL | TELLSTICK_LEARN | TELLSTICK_EXECUTE | TELLSTICK_TOGGLE | TELLSTICK_UP | TELLSTICK_DOWN | TELLSTICK_STOP;
|
|
}
|
|
|
|
std::string ProtocolGroup::getStringForMethod(int method, unsigned char data, Controller *) {
|
|
return "";
|
|
}
|