Skip to content

Instantly share code, notes, and snippets.

@jamesabruce
Created July 14, 2015 16:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamesabruce/da87ec62a02899a21de3 to your computer and use it in GitHub Desktop.
Save jamesabruce/da87ec62a02899a21de3 to your computer and use it in GitHub Desktop.
DIY Proximity Lock v.01
#!/usr/bin/python
import bluetooth
import time
import RPi.GPIO as GPIO
GPIO.setmode(GPIO.BCM)
RELAY = 23
GPIO.setup(RELAY, GPIO.OUT)
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"
GPIO.output(RELAY,1)
else:
print "User out of range"
GPIO.output(RELAY,0)
time.sleep(10)
@toshibochan
Copy link

Hi thanks for make great codes! I have request. You think you can add proximity? For exemple I want open the door only when I very close. And how I can add more devices to the code? For exemple I want add iPhone and Apple Watch and other people phones.

@vswraith
Copy link

+1 would love to get distance as well

@floripaolo
Copy link

HI! Thanks for this idea! How would you add more than one phone that triggers the relais?
Thanks!

@s200bym
Copy link

s200bym commented Nov 20, 2020

Is it possible to convert this to MicroPython to work on the ESP32?
Thanks.

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