Skip to content

Commit

Permalink
MACRO: fix wrong stowable probe definition (#301)
Browse files Browse the repository at this point in the history
  • Loading branch information
HelgeKeck authored Oct 6, 2024
1 parent 3eea2c8 commit 3e108c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion macros.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -821,7 +821,7 @@ gcode:

# z probe config
{% set beacon_contact_start_print_true_zero = true if printer["gcode_macro RatOS"].beacon_contact_start_print_true_zero|default(false)|lower == 'true' else false %}
{% set is_stowable_probe = true if printer["gcode_macro RatOS"].z_probe|default(false)|lower == 'true' else false %}
{% set is_stowable_probe = true if printer["gcode_macro RatOS"].z_probe|lower == 'stowable' else false %}

# preheat extruder
{% if printer["gcode_macro RatOS"].preheat_extruder|lower == 'true' %}
Expand Down

0 comments on commit 3e108c4

Please sign in to comment.