Skip to content

Instantly share code, notes, and snippets.

@jamesabruce
Created July 14, 2015 16:52
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save jamesabruce/ef2f418d91f188fe7d04 to your computer and use it in GitHub Desktop.
Detect user through Bluetooth demo, Python
#!/usr/bin/python
import bluetooth
import time
while True:
print "Checking " + time.strftime("%a, %d %b %Y %H:%M:%S", time.gmtime())
result = bluetooth.lookup_name('78:7F:70:38:51:1B', timeout=5)
if (result != None):
print "User present"
else:
print "User out of range"
time.sleep(10)
@beosro
Copy link

beosro commented Sep 6, 2017

Thank you! Nice pieces of code you have around ...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment