Skip to content

Commit

Permalink
probing direction for breakaway wipe for idex fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
HelgeKeck committed Jan 22, 2024
1 parent c910d60 commit 9df1dca
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions macros/priming.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,21 @@ gcode:
{% else %}
SAVE_PROBE_RESULT VARIABLE=probe_for_priming_result
{% endif %}
{% set x_end = x_start %}
{% set y_end = y_start + 45 %}

{% if idex_mode == '' %}
# COREXY - HYBRID
{% set x_end = x_start %}
{% set y_end = y_start + 45 %}
{% else %}
# IDEX
{% if t==1 %}
{% set x_end = x_start - 45 %}
{% else %}
{% set x_end = x_start + 45 %}
{% endif %}
{% set y_end = y_start %}
{% endif %}

G1 X{x_end} Y{y_end} F{speed}
PROBE_CURRENT_POSITION
{% if t == 1 %}
Expand Down

0 comments on commit 9df1dca

Please sign in to comment.