1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-13 13:01:55 +03:00

add ESP.eraseESPconfig() to erase the ESP SDK configuration (including wifi)

improve WiFiMulti
This commit is contained in:
Markus Sattler
2015-05-25 12:29:26 +02:00
parent dc52cf82c5
commit 5852c484ca
3 changed files with 28 additions and 0 deletions

View File

@ -47,6 +47,10 @@ wl_status_t ESP8266WiFiMulti::run(void) {
uint8 bestBSSID[6];
int32_t bestChannel;
DEBUG_WIFI_MULTI("[WIFI] delete old wifi config...\n");
WiFi.disconnect();
DEBUG_WIFI_MULTI("[WIFI] start scan\n");
// WiFi.scanNetworks will return the number of networks found
int8_t n = WiFi.scanNetworks();