mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 09:05:56 +03:00
[GH-ISSUE #267] What is the expected behaviour for this use case? #223
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#223
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 @neilyoung on GitHub (Dec 26, 2016).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/267
The setup:
I'm starting with last known AP disabled. As expected a couple of seconds later the Autoconnect network appears. I'm doing nothing, just re-enabling the last known AP.
Before that the log was full with things like this:
Finally after re-enabling HOME-G this log entry appears:
and a lot more later this:
connected...yeey :)So now I was expecting to not see the Autoconnect network anymore, but it is still there, wasting power.
a) What can I do in order to switch the Autoconnect AP off
b) Is this the expected behavior?
Regards
@tzapu commented on GitHub (Jan 2, 2017):
the network left there might be a bug of how it enables AP_STA mode.
should be sorted whenever i get around to doing more changes to the dev branch
cheers
@tablatronix commented on GitHub (Feb 8, 2017):
configportal unload does not always reset mode
notably timeout
most people do not know that ap mode is also persistent ( this was a surprise to me as it is not well documented anywhere. )
add a
WiFi.mode(WIFI_STA);before your esp.reset as a workaround.@tablatronix commented on GitHub (Feb 8, 2017):
@tzapu want me to pr this ?
@tzapu commented on GitHub (Feb 8, 2017):
in examples or part of the lib?
it's a surprise to me as well that _AP_STA is persistent, but i guess that explains some weird behaviour as well
cheers
@tablatronix commented on GitHub (Feb 8, 2017):
#312
I will look into the SDK and see if there is an option for this, but I think there is only 1 persistent toggle.