Comments added
This commit is contained in:
parent
fe3232cfe3
commit
8852f13d04
1 changed files with 3 additions and 0 deletions
|
@ -68,9 +68,11 @@ void setup()
|
|||
wifiManager.setTimeout(WIFI_CONFIG_PORTAL_TIMEOUT_S);
|
||||
|
||||
#ifndef SLEEP_IF_NO_WLAN_CONNECTION
|
||||
// do not sleep, repeat connecting
|
||||
while
|
||||
#endif
|
||||
#ifdef def SLEEP_IF_NO_WLAN_CONNECTION
|
||||
// stop connecting after fail to connect to wifi
|
||||
if
|
||||
#endif
|
||||
(!wifiManager.autoConnect(wifiName.c_str(), "DEADBEEF"))
|
||||
|
@ -82,6 +84,7 @@ void setup()
|
|||
delay(100);
|
||||
#endif
|
||||
#ifndef SLEEP_IF_NO_WLAN_CONNECTION
|
||||
// sleep a few seconds and go on trying to connect
|
||||
delay(5000);
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue