module documentation
WiFi utilities for connecting and saving credentials.
| Function | connect |
Attempt to connect to the saved WiFi network. |
| Function | load |
Load the saved WiFi password from storage. |
| Function | load |
Load the saved WiFi settings from storage. |
| Function | load |
Load the saved WiFi SSID from storage. |
| Function | save |
Save the WiFi password to storage. |
| Function | save |
Save the WiFi SSID to storage. |
Attempt to connect to the saved WiFi network.
| Parameters | |
viewViewManager | The view manager instance for display and storage access. |
| Returns | |
bool | True if connected or connection started, False otherwise. |
Load the saved WiFi password from storage.
| Parameters | |
viewViewManager | The view manager instance for display and storage access. |
| Returns | |
str | The saved password. |
Load the saved WiFi settings from storage.
| Parameters | |
viewViewManager | The view manager instance for display and storage access. |
| Returns | |
dict | The saved WiFi settings. |
Load the saved WiFi SSID from storage.
| Parameters | |
viewViewManager | The view manager instance for display and storage access. |
| Returns | |
str | The saved SSID. |
Save the WiFi password to storage.
| Parameters | |
storage:Storage | The storage to save to. |
password:str | The password to save. |
| Returns | |
bool | True on success. |