Hello,
I have a custom delta printer with two extruder and a probe.
Each extruder has an XY offset regarding to the bed center origin :
I try to declare XY offset like this :
[gcode_macro T0]
gcode:
SET_GCODE_OFFSET X=7.5 # X offset
SET_GCODE_OFFSET Y=12.99 # Y offset
ACTIVATE_EXTRUDER EXTRUDER=extruder
[gcode_macro T1]
gcode:
SET_GCODE_OFFSET X=-7.5 # X offset
SET_GCODE_OFFSET Y=-12.99 # Y offset
ACTIVATE_EXTRUDER EXTRUDER=extruder1
But after homing if I command X0 Y0 move, the active extruder is not a the center of the bed.
How can I set XY offset for dual extruder on a delta printer ?
Thanks