mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 00:55:52 +03:00
[GH-ISSUE #956] Hide Access point(SSID) #812
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#812
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 @Muzzamil1 on GitHub (Oct 22, 2019).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/956
Hi, Thanks for the great library!
Is it possible to hide the access point(SSID)?
and how to connect if there is a network that requires a user name or something like a login key?
@Muzzamil1 commented on GitHub (Oct 29, 2019):
Hi @tablatronix
Do you have any idea about it?
@tablatronix commented on GitHub (Oct 30, 2019):
Yes it is possible I think, let me check.
Logging into portals will be hard though
@Muzzamil1 commented on GitHub (Oct 30, 2019):
Let me know when you check.
@dknop97 commented on GitHub (Oct 30, 2019):
I have a trouble with the SSID, because after the success login with the captive portal, the AP SSID still detectable, but don't active, that is, I keep seeing the SSID, but I can't connect to it. Do you know something like this and a solution?
@tablatronix commented on GitHub (Oct 30, 2019):
@dknop97 That is the esp doing that, it is the default, you will need to set wifi mode to sta in your code
WiFi.mode(WIFI_STA);
@tablatronix commented on GitHub (Nov 14, 2019):
@dknop97 commented on GitHub (Nov 14, 2019):
Sorry, I'm confused. What I need to do with this? Put where? How? Sorry again.
@tablatronix commented on GitHub (Nov 14, 2019):
this is for the feature @muzzamil1 requested
Just set that before calling autoconnect etc..
wm.setWiFiAPHidden(true);// hide the portal ap@tihoangyeudau commented on GitHub (Nov 16, 2019):
when i add wm.setWiFiAPHidden(true); before autoconnect, there is access point(SSID) named : "Hidden Wifi".
i think your code is wrong.
@Muzzamil1 commented on GitHub (Nov 18, 2019):
Hi @tablatronix
Thanks, It worked.