did stuff idk i'm cooked

This commit is contained in:
2024-06-22 22:37:24 +02:00
parent 2b1c12f273
commit 961fba65be
13 changed files with 53 additions and 24 deletions

View File

View File

@@ -0,0 +1,8 @@
from bluepy.btle import Scanner
scanner = Scanner(0)
print('Start scan...')
devices = scanner.scan(10)
for device in devices:
print('address : %s' % device.addr.upper())
print(device.getScanData())
print('')