-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Wifi AP SSID Doc Issue #4067
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
component: documentation
good first issue
If you want to help, this is is a good place to start
level: easy
Comments
SSID is different to MAC address - here ssid variable means pointer to
string (text) that is the network name. This name (ssid) is broadcasted by
the AP and you see it as network name on your device (smartphone, PC,
etc.). The MAC address is not designed to be randomly defined by users - it
is allocated by HW manufacturers (and sometimes overriden by developers).
But certified devices need to have a constant, pre-defined one.
For example:
const char ssid[] = "MyNewHotspot";
2018-01-01 23:47 GMT+02:00 timpur <notifications@github.com>:
… In the wifi AP doc there seems to be an error.
https://arduino-esp8266.readthedocs.io/en/latest/
esp8266wifi/soft-access-point-class.html#softap
ssid - character string containing network SSID (max. 63 characters)
Isnt the mac 32 char ? Think this is meant for the password?
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#4067>, or mute the thread
<https://github.com/notifications/unsubscribe-auth/ALTjCVetV4BmGbIrnD-4eYxOBvZ1hxRlks5tGVJ_gaJpZM4RQLiE>
.
|
@gicho I didn't mention mac? |
"Isnt the mac 32 char ? Think this is meant for the password?"
2018-01-02 0:20 GMT+02:00 timpur <notifications@github.com>:
… @gicho <https://github.com/gicho> I didn't mention mac?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#4067 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ALTjCfbBSUgdDHLXoSKKbnbyLMlsxr3Bks5tGVoUgaJpZM4RQLiE>
.
|
My bad meant to be "max", sorry. |
Fixed via #5325 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
component: documentation
good first issue
If you want to help, this is is a good place to start
level: easy
In the wifi AP doc there seems to be an error.
https://arduino-esp8266.readthedocs.io/en/latest/esp8266wifi/soft-access-point-class.html#softap
Isn't the max 32 char ? Think this is meant for the password?
The text was updated successfully, but these errors were encountered: