forked from LinuxCNC/linuxcnc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimulate_probe
executable file
·51 lines (45 loc) · 1.29 KB
/
simulate_probe
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
#!/usr/bin/wish
# simulate a probe
# You must disconnect hal connections to motion.probe-input
package require Hal
set this [file tail $::argv0]
if [catch {hal setp motion.probe-input 0} msg] {
if {[string last connected $msg] >= 0} {
puts "\nThe pin motion.probe-input is currently connected to a signal"
puts "Remove the connection to use $this\n"
exit
} else {
puts "\nIs EMC running? <$msg>"
puts "Start EMC before starting $this\n"
}
exit
}
pack [label .l -width 20 -height 10 -bg lightgray -fg black \
-relief raised -bd 5 \
-text "Push to simulate\nProbe touch"] \
-fill both -expand 1
bind .l <ButtonPress-1> probetouch
bind .l <ButtonRelease-1> proberelease
set ::pulse 0
pack [checkbutton .c -text Pulse -variable ::pulse] \
-fill x -expand 0
proc probetouch {} {
.l configure -bg red -fg white -text ProbeON
if [catch {hal setp motion.probe-input 1} msg] {
puts stderr "Is EMC running? <$msg>"
return
}
if $::pulse {
after 100 proberelease
if [catch {hal setp motion.probe-input 0} msg] {
puts stderr "Is EMC running? <$msg>"
return
}
}
}
proc proberelease {} {
.l configure -bg lightgray -fg black -text ProbeOFF
if [catch {hal setp motion.probe-input 0} msg] {
puts stderr "Is EMC running? <$msg>"
}
}