mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 09:05:56 +03:00
[GH-ISSUE #368] wifiManager.autoConnect SSID not present on wifi #312
Labels
No labels
📶 WiFi
🕸️ HTTP
Branch
DEV Help Wanted
Discussion
Documentation
ESP32
Example
Good First Issue
Hotfix
In Progress
Incomplete
Needs Feeback
Priority
QA
Question
Task
Upstream/Dependancy
bug
duplicate
enhancement
invalid
pull-request
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/WiFiManager#312
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
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()
{
}
@flyingstarlai commented on GitHub (May 10, 2018):
how to solve this issue?
@tablatronix commented on GitHub (May 13, 2018):
No idea can you post some info?
Tried development branch?
@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.