This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Super basic code to scan for and connect to v5 devices using the python bleak library. Prints out all data read over the user port. | |
""" | |
import argparse | |
import asyncio | |
from bleak import BleakScanner, BleakClient | |
SERVICE_UUID = "08590f7e-db05-467e-8757-72f6faeb13d5" |