Заставляем вирт кнопку отправлять целые значения

This commit is contained in:
2022-08-14 19:06:05 +03:00
parent 22433ef65d
commit 1fcec9ba80
2 changed files with 5 additions and 1 deletions

View File

@@ -11,6 +11,10 @@ class VButton : public IoTItem {
regEvent((String)(int)value.valD, "VButton");
}
String getValue() {
return (String)(int)value.valD;
}
void doByInterval() { }
};