Created
September 26, 2016 11:08
-
-
Save DieterKoblenz/9efca3c9b90bd851c4130fe4c4b22677 to your computer and use it in GitHub Desktop.
Find your MAC
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
# simple inquiry example | |
import bluetooth | |
nearby_devices = bluetooth.discover_devices(lookup_names=True) | |
print("found %d devices" % len(nearby_devices)) | |
for addr, name in nearby_devices: | |
print(" %s - %s" % (addr, name)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment