Skip to content

Commit

Permalink
Beacon: fix missing z-hop speed in BEACON_FINAL_CALIBRATION
Browse files Browse the repository at this point in the history
  • Loading branch information
miklschmidt committed Oct 12, 2024
1 parent 0f884cb commit f0deee1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion z-probe/beacon.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ gcode:
# config
{% set default_toolhead = printer["gcode_macro RatOS"].default_toolhead|default(0)|int %}
{% set bed_heat_soak_time = printer["gcode_macro RatOS"].bed_heat_soak_time|default(0)|int %}
{% set z_hop_speed = printer.configfile.config.ratos_homing.z_hop_speed|float * 60 %}

# home and abl the printer if needed
_BEACON_HOME_AND_ABL
Expand All @@ -212,7 +213,7 @@ gcode:
G90

# lower toolhead to heat soaking z height
G0 Z2 F{z_speed}
G0 Z2 F{z_hop_speed}

# echo
RATOS_ECHO MSG="Waiting for calibration temperature..."
Expand Down

0 comments on commit f0deee1

Please sign in to comment.