Browse Source

changed scan logic - only scan on demand when starting up or a webpage is hit

Alan Steremberg 8 years ago
parent
commit
3100e43800
1 changed files with 1 additions and 0 deletions
  1. 1 0
      ESPAsyncWiFiManager.cpp

+ 1 - 0
ESPAsyncWiFiManager.cpp

@@ -325,6 +325,7 @@ boolean  AsyncWiFiManager::startConfigPortal(char const *apName, char const *apP
 	if ( millis() > scannow + 10000)
 	{
 	DEBUG_WM(F("About to scan()"));
+	shouldscan=true;  // since we are modal, we can scan every time
 	scan();
 	scannow= millis() ;
 	}