You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a hack for sure, but you can go to utils/bluetooth_utils.py and just change the line
if handler is not None:
try:
handler(mac_addr_str, adv_type, data, rssi)
except Exception as e:
print('Exception when calling handler with a BLE advertising event: %r' % (e,))
to
if handler is not None:
try:
handler(mac_addr_str, adv_type, data, rssi)
except Exception as e:
#print('Exception when calling handler with a BLE advertising event: %r' % (e,))
pass
When running python3 ble_read_state.py Exception is printed all over the ble_read_state screen making it hard to read
Maybe new iOS version?
The text was updated successfully, but these errors were encountered: