Is it possible to independently z calibrate 2 extruders
Good day
I am planning an upgrade to my machine to have 2 independent parkable extruders. The extruder is the z probe and I was wondering if it is possible to set the Z offset of tool 0 vs tool 1 via probing at the beginning of the print.
I am planning an upgrade to my machine to have 2 independent parkable extruders. The extruder is the z probe and I was wondering if it is possible to set the Z offset of tool 0 vs tool 1 via probing at the beginning of the print.
Comments
- G134 Px Sx Zx - Calibrate nozzle height difference (need z probe in nozzle!) Px = reference extruder, Sx = only measure extrude x against reference, Zx = add to measured z distance for Sx for correction.
You normally set E0 z offset zero and adjusts then against that height.G134 P0 S1
So the start code would be something like this (assuming the x and y offset of extruder 2 is set)
turn machine on and set units
G28
select and wipe extruder 1
G32 S0
select and wipe extruder 2
G134 P0 S1
select first extruder to print with
2. You do M134 not in start gcode. The result is stored in eeprom so no need to repeat it. You only do it if you disassembled extruder so value may have changed.
Is there a way not to save to eeprom every time?
#if EEPROM_MODE != 0
EEPROM::storeDataIntoEEPROM(0);
#endif
remove the store command or make it depend on some parameter. YOu could still change it permanently with M500 if needed.