[GH-ISSUE #368] wifiManager.autoConnect SSID not present on wifi #312

Open
opened 2026-02-28 01:24:40 +03:00 by kerem · 3 comments
Owner

Originally created by @josep112 on GitHub (May 10, 2017).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/368

I have a serious problem in my esp8266 esp12, they show me the AP in the serial with the AutoConnectAP name but the same does not appear on the wifi of the phone or the computer, I am using the wifimanager version 0.12, any help is welcome

*WM: AutoConnect
bcn 0
del if1
mode : sta(a0:20:a6:16:27:75)
*WM: Connecting as wifi client...
*WM: Using last saved values, should be faster
*WM: Connection result:
*WM: 0
mode : sta(a0:20:a6:16:27:75) + softAP(a2:20:a6:16:27:75)
add if1
dhcp server start:(ip:192.168.4.1,mask:255.255.255.0,gw:192.168.4.1)
bcn 100
*WM: SET AP STA
*WM:
*WM: Configuring access point...
*WM: AutoConnectAP
*WM: AP IP address:
*WM: 192.168.4.1
*WM: HTTP server started

my code:

#include <ESP8266WiFi.h> //https://github.com/esp8266/Arduino
#include <DNSServer.h>
#include <ESP8266WebServer.h>
#include <WiFiManager.h> //https://github.com/tzapu/WiFiManager

void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.setDebugOutput(true);
ESP.eraseConfig();
delay(1000);
WiFiManager wifiManager;
wifiManager.autoConnect("AutoConnectAP");
Serial.setDebugOutput(true);
Serial.println("connected...yeey :)");
}

void loop()
{

}

Originally created by @josep112 on GitHub (May 10, 2017). Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/368 I have a serious problem in my esp8266 esp12, they show me the AP in the serial with the AutoConnectAP name but the same does not appear on the wifi of the phone or the computer, I am using the wifimanager version 0.12, any help is welcome *WM: AutoConnect bcn 0 del if1 mode : sta(a0:20:a6:16:27:75) *WM: Connecting as wifi client... *WM: Using last saved values, should be faster *WM: Connection result: *WM: 0 mode : sta(a0:20:a6:16:27:75) + softAP(a2:20:a6:16:27:75) add if1 dhcp server start:(ip:192.168.4.1,mask:255.255.255.0,gw:192.168.4.1) bcn 100 *WM: SET AP STA *WM: *WM: Configuring access point... *WM: AutoConnectAP *WM: AP IP address: *WM: 192.168.4.1 *WM: HTTP server started my code: #include <ESP8266WiFi.h> //https://github.com/esp8266/Arduino #include <DNSServer.h> #include <ESP8266WebServer.h> #include <WiFiManager.h> //https://github.com/tzapu/WiFiManager void setup() { // put your setup code here, to run once: Serial.begin(115200); Serial.setDebugOutput(true); ESP.eraseConfig(); delay(1000); WiFiManager wifiManager; wifiManager.autoConnect("AutoConnectAP"); Serial.setDebugOutput(true); Serial.println("connected...yeey :)"); } void loop() { }
Author
Owner

@flyingstarlai commented on GitHub (May 10, 2018):

how to solve this issue?

<!-- gh-comment-id:387946075 --> @flyingstarlai commented on GitHub (May 10, 2018): how to solve this issue?
Author
Owner

@tablatronix commented on GitHub (May 13, 2018):

No idea can you post some info?
Tried development branch?

<!-- gh-comment-id:388646146 --> @tablatronix commented on GitHub (May 13, 2018): No idea can you post some info? Tried development branch?
Author
Owner

@tolgahansusur commented on GitHub (Dec 16, 2019):

Just erase flash of esp 8266 totally before uploading code. It will work.

https://www.espressif.com/en/support/download/other-tools?keys=&field_type_tid%5B%5D=14
You can download eraser app from link above.

<!-- gh-comment-id:566034431 --> @tolgahansusur commented on GitHub (Dec 16, 2019): Just erase flash of esp 8266 totally before uploading code. It will work. https://www.espressif.com/en/support/download/other-tools?keys=&field_type_tid%5B%5D=14 You can download eraser app from link above.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/WiFiManager#312
No description provided.