Jan-10-2022, 01:06 PM
Hello ,
I'm trying to scan for bluetooth devices around me
I'm using this simple code I have found here (
when I run it it show me a list of devices my computer allready know and connect to them in the past
1. why is it ?
2. what do I need to in order to scan and see "Live" devices?
Thanks,
I'm trying to scan for bluetooth devices around me
I'm using this simple code I have found here (
1 |
https: / / geektechstuff.com / 2020 / 06 / 01 / python - and - bluetooth - part - 1 - scanning - for - devices - and - services - python / |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# geektechstuff bluetooth import bluetooth def scan(): print ( "Scanning for bluetooth devices:" ) devices = bluetooth.discover_devices(lookup_names = True , lookup_class = True ) number_of_devices = len (devices) print (number_of_devices, "devices found" ) for addr, name, device_class in devices: print ( "\n" ) print ( "Device:" ) print ( "Device Name: %s" % (name)) print ( "Device MAC Address: %s" % (addr)) print ( "Device Class: %s" % (device_class)) print ( "\n" ) return |
1. why is it ?
2. what do I need to in order to scan and see "Live" devices?
Thanks,