Skip to content

Commit

Permalink
Continue when hotend temp above target when probing
Browse files Browse the repository at this point in the history
This commit prevents the probing procedure to wait for the hotend
temperature to settle if its above the target temperature.
This is desired, if for example, the first layer failed and the
print must be restarted.

We would be forced to wait until the temperature has fallen,
depending on the chamber environment and hotend,
this could take several minutes.

Instead we ignore if its above and continue with probing, this saves
time, especially when prototyping. It shouldn't be a problem anyways.
  • Loading branch information
stablestud committed Jul 27, 2024
1 parent ebae0a3 commit 20dc71c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions start_end.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,7 @@ gcode:
start_home_z_at_temp %}
{% if actions_at_temp %}
{% if km.start_extruder_probing_temp > 0 %}
_KM_PRINT_STATUS ACTION=CHANGE STATUS=extruder_heating RESET_STACK=1
_KM_PARK_IF_NEEDED HEATER={printer.toolhead.extruder} RANGE=2
M109 R{km.start_extruder_probing_temp}
M109 S{km.start_extruder_probing_temp}
{% else %}
M104 S{EXTRUDER} # set the final extruder target temperature
{% endif %}
Expand Down

2 comments on commit 20dc71c

@Firas95k
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this is one is not recommended for Voron TAP (uses the nozzle as the probe), were the probe Temp must not exceed 150 to prevent damage to nozzle, now noticing for each G28 my printer does the first touch down on the bed, then it reports that temperature is exceeding 130degC waits to cooldown then touches the bed for the final time to finish homing Z.

image

@stablestud
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Didn't know thanks for the info. I'll make this feature toggable via an option

Please sign in to comment.