mirror of https://github.com/arendst/Tasmota.git
Fix compile warning
This commit is contained in:
parent
1e1a2c1807
commit
a82b87aaea
|
@ -542,6 +542,7 @@ void HueLightsCommand(uint8_t device, uint32_t device_id, String &response) {
|
|||
}
|
||||
} else {
|
||||
#endif
|
||||
/*
|
||||
switch(on)
|
||||
{
|
||||
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);
|
||||
break;
|
||||
}
|
||||
*/
|
||||
ExecuteCommandPower(device, (on) ? POWER_ON : POWER_OFF, SRC_HUE);
|
||||
response += buf;
|
||||
resp = true;
|
||||
#ifdef USE_SHUTTER
|
||||
|
|
Loading…
Reference in New Issue