module documentation

BLE RSSI Monitor - Monitor signal strength of nearby devices in real-time

Function bluetooth_callback Handle Bluetooth scan result events.
Function run Run the app and update the RSSI display.
Function start Start the RSSI Monitor app and begin scanning.
Function stop Stop the app and stop scanning.
Variable _bluetooth Undocumented
Variable _devices Undocumented
Variable _last_update Undocumented
Variable _scan_count Undocumented
def bluetooth_callback(event, data):

Handle Bluetooth scan result events.

Parameters
event:intBluetooth event code.
data:tupleEvent payload with address and RSSI.
def run(view_manager):

Run the app and update the RSSI display.

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

Start the RSSI Monitor app and begin scanning.

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

Stop the app and stop scanning.

Parameters
view_manager:ViewManagerThe view manager instance for display and storage access.
_bluetooth =

Undocumented

_devices: dict =

Undocumented

_last_update: int =

Undocumented

_scan_count: int =

Undocumented