-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelay-demo.py
43 lines (34 loc) · 915 Bytes
/
relay-demo.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
import RPi.GPIO as GPIO
import time
in1 = 16
in2 = 18
GPIO.setmode(GPIO.BOARD)
GPIO.setup(in1, GPIO.OUT)
GPIO.setup(in2, GPIO.OUT)
GPIO.output(in1, False)
GPIO.output(in2, False)
try:
while True:
for x in range(5):
GPIO.output(in1, True)
time.sleep(0.1)
GPIO.output(in1, False)
GPIO.output(in2, True)
time.sleep(0.1)
GPIO.output(in2, False)
GPIO.output(in1, True)
GPIO.output(in2, True)
for x in range(4):
GPIO.output(in1, True)
time.sleep(0.05)
GPIO.output(in1, False)
time.sleep(0.05)
GPIO.output(in1, True)
for x in range(4):
GPIO.output(in2, True)
time.sleep(0.05)
GPIO.output(in2, False)
time.sleep(0.05)
GPIO.output(in2, True)
except KeyboardInterrupt:
GPIO.cleanup()