Update xdrv_04_light.ino

This commit is contained in:
Theo Arends 2019-01-27 11:25:28 +01:00 committed by GitHub
parent f23d18723e
commit 269258bde5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 5 deletions

View File

@ -756,11 +756,7 @@ void LightAnimate(void)
}
}
else {
if (Settings.light_scheme > 0) {
sleep = 0;
} else {
sleep = Settings.sleep;
}
sleep = (LS_POWER == Settings.light_scheme) ? Settings.sleep : 0; // If no animation then use sleep as is
switch (Settings.light_scheme) {
case LS_POWER:
LightSetDimmer(Settings.light_dimmer);