Skip to content

Commit

Permalink
MACRO: reset idex mode for beacon calibration (#318)
Browse files Browse the repository at this point in the history
  • Loading branch information
HelgeKeck authored Dec 9, 2024
1 parent 2bb5581 commit 1d5ceed
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions z-probe/beacon.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,11 @@ gcode:
# config
{% set speed = printer["gcode_macro RatOS"].macro_travel_speed * 60 %}

# activate IDEX default
{% if printer["dual_carriage"] is defined %}
_IDEX_SINGLE INIT=1
{% endif %}

# home x and y axis if not homed already
MAYBE_HOME X=True Y=True

Expand Down Expand Up @@ -820,6 +825,11 @@ gcode:

{% else %}

# activate IDEX default
{% if printer["dual_carriage"] is defined %}
_IDEX_SINGLE INIT=1
{% endif %}

# home the printer if needed
MAYBE_HOME

Expand Down Expand Up @@ -940,6 +950,11 @@ gcode:
#####
[gcode_macro _BEACON_HOME_AND_ABL]
gcode:
# activate IDEX default
{% if printer["dual_carriage"] is defined %}
_IDEX_SINGLE INIT=1
{% endif %}

# home X/Y if not homed already
MAYBE_HOME X=True Y=True

Expand Down

0 comments on commit 1d5ceed

Please sign in to comment.