Fix compile warning

This commit is contained in:
Theo Arends 2020-04-17 12:08:43 +02:00 committed by Javier Arigita
parent 1e1a2c1807
commit a82b87aaea
1 changed files with 3 additions and 0 deletions

View File

@ -542,6 +542,7 @@ void HueLightsCommand(uint8_t device, uint32_t device_id, String &response) {
} }
} else { } else {
#endif #endif
/*
switch(on) switch(on)
{ {
case false : ExecuteCommandPower(device, POWER_OFF, SRC_HUE); case false : ExecuteCommandPower(device, POWER_OFF, SRC_HUE);
@ -549,6 +550,8 @@ void HueLightsCommand(uint8_t device, uint32_t device_id, String &response) {
case true : ExecuteCommandPower(device, POWER_ON, SRC_HUE); case true : ExecuteCommandPower(device, POWER_ON, SRC_HUE);
break; break;
} }
*/
ExecuteCommandPower(device, (on) ? POWER_ON : POWER_OFF, SRC_HUE);
response += buf; response += buf;
resp = true; resp = true;
#ifdef USE_SHUTTER #ifdef USE_SHUTTER