I’m having trouble getting the Z probe/touch plate gcode to work on my LowRider 2 (with dual endstops and SKR/TFT). Everything looks fine (triggered) when I send an M119 command. I can’t figure out how to get the LR to probe down though. I’ve tried both G28 and G38.2 but neither of them work for me. I’ve also copied the exact example code from the dual endstops page and the milling basics page and neither work for me.
Below is my gcode (2 inch x 2 inch square). When I press the cut button it pauses, Z goes up, pauses again, then it proceeds to follow the rest of the code.
Thank you.
;Project Tool Change Test V1 Code
;Created by Estlcam version 11 build 11.222
;Machining time about 00:00:42 hours
M0 Attach probe ; Remind the user to attach the probe
G38.2 Z0 ; Home down for the touchplate
G92 Z19.05 ; Sets the offset for the touchplate, if the touchplate is 0.5mm thick
G1 Z10 F300 ; lifts the Z out of the way
M0 Remove probe ; Remind the user to remove the probe
G00 Z5.0000
;No. 1: Engraving 4
G00 X50.8000 Y50.8000
G00 Z0.5000
G01 Z0.0000 F240 S24000
G01 Z-2.0000
G01 X0.0000 F480
G01 Y0.0000
G01 X50.8000
G01 Y50.8000
G00 Z5.0000
G00 X0.0000 Y0.0000
M05