Skip to content

Commit

Permalink
Beacon: fix the reappearing beacon_contact_z_calibration from bad merge
Browse files Browse the repository at this point in the history
  • Loading branch information
miklschmidt committed Oct 1, 2024
1 parent 048513d commit b144724
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions z-probe/beacon.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -96,12 +96,12 @@ gcode:

# config
{% set default_toolhead = printer["gcode_macro RatOS"].default_toolhead|default(0)|int %}
{% set beacon_contact_z_calibration = true if printer["gcode_macro RatOS"].beacon_contact_z_calibration|default(false)|lower == 'true' else false %}
{% 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 %}

# calibration
BEACON_INITIAL_CALIBRATION _AUTOMATED=True

{% if beacon_contact_z_calibration %}
{% if beacon_contact_start_print_true_zero %}
BEACON_POKE_TEST _AUTOMATED=True
_BEACON_CHECK_POKE
{% if printer["dual_carriage"] is not defined %}
Expand All @@ -118,7 +118,7 @@ gcode:
BEACON_FINAL_CALIBRATION _AUTOMATED=True BED_TEMP={bed_temp} CHAMBER_TEMP={chamber_temp}

# scan calibration
{% if beacon_contact_z_calibration %}
{% if beacon_contact_start_print_true_zero %}
BEACON_MEASURE_GANTRY_TWIST
_BEACON_MAYBE_SCAN_COMPENSATION
{% endif %}
Expand All @@ -133,7 +133,7 @@ gcode:
{% endif %}

# echo
{% if beacon_contact_z_calibration %}
{% if beacon_contact_start_print_true_zero %}
{% if printer["dual_carriage"] is not defined %}
_BEACON_ECHO_NOZZLE_TEMP_OFFSETS
{% endif %}
Expand Down

0 comments on commit b144724

Please sign in to comment.