Skip to content

Instantly share code, notes, and snippets.

@jamesabruce
Created July 14, 2015 16:22
Show Gist options
  • 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)
@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