-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstepper_tester.py
62 lines (45 loc) · 1.64 KB
/
stepper_tester.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
from stepper import gohome,takesteps,ismanualmode,manualpositionleft,initIO,cleanupIO,goFarRightPostion,goFarLeftPostion
initIO()
#
current_tray_position = 0
modeswitch_debounce = 0
positionswitch_debounce = 0
gohome()
MANUAL_MODE = ismanualmode()
POSITION_LEFT = manualpositionleft()
print("Manual Mode: %s" % MANUAL_MODE)
print("MM Position Left: %s" % POSITION_LEFT)
# switch to manul should go home... !!!
while True:
# check for mode switch (manual vs auto)
if modeswitch_debounce > 0:
modeswitch_debounce-=1
temp = ismanualmode() # check if we are in manual mode
if temp != MANUAL_MODE and modeswitch_debounce <= 0: # if its changed...
modeswitch_debounce = 1000
MANUAL_MODE = temp
modename = "Manual"
if MANUAL_MODE == False:
modename = "Auto"
else:
gohome()
print("manual/auto switched to: %s " % modename)
# check for manual postion change
if MANUAL_MODE == True and modeswitch_debounce <= 0: # if in manual and past debounce..
if positionswitch_debounce > 0:
positionswitch_debounce-=1
temppos = manualpositionleft()
if temppos != POSITION_LEFT and positionswitch_debounce <= 0:
positionswitch_debounce = 1000
POSITION_LEFT = temppos
if POSITION_LEFT == True:
goFarLeftPostion()
print("Moved manual left position")
else:
goFarRightPostion()
print("Moved manual right position")
# takesteps(500,0)
# gohome() # go left until home
# mm = ismanualmode()
# bog = ismanualmode()
# print(bog)