diff options
| author | Arslaan Pathan <[email protected]> | 2026-03-29 15:02:58 +1300 |
|---|---|---|
| committer | Arslaan Pathan <[email protected]> | 2026-03-29 15:02:58 +1300 |
| commit | 392a6c6abbe5d9267f7a9c6c55fd098d94f00281 (patch) | |
| tree | 9a867e515108195aff27cd855d188b9f904a9c0a | |
| parent | 6f1e4aa35cb206c066e8395489c3d514b8079375 (diff) | |
| download | zwzn-freefit-re-392a6c6abbe5d9267f7a9c6c55fd098d94f00281.tar.xz zwzn-freefit-re-392a6c6abbe5d9267f7a9c6c55fd098d94f00281.zip | |
Improve syncTime BLE and others
| -rw-r--r-- | FereFit_syncTime_BLE.py (renamed from FereFit_BLE_test.py) | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/FereFit_BLE_test.py b/FereFit_syncTime_BLE.py index 59efac0..0076127 100644 --- a/FereFit_BLE_test.py +++ b/FereFit_syncTime_BLE.py @@ -1,5 +1,12 @@ import asyncio -from bleak import BleakScanner, BleakClient +import sys +try: + from bleak import BleakScanner, BleakClient +except ModuleNotFoundError: + print("Error importing bleak, are you sure you installed it?") + print("Try running the following command: \"pip3 install bleak\"") + print("If that fails, try this: \"pip3 install bleak --break-system-packages\"") + sys.exit(1) import time, calendar async def sync(device_name: str): |
