Connect to WiFi and esp8266 #2579
jensahylda
started this conversation in
Ideas
Replies: 2 comments
-
See #2522 which added an overload to
You'll need to find the station BSSID and pass it in the config call. |
Beta Was this translation helpful? Give feedback.
0 replies
-
Thank you very much.
fre. 4. nov. 2022 17.23 skrev Mike ***@***.***>:
… See #2522 <#2522> which added an
overload to Station::config() which takes a StationClass::Config
structure. Here's a brief how-to:
Config cfg{
.ssid = WIFI_SSID,
.password = WIFI_PASSWORD,
.bssid = "Actual BSSID",
.autoConnectOnStartup = ...,
.save = ...,
};
WifiStation,config(cfg);
You'll need to find the station BSSID and pass it in the config call.
—
Reply to this email directly, view it on GitHub
<#2579 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABR5WPKGVULSLLTO2PITOTLWGU2BBANCNFSM6AAAAAARXKDJSA>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello
I have a feeling that when i connect to a WiFi with multiple identical networks. Say a WiFi router with name "MyRouter" and password "12345678". And then an extender with same name "MyRouter" and password "12345678".
Then its random which one is connected to. I would expect the SSID with the best signal quality is chosen but i think its random.
Anyone knows if this assumption is correct? If yes, any hints where to modify Sming to achieve this?
Regards Jens
Beta Was this translation helpful? Give feedback.
All reactions