-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathdoorbell2.py
executable file
·64 lines (56 loc) · 1.87 KB
/
doorbell2.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/env python
import RPi.GPIO as GPIO
from twython import Twython
import time, datetime, socket
buttonPin = 4
relayPin = 25
screenName = 'ghalfacree'
api_token = ''
api_secret = ''
access_token = ''
access_token_secret = ''
GPIO.setmode(GPIO.BCM)
GPIO.setwarnings(False)
GPIO.setup(buttonPin, GPIO.IN, pull_up_down=GPIO.PUD_DOWN)
GPIO.setup(relayPin, GPIO.OUT)
GPIO.output(relayPin, False)
twitter = Twython(api_token, api_secret, access_token, access_token_secret)
def buttonPushed():
print 'GPIO activity detected, was the button pushed?'
time.sleep(0.01)
if GPIO.input(buttonPin) != GPIO.HIGH:
print 'False alarm.'
return
print 'There\'s somebody at the door, there\'s somebody at the door!'
print 'Triggering office LED server...'
try:
s = socket.socket()
s.settimeout(1)
s.connect(('192.168.0.20', 4242))
s.close()
except socket.error:
print 'Network error, LED server offline.'
print 'LED server notified. Ringing original doorbell...'
GPIO.output(relayPin, True)
time.sleep(0.5)
GPIO.output(relayPin, False)
print 'Doorbell sounding, alerting Trioptimum...'
try:
s = socket.socket()
s.settimeout(1)
s.connect(('192.168.0.50', 4242))
s.close()
except socket.error:
print 'Network error, Trioptimum offline.'
print 'Trioptimum alerted. Sending Twitter DM...'
#twitter.send_direct_message(screen_name=screenName, text='DING-DONG at %s' %datetime.datetime.now())
twitter.send_direct_message(screen_name=screenName, text='DING-DONG at %s' %datetime.datetime.today().strftime("%A %d %B %Y, %R"))
print 'Message sent. All done!'
while True:
try:
print 'Waiting for doorbell...'
GPIO.wait_for_edge(buttonPin, GPIO.RISING)
buttonPushed()
print
except KeyboardInterrupt:
GPIO.cleanup()