mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 00:55:52 +03:00
[GH-ISSUE #590] auto generated accesses point on reset #492
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#492
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 @tusharpc on GitHub (Apr 12, 2018).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/590
WiFimanager Branch/Release: Development
Esp8266/Esp32: ESP8266
Hardware: ESP-12e
Core Version: 2.4.1,
Description
Problem description:
using development branch and basic auto connect example. Once the device is set to connect to an access point, everything works perfect, reset the NodeMCU and it still connects as client but it simultaneously spins an auto generated access point with default chip name + ID
Settings in IDE
Module: NodeMcu
Additional libraries:
Sketch
Debug Messages
@tusharpc commented on GitHub (Apr 14, 2018):
@tablatronix commented on GitHub (Apr 14, 2018):
are you setting mode sta in your code? Not sure what esp defaults to after you erase flash
@tablatronix commented on GitHub (Apr 14, 2018):
ill look into any bugs , i had a way to fix this but it is disabled because it was causing issues, so it might be wm.
@tusharpc commented on GitHub (Apr 14, 2018):
@tablatronix , not sure what you mean "setting mode sta in your code?", pretty much using the standard example, can you point me to some examples? (I'm a bit slow on the coding side ) .
btw this issue is not happening on the master version, but it has the issue of not being able to reach the config portal if the original AP is unavailable, you described a solution here : #525
also, just unbelievably awesome work you (and Tzapu ) doing here Shawn. I think it has truly opened up the esps to be IOT's for the masses.
@tablatronix commented on GitHub (Apr 14, 2018):
The master version changes your modes , the development version should not, so you are probably seeing the correct behavior now.
In your code call WiFi.mode(WIFI_STA) and it will remember it even if you remove it after running it.
I will try to fix the feature that lets you set the preffered mode after wm exits. Its disabled it crashes stuff. Also will check for any bugs that might be changing modes
@tusharpc commented on GitHub (Apr 14, 2018):
@tablatronix thanks this seems to have done the trick. no more mysterious Chip ID access points!
thanks much!
@iamjameshannam commented on GitHub (May 28, 2018):
Is there a way to grab the device ID and create a unique device name on the splash screen? For example, MyDevice_1234?