Skip to content

Commit

Permalink
some small fixes for better logging during START_PRINT
Browse files Browse the repository at this point in the history
  • Loading branch information
Frix-x committed May 8, 2023
1 parent efcce55 commit f46dea7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions macros/base/start_print.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ gcode:
# Put the bed temperature target and wait for the soak
HEATSOAK_BED TEMP={BED_TEMP} SOAKTIME={SOAK}
{% else %}
M190 S{BED_TEMP}
HEATSOAK_BED TEMP={BED_TEMP} SOAKTIME=0
{% endif %}


Expand Down Expand Up @@ -417,12 +417,15 @@ gcode:
gcode:
# Preheat the nozzle to safe probing temperature.
{% set safe_extruder_temp = printer["gcode_macro _USER_VARIABLES"].safe_extruder_temp|float %}

{% set status_leds_enabled = printer["gcode_macro _USER_VARIABLES"].status_leds_enabled %}
{% set verbose = printer["gcode_macro _USER_VARIABLES"].verbose %}

{% if status_leds_enabled %}
STATUS_LEDS COLOR="HEATING"
{% endif %}
{% if verbose %}
RESPOND MSG="Pre-heating the nozzle to a safe temperature..."
{% endif %}

M109 S{safe_extruder_temp}

Expand Down

0 comments on commit f46dea7

Please sign in to comment.