PRINT_START bedtemp fix.

This commit is contained in:
Bassam Husain
2023-04-20 16:43:43 -04:00
parent e888ac0882
commit 9b712df594

View File

@@ -135,7 +135,7 @@ gcode:
{% set startY = printer.configfile.settings.safe_z_home.home_xy_position[1]|float %}
{% endif %}
{% set bedtempAlmost = (bedtemp - 2)|int %}
{% set bedtempAlmost = max(bedtemp - 2, 0) %}
{% set hotendtempStepOne = 150|int %}
{% set hotendtempStepTwo = 170|int %}