module documentation

WiFi Connect - Connect to a WiFi network.

Function run Run the app and handle connection input.
Function start Start the app and load the saved WiFi credentials.
Function stop Stop the app and clean up.
Function __connect_callback Callback for Wi-Fi connection status updates.
Function _get_status_text Build the connection status text.
Variable _connect Undocumented
Variable _connection_start_time Undocumented
Variable _password Undocumented
Variable _ssid Undocumented
Variable _status_message Undocumented
def run(view_manager):

Run the app and handle connection input.

Parameters
view_manager:ViewManagerThe view manager instance for display and storage access.
def start(view_manager) -> bool:

Start the app and load the saved WiFi credentials.

Parameters
view_manager:ViewManagerThe view manager instance for display and storage access.
Returns
boolTrue if the app started, False if no credentials are saved.
def stop(view_manager):

Stop the app and clean up.

Parameters
view_manager:ViewManagerThe view manager instance for display and storage access.
def __connect_callback(state: int, error: str):

Callback for Wi-Fi connection status updates.

Parameters
state:intThe Wi-Fi connection state.
error:strThe connection error message.
def _get_status_text(view_manager) -> str:

Build the connection status text.

Parameters
view_manager:ViewManagerThe view manager instance for display and storage access.
Returns
strThe status text to display.
_connect =

Undocumented

_connection_start_time: int =

Undocumented

_password: str =

Undocumented

_ssid: str =

Undocumented

_status_message: str =

Undocumented