Hi guys, I was trying to follow the documentation on the dual independent z-axis for my printer.
My problem is, that it is not mentioned how the homez.g should look like:
this is where you can find the documentation
I am using RRF3.x Firmware and I cannot home my z-axis at the moment.
This is what I am currently using in my config.g:
M569 P5 R1 T2.5:2.5:5:5 S1 ; BreakoutBoard_Driver5 - new Z Axis Left
M569 P7 R1 T2.5:2.5:5:5 S1 ; BreakoutBoard_Driver7 - new Z Axis Right
M584 X0 Y1 Z5:7 P3 ; set drive mapping Driver 0 For X, 1 for Y, Z 5:7
M671 X-20:820 Y400:400 S2.5 ; leadscrews at left (connected to Z) and right
(connected to E1) of X axis
M574 Z1 S1 P"e1stop+e0stop" ; configure active-low endstops for low end on Z via pins e1stop and e0stop
I am using the Duet Breakout Board and have my 2 external stepper drivers connected to the pins 5 and 7 - the corresponding endstops are wired to "e1stop&e0stop". The wiring is correct, the motors are moving and the LED is flashing, when the endstops are pressed.
This is the bed.g:
G28 ; home
M401 ; deploy Z probe (omit if using bltouch)
G30 P0 X20 Y400 Z-99999 ; probe near a leadscrew, half way along Y axis || P = Probe Number
G30 P1 X780 Y400 Z-99999 S2 ; probe near a leadscrew and calibrate 2 motors
M402 ; retract probe (omit if using bltouch)
I have no clue what my homez.g should look like rn. I have had several errors and completely leaving it out won´t work either ^^ .
homeall.g:
G91 ; relative positioning
G1 H1 X-805 Y-805 F3000 ; move quickly to X or Y endstop and stop there (first pass) coarse home X or Y
G1 H1 X-805 ; home X axis coarse
G1 H1 Y-805 ; home Y axis coarse
G1 X5 Y5 F500 ; go back a few mm
G1 H1 X-10 ; move slowly to X axis endstop once more (second pass)
G1 H1 Y.10 ; then move slowly to Y axis endstop
G90 ; absolute positioning X/Y
homez.g: [probably the main issue, also the fact, that there are like 300 different possibilities for z probing is super confusing - at least for me]
;G91 ; relative positioning
;G1 H2 Z5 F6000 ; lift Z relative to current position
;G90 ; absolute positioning
;G1 X5 Y85 F6000 ; go to first probe point
;G30 ; home Z by probing the bed
Thanks a lot in advance. I wouln´t write this if I hadn´t tried fixing it by myself for the last 5 hours...
I might be using a BL Touch in the future but this is a different story.