1234567891011121314151617181920 |
- # simple inquiry example
- import bluetooth
- nearby_devices = bluetooth.discover_devices(lookup_names=True)
- print("Found {} devices.".format(len(nearby_devices)))
- for addr, name in nearby_devices:
- print(" {} - {}".format(addr, name))
- class GSV4-BT():
- __init__(self):
- pass
- scan(self):
-
|