forked from osoyoo/driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtouchsensor.py
93 lines (73 loc) · 2.18 KB
/
touchsensor.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
import RPi.GPIO as GPIO
import time
import os
#sensor pin define
buzzer = 14
touch = 26
relay_in1 = 13
relay_in2 = 19
#GPIO port init
def init():
GPIO.setwarnings(False)
GPIO.setmode(GPIO.BCM)
GPIO.setup(buzzer,GPIO.OUT)
GPIO.setup(relay_in1,GPIO.OUT)
GPIO.setup(relay_in2,GPIO.OUT)
GPIO.setup(touch,GPIO.IN,pull_up_down=GPIO.PUD_UP)
pass
#turn on buzzer
def buzzer_on():
GPIO.output(buzzer,GPIO.LOW)
time.sleep(0.2)
GPIO.output(buzzer,GPIO.HIGH)
time.sleep(0.2)
pass
#turn off buzzer
def buzzer_off():
GPIO.output(buzzer,GPIO.HIGH)
pass
#turn on relay
def relay_on():
#open relay channal1 ana channal2
GPIO.output(relay_in1,GPIO.LOW)
GPIO.output(relay_in2,GPIO.LOW)
#turn off relay
def relay_off():
GPIO.output(relay_in1,GPIO.HIGH)
GPIO.output(relay_in2,GPIO.HIGH)
touchstatus = False
#read digital touch sensor
def read_touchsensor():
global touchstatus
if (GPIO.input(touch)==True):
touchstatus = not touchstatus
if touchstatus:
print"Turn on relay"
print"\n"
buzzer_on()
relay_on()
else:
print"Turn off relay"
print"\n"
buzzer_on()
relay_off()
pass
#main loop
def main():
print"...................................................................System initializing..."
init()
buzzer_off()
relay_off()
print"...................................................................Ok"
print"...................................................................Please touch"
print"\n"
while True:
read_touchsensor()
if __name__ == '__main__':
try:
main()
pass
except KeyboardInterrupt:
pass
pass
GPIO.cleanup()