-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstepper.py
98 lines (81 loc) · 2.04 KB
/
stepper.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
import sys
import time
import RPi.GPIO as GPIO
StepDir = -2 # Set to 1 or 2 for clockwise
# Set to -1 or -2 for anti-clockwise
WaitTime = 0.002
recipe = sys.argv[1].strip().lower()
cherry = [17, 18, 22, 27]
raspberry = [5, 6, 12, 13]
watermelon = [23, 24, 25, 16]
pinsToUse = []
if recipe == 'cherry':
pinsToUse = [cherry]
stopTime = 20
elif recipe == 'raspberry':
pinsToUse = [raspberry]
stopTime = 20
elif recipe == 'watermelon':
pinsToUse = [watermelon]
stopTime = 20
elif recipe == 'cherrypi':
pinsToUse = [cherry, raspberry]
stopTime = 15
elif recipe == 'chelon':
pinsToUse = [cherry, watermelon]
stopTime = 15
elif recipe == 'rasleberry':
pinsToUse = [raspberry, watermelon]
stopTime = 15
elif recipe == 'mh_special':
pinsToUse = [cherry, raspberry, watermelon]
stopTime = 12
else:
exit(1)
# Use BCM GPIO references
# instead of physical pin numbers
GPIO.setmode(GPIO.BCM)
# Set all first set of pins as output
for recipe in pinsToUse:
print "Setup pins: {0}".format(recipe)
for pin in recipe:
GPIO.setup(pin,GPIO.OUT)
GPIO.output(pin, False)
# Define advanced sequence
# as shown in manufacturers datasheet
Seq = [[1,0,0,0],
[1,1,0,0],
[0,1,0,0],
[0,1,1,0],
[0,0,1,0],
[0,0,1,1],
[0,0,0,1],
[1,0,0,1]]
StepCount = len(Seq)-1
# Initialise variables
StepCounter = 0
timeRan = 0
# Start main loop
while timeRan <= stopTime:
print "Time elapsed: {0}".format(timeRan)
print "Time to stop: {0}".format(stopTime)
for recipe in pinsToUse:
for pin in range(0, 4):
xpin = recipe[pin]
# print StepCounter
# print pin
if Seq[StepCounter][pin]!=0:
# print " Step %i Enable %i" %(StepCounter,xpin)
GPIO.output(xpin, True)
else:
GPIO.output(xpin, False)
StepCounter += StepDir
# If we reach the end of the sequence
# start again
if (StepCounter>=StepCount):
StepCounter = 0
if (StepCounter<0):
StepCounter = StepCount
# Wait before moving on
timeRan += WaitTime
time.sleep(WaitTime)