Browse Source

Extended wifi-timeout

master
biologist79 4 years ago
committed by GitHub
parent
commit
cb5dbd4030
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/Wlan.cpp

2
src/Wlan.cpp

@ -73,7 +73,7 @@ void Wlan_Cyclic(void) {
WiFi.begin(_ssid, _pwd);
uint8_t tryCount = 0;
while (WiFi.status() != WL_CONNECTED && tryCount <= 4) {
while (WiFi.status() != WL_CONNECTED && tryCount <= 12) {
delay(500);
Serial.print(F("."));
tryCount++;

Loading…
Cancel
Save