mirror of
https://github.com/IoTManagerProject/IoTManager.git
synced 2026-03-26 14:12:16 +03:00
Исправляем опечатку в условии LrdFX
This commit is contained in:
@@ -166,7 +166,7 @@ public:
|
||||
|
||||
} else if (command == "setEffect") {
|
||||
if (param.size() == 1) {
|
||||
if (param[0].valD < 0 | param[0].valD > 79)
|
||||
if (param[0].valD < 0 || param[0].valD > 79)
|
||||
_effectsMode = random(0, 79);
|
||||
else
|
||||
_effectsMode = param[0].valD;
|
||||
|
||||
Reference in New Issue
Block a user