Added more steps to heating in print_start.

This commit is contained in:
Bassam Husain
2023-04-13 19:48:11 -04:00
parent 02eb713930
commit 9fc09eef43

View File

@@ -125,23 +125,25 @@ gcode:
{% set maxVelocity = printer.configfile.settings.printer.max_velocity|default(200)|int %}
{% set maxVelocityAdjusted = (0.90 * maxVelocity * 60)|int %}
{% set bedtempAlmost = (bedtemp - 2)|int %}
{% set hotendtempStepOne = 150|int %}
{% set hotendtempStepTwo = 175|int %}
BED_MESH_PROFILE LOAD=default ; NOTE if not using a mesh, comment out this line
ADJUST_FILAMENT_SENSOR_STATUS ENABLE=1
G90
M140 S{bedtempAlmost} ; set & don't wait for bed temp
M104 S150 ; set & don't wait for hotend temp
M104 S{hotendtempStepOne} ; set & don't wait for hotend temp
G28 X Y
M190 S{bedtempAlmost} ; set & wait for bed temp
M104 S{hotendtemp} ; set & don't wait for hotend temp
M104 S{hotendtempStepTwo} ; set & don't wait for hotend temp
M190 S{bedtemp} ; set & wait for bed temp
G28 Z ; final z homing
G1 X0 Y0 F{maxVelocityAdjusted}
M109 S{hotendtemp} ; set & wait for hotend temp
BED_MESH_PROFILE LOAD=default
G1 Z20 F3000 ; move nozzle away from bed
[gcode_macro PRINT_END]