mirror of
https://github.com/Fishwaldo/WLED.git
synced 2025-07-23 13:29:25 +00:00
ESP8266: Allow auto modem sleep if power off and sleep permitted (#1184)
* Allow modem sleep if power off and sleep permitted * Only add auto modem sleep handling for ESP8266 * Add comment and remove redundant condition Co-authored-by: Aircoookie <cschwinne@gmail.com>
This commit is contained in:
parent
edbe8131ab
commit
1313a44ba3
1 changed files with 5 additions and 1 deletions
|
@ -84,10 +84,14 @@ void WLED::loop()
|
|||
|
||||
handleHue();
|
||||
handleBlynk();
|
||||
|
||||
yield();
|
||||
|
||||
if (!offMode)
|
||||
strip.service();
|
||||
#ifdef ESP8266
|
||||
else if (!noWifiSleep)
|
||||
delay(1); //required to make sure ESP enters modem sleep (see #1184)
|
||||
#endif
|
||||
}
|
||||
yield();
|
||||
#ifdef ESP8266
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue