-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPiIO.py
152 lines (115 loc) · 3.13 KB
/
PiIO.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
"""
Methods to work specifcally with the custom made board that attaches atop the
RPi to provide 4 Spike Relays outputs and 6 input switches.
Example usage (GPIO requires you run code with 'sudo python'):
import io
try:
winch = io.Spike(1)
upperLimit = io.Switch(1)
lowerLimit = io.Switch(2)
# Run winch to upper limit
while upperLimit.Open():
winch.fwd()
winch.stop()
# Run winch to lower limit
while lowerLimit.Open():
winch.rev()
winch.stop()
except:
raise
finally:
# Release IO lines
io.close()
"""
import RPi.GPIO as IO
# INITIALIZE HARDWARE
# Setup GPIO to map to physical board pin numbers (Model B V2)
IO.setmode(IO.BOARD)
# Setup output pins for Spike relays
SPIKES_FWD=[5,11,15,21]
SPIKES_REV=[3, 7,13,19]
for pin in SPIKES_FWD:
IO.setup(pin,IO.OUT)
IO.output(pin,False)
for pin in SPIKES_REV:
IO.setup(pin,IO.OUT)
IO.output(pin,False)
# Setup input pins for Switches
SWITCHES=[12,16,18,22,24,26]
for pin in SWITCHES:
# Inputs will be held high (1) unless shorted to ground (0)
IO.setup(pin,IO.IN,pull_up_down=IO.PUD_UP)
def close():
IO.cleanup()
# CLASSES
# There are 4 spike relays, each capable of forward, reverse and off states.
#
class Spike():
# Init a Spike relay. Pass number 1 to 4.
# Reverse relay control, reverses polarity of motor output.
def __init__(self,spike):
if spike >= 1 and spike <= 4:
self.pinFwd = SPIKES_FWD[spike-1]
self.pinRev = SPIKES_REV[spike-1]
else:
raise ValueError("Spike relay number must be between 1 and 4")
def stop(self):
IO.output(self.pinFwd,False)
IO.output(self.pinRev,False)
def fwd(self):
IO.output(self.pinFwd,True)
IO.output(self.pinRev,False)
def rev(self):
IO.output(self.pinFwd,False)
IO.output(self.pinRev,True)
def off(self):
self.stop()
def on(self):
self.fwd()
# Switch class provides open/closed state for switch inputs.
# Pass switch number to either the 'open' or 'closed' method to get logical state.
#
class Switch():
# Init a switch for input. Pass #1 to 6.
def __init__(self,switch):
if switch >= 1 and switch <= 6:
self.pin = SWITCHES[switch-1]
else:
raise ValueError("Switch number must be between 1 and 6")
def open(self):
if IO.input(self.pin) == 1:
return True
else:
return False
def closed(self):
if IO.input(self.pin) == 0:
return True
else:
return False
"""
import time
sp1=Spike(1)
sp2=Spike(2)
sp3=Spike(3)
sp4=Spike(4)
sw6=Switch(6)
try:
while sw6.open():
sp1.fwd()
print sw6.open()
time.sleep(1)
sp1.rev()
print sw6.open()
time.sleep(1)
sp1.stop()
print sw6.open()
time.sleep(1)
except:
raise
finally:
sp1.off()
sp2.off()
sp3.off()
sp4.off()
IO.cleanup()
"""