G1 X0 Y0 Z0
(telling the printer to go to (0,0,0)) the print bed will touch the nozzle. However, as outlined above, the relative distance between the bed and the nozzle varies depending on your setup. Follow the steps below to update the Z configuration of your printer.If the machine_zendstop.g file currently contains the commandG92 Z378.4
and I obtained a value of 4.5 mm, my new value would be 373.9 mm.I would replace the current Z value in the G92 command so that the line readsG92 Z373.9
We just set our Z value for the G92 command in machine_zendstop.g to 373.9. We will therefore set the Z value in machine_axisdimension.g to 374.
G1 X0 Y0 Z0
(telling the printer to go to (0,0,0)) the print bed will touch the nozzle. However, as outlined above, the relative distance between the bed and the nozzle varies depending on your setup. Follow the steps below to update your machine_zendstop.g file.G29 S2
to disable bed leveling. Bed leveling can conflict with your homing value.G1 Z10
G1 X200 Y200
G92
command at the end of the file. This command sets the z-axis height when the bed is moved completely away from the nozzle (that is, it is at the bottom of the printer and has triggered the Z maximum endstop).G92 Z376.4
and I obtained a value of -0.6, my new value would be 377mm. I would remove the current G92 command from the machine_zendstop.g file and replace it withG92 Z377
G1 Z0
, I don't recommend it. Manually jog your bed to the nozzle again to ensure that Z0 is when the bed is touching the nozzle.