From 65cd3ba562ccd9d70c0dfaee14edf62f4a7863af Mon Sep 17 00:00:00 2001 From: Hieromon Ikasamo Date: Fri, 3 May 2019 06:18:40 +0900 Subject: [PATCH] Added explanation about the first WiFi.begin --- docs/faq.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/faq.html b/docs/faq.html index cd0754a..b805d98 100644 --- a/docs/faq.html +++ b/docs/faq.html @@ -1095,7 +1095,7 @@ For AutoConnect menus to work properly, call To avoid this problem, try changing the channel.

ESP32 hardware equips only one RF circuitry for WiFi signal. At the AP_STA mode, ESP32 as an AP attempts connect to another AP on another channel while keeping the connection with the station then the channel switching will occur causes the station may be disconnected. But it may not be just a matter of channel switching causes ESP8266 has the same constraints too. It may be a problem with AutoConnect or the arduino core or SDK issue. This problem will persist until a specific solution.

Does not appear esp8266ap in smartphone.

-

Maybe it is successfully connected at the first WiFi.begin. ESP8266 remembers the last SSID successfully connected and will use at the next. It means SoftAP will only start up when the first WiFi.begin() fails.

+

Maybe it is successfully connected at the first WiFi.begin. ESP8266 remembers the last SSID successfully connected and will use at the next. It means SoftAP will only start up when the first WiFi.begin() fails.

The saved SSID would be cleared by WiFi.disconnect() with WIFI_STA mode. If you do not want automatic reconnection, you can erase the memorized SSID with the following simple sketch.

#include <ESP8266WiFi.h>