mirror of https://github.com/arendst/Tasmota.git
Make sleep for light scheme0 optional
Make sleep for light scheme0 optional with compile directive (enabled by default)
This commit is contained in:
parent
cee9fee756
commit
5b71095e02
|
@ -896,7 +896,11 @@ void LightAnimate(void)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
#ifdef PWM_LIGHTSCHEME0_IGNORE_SLEEP
|
||||||
sleep = (LS_POWER == Settings.light_scheme) ? Settings.sleep : 0; // If no animation then use sleep as is
|
sleep = (LS_POWER == Settings.light_scheme) ? Settings.sleep : 0; // If no animation then use sleep as is
|
||||||
|
#else
|
||||||
|
sleep = 0;
|
||||||
|
#endif // PWM_LIGHTSCHEME0_IGNORE_SLEEP
|
||||||
switch (Settings.light_scheme) {
|
switch (Settings.light_scheme) {
|
||||||
case LS_POWER:
|
case LS_POWER:
|
||||||
LightSetDimmer(Settings.light_dimmer);
|
LightSetDimmer(Settings.light_dimmer);
|
||||||
|
|
Loading…
Reference in New Issue