mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 09:05:56 +03:00
[GH-ISSUE #1265] Not an issue - a question on connecting to a choice of multiple SSID's #1082
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#1082
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 @dontpanic21 on GitHub (Jun 23, 2021).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/1265
Hi,
I'm trying to use wifimanager in a situation where the connecting device is roaming. There are multiple access points available which all have different SSID's however the password is the same for all of them.
What would be the best strategy for autoconnection to any/nearest available AP? Can I use autoconnect() to do this somehow, or do I need to save all the SSID's in SPIFFS and use startConfigPortal() to pick one to connect to?
Thanks,
Will.
@tablatronix commented on GitHub (Jun 23, 2021):
You can check out esp multi ap mode, but it doesnt let you pick, it auto cycles through them. wm can only handle the one flash saved config.
Your best bet is to just code your own connection loop
@dontpanic21 commented on GitHub (Jun 23, 2021):
Ok thanks for the advice,
Will.