Як знайти свій SSID та пароль для esp8266?
Для того, щоб отримати з пам’яті контролера NodeMCU на базі ESP8266 назву точки доступу та пароль, можливо скористатися методом wifi.sta.getconfig()
, котрий посеред інших даних у складі масиву, що буде повернуто, видасть назву SSID та пароль:
Syntax
wifi.sta.getconfig()
Parameters
1 2 3 |
return_table: true - returns data in a table false - returns data in the old format (default) |
Returns
1 2 3 4 5 6 |
If return_table is true: config_table ssid - ssid of Access Point. pwd - password to Access Point, nil if no password was configured bssid_set - will return true if the station was configured specifically to connect to the AP with the matching bssid. bssid - If a connection has been made to the configured AP this field will contain the AP's MAC address. Otherwise "ff:ff:ff:ff:ff:ff" will be returned. |
1 2 3 |
If return_table is false: ssid, password, bssid_set, bssid, if bssid_set is equal to 0 then bssid is irrelevant |
To retrieve the access point name and password from the NodeMCU controller memory based on ESP8266, you can use the wifi.sta.getconfig ()
method, which will display the SSID and password among other data in the array to be returned.