forked from piborg/zeroborg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zbStepper.py
99 lines (88 loc) · 2.94 KB
/
zbStepper.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
#!/usr/bin/env python
# coding: latin-1
# Import library functions we need
import ZeroBorg
import time
# Tell the system how to drive the stepper
#maxPower = 1.00 # Output to drive the stepper
maxPower = 0.70 # Output to drive the stepper
sequence = [ # Order for stepping
[+maxPower, +maxPower],
[+maxPower, -maxPower],
[-maxPower, -maxPower],
[-maxPower, +maxPower]]
stepDelay = 0.002 # Delay between steps
# Name the global variables
global step
global ZB
# Setup the ZeroBorg
ZB = ZeroBorg.ZeroBorg()
#ZB.i2cAddress = 0x44 # Uncomment and change the value if you have changed the board address
ZB.Init()
if not ZB.foundChip:
boards = ZeroBorg.ScanForZeroBorg()
if len(boards) == 0:
print 'No ZeroBorg found, check you are attached :)'
else:
print 'No ZeroBorg at address %02X, but we did find boards:' % (ZB.i2cAddress)
for board in boards:
print ' %02X (%d)' % (board, board)
print 'If you need to change the I²C address change the setup line so it is correct, e.g.'
print 'ZB.i2cAddress = 0x%02X' % (boards[0])
sys.exit()
#ZB.SetEpoIgnore(True) # Uncomment to disable EPO latch, needed if you do not have a switch / jumper
ZB.ResetEpo()
step = -1
# Function to perform a sequence of steps as fast as allowed
def MoveStep(count):
global step
global ZB
# Choose direction based on sign (+/-)
if count < 0:
dir = -1
count *= -1
else:
dir = 1
# Loop through the steps
while count > 0:
# Set a starting position if this is the first move
if step == -1:
drive = sequence[-1]
ZB.SetMotor1(drive[0])
ZB.SetMotor2(drive[1])
step = 0
else:
step += dir
# Wrap step when we reach the end of the sequence
if step < 0:
step = len(sequence) - 1
elif step >= len(sequence):
step = 0
# For this step set the required drive values
if step < len(sequence):
drive = sequence[step]
ZB.SetMotor1(drive[0])
ZB.SetMotor2(drive[1])
time.sleep(stepDelay)
count -= 1
try:
# Start by turning all drives off
ZB.MotorsOff()
# Loop forever
while True:
# Ask the user how many steps to move
steps = input("Steps to move (-ve for reverse, 0 to quit): ")
if steps == 0:
# Turn off the drives and release the GPIO pins
ZB.MotorsOff()
print 'Goodbye'
break
else:
# Move the specified amount of steps
MoveStep(steps)
# Turn the motor off after moving
ZB.MotorsOff()
except KeyboardInterrupt:
# CTRL+C exit, turn off the drives and release the GPIO pins
ZB.MotorsOff()
print 'Terminated'