-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoorbot_test.py
116 lines (105 loc) · 3.63 KB
/
doorbot_test.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# Put this on a rpi, set the username and password for the doorbot account, and have it run as root on startup
# Imports
from bs4 import BeautifulSoup
import requests, time, os
import RPi.GPIO as GPIO
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
# Constants
TWO_WEEKS_SECONDS = 1210000
FIVE_MINUTES_SECONDS = 300
BTN_PIN = 7
OPN_PIN = 11
BSY_PIN = 13
CLS_PIN = 15
with open(os.path.join(BASE_DIR, 'botpassword.txt')) as f:
PWD = f.read().strip()
# Use physical pin numbering
GPIO.setmode(GPIO.BOARD)
# Set button pin (7) to be an input pin with initial value low (off)
GPIO.setup(BTN_PIN, GPIO.IN, pull_up_down=GPIO.PUD_DOWN)
# Set button pin (11, 13, 15) to be output pins
GPIO.setup(OPN_PIN, GPIO.OUT)
GPIO.setup(BSY_PIN, GPIO.OUT)
GPIO.setup(CLS_PIN, GPIO.OUT)
# Variables
session_limit = 0
door_limit = 0
rqst = ''
rsp = ''
doorState = "CLOSED"
pause_time = 0.2
def change_pin(doorstate):
'''
Changes GPIO pins to HIGH/LOW depending on @doorstate
:param doorstate: Indicate if room is OPEN, BUSY, or CLOSED
'''
# If doorstate starts with 'OPEN'
if doorstate[0] == 'O':
high_pin = OPN_PIN
# If doorstate starts with 'BUSY'
elif doorstate[0] == 'B':
high_pin = BSY_PIN
# If doorstate starts with 'CLOSED'
elif doorstate[0] == 'C':
high_pin = CLS_PIN
# Revert to closed if any other state is passed
else:
high_pin = CLS_PIN
# Reset all pins
GPIO.output(OPN_PIN, GPIO.LOW)
GPIO.output(BSY_PIN, GPIO.LOW)
GPIO.output(CLS_PIN, GPIO.LOW)
# Set pin corresponding with doorstate high
GPIO.output(high_pin, GPIO.HIGH)
# Run forever
while True:
print("-----")
print(time.time())
print("Doorstate is: " + str(doorState))
# If more than two weeks have passed since starting session, restart session
if time.time() > session_limit:
# Set limit to two weeks from now
print("Restarting session...")
session_limit = time.time() + TWO_WEEKS_SECONDS
print("Done!")
# If more than five minutes have passed since last check, get door state again
if time.time() > door_limit:
print("Restarting door timer...")
# Set limit to five minutes from now
door_limit = time.time() + FIVE_MINUTES_SECONDS
change_pin(doorState)
print("Done!")
# If the button is pressed, start switching the room status
if GPIO.input(BTN_PIN) == GPIO.HIGH:
print("Button pressed!")
# If room is was open: mark busy
if doorState[0] == 'O':
doorState = 'BUSY'
change_pin(doorState)
# Only change state once while held
while GPIO.input(BTN_PIN) == GPIO.HIGH:
print("Button is held down!")
time.sleep(pause_time)
# If room is was busy: mark closed
elif doorState[0] == 'B':
doorState = 'CLOSED'
change_pin(doorState)
# Only change state once while held
while GPIO.input(BTN_PIN) == GPIO.HIGH:
print("Button is held down!")
time.sleep(pause_time)
# If room is was closed: mark open
elif doorState[0] == "C":
doorState = 'OPEN'
change_pin(doorState)
# Only change state once while held
while GPIO.input(BTN_PIN) == GPIO.HIGH:
print("Button is held down!")
time.sleep(pause_time)
# Unknown, attempt to close door
else:
print("ERROR: Room state unknown!")
change_pin('CLOSED')
time.sleep(pause_time)
GPIO.cleanup()