What's new
What's new

Tool Probe - Z Home Routine help

Erasma

Plastic
Joined
Apr 16, 2019
Hi All,

When I probe my tools I just want the machine to home to Z 0 - mine currently homes to the limit switch.

here is the Z Home Routine

Code:
G103 P1

#26= 0 (START WITH ZERO)

IF [ #30003.078 GT 0 ]#26= [ #30003.078 - .127 ] (What is this trying to check grater then 0?)

IF [ #20009 EQ 0 ]#26= [ #26 / 25.4 ] 

G00 G90 G53 Z#26
M99

What are the IF statements doing? & can I change them or do I change a variable in the machine?

Thanks for the help
 
It's looking up the parameter for max travel if it is higher than 0, then if setting 9 is inch or metric.

Just change the last line to G00 G90 G53 Z0 if you really want.
 








 
Back
Top