Notifications
Clear all
Moving the print bed to its maximum height after printing
Hello all,
I want the printer to move the bed to its maximum height.
If I understand correctly, I will have to change this command from the end code
{if layer_z < max_print_height}G1 Z{z_offset+min(max_layer_z+23, max_print_height)} F300 ; Move print head up{endif}
To this
G1 Z270 F100
Am I right? I haven't tested it since it could damage the printer if I get the command completely wrong.
Best Answer by chmax:
why not use the right variable then?
G1 Z{max_print_height} F300 ; Move bed down to bottom...
Posted : 12/09/2025 12:25 pm
RE: Moving the print bed to its maximum height after printing
why not use the right variable then?
G1 Z{max_print_height} F300 ; Move bed down to bottom...
Posted : 12/09/2025 4:25 pm
1 people liked
Topic starter
answered:
RE: Moving the print bed to its maximum height after printing
Thanks!
Posted : 12/09/2025 9:00 pm