-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
35 lines (31 loc) · 889 Bytes
/
app.py
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
30
31
32
33
34
35
from flask import Flask
from time import sleep
from pushbullet import Pushbullet
import RPi.GPIO as GPIO
def setAngle(angle):
GPIO.setmode(GPIO.BOARD)
GPIO.setup(11, GPIO.OUT)
pwm=GPIO.PWM(11, 50)
pwm.start(0)
duty = angle / 18 + 3
GPIO.output(11, True)
pwm.ChangeDutyCycle(duty)
sleep(1)
GPIO.output(11, False)
pwm.ChangeDutyCycle(duty)
pwm.stop()
def button_callback(channel):
pb = Pushbullet("Access Token Here")
dev = pb.get_device('Device Name Here')
push = dev.push_note("Alert!","Someone is at your door!")
GPIO.setwarnings(False)
GPIO.setmode(GPIO.BOARD)
GPIO.setup(10, GPIO.IN, pull_up_down=GPIO.PUD_DOWN)
GPIO.add_event_detect(10, GPIO.RISING, callback=button_callback)
app = Flask(__name__)
@app.route("/unlock")
def index():
setAngle(180)
sleep(5)
setAngle(0)
return "Unlocked and locked succesfully!"