Skip to content

Commit

Permalink
MACRO: parking position added
Browse files Browse the repository at this point in the history
  • Loading branch information
HelgeKeck committed Nov 28, 2024
1 parent c1d46c3 commit 9b4da6c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions macros/util.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ gcode:
{% set idex_xcontrolpoint = svv.idex_xcontrolpoint|float %}
{% set idex_ycontrolpoint = svv.idex_ycontrolpoint|float %}

{% set bed_margin_x = printer["gcode_macro RatOS"].bed_margin_x %}
{% set bed_margin_x = printer["gcode_macro RatOS"].bed_margin_x|float %}
{% set stepper_x_position_max = printer.configfile.settings.stepper_x.position_max|float %}
{% set dual_carriage_position_max = printer.configfile.settings.dual_carriage.position_max|float %}
{% set dual_carriage_position_endstop = printer.configfile.settings.dual_carriage.position_endstop|float %}
Expand All @@ -422,6 +422,8 @@ gcode:
{% set line_6 = "_N_[gcode_macro _VAOC]" %}
{% set line_7 = "variable_expected_camera_x_position: %.3f" % idex_xcontrolpoint %}
{% set line_8 = "variable_expected_camera_y_position: %.3f" % idex_ycontrolpoint %}
CONSOLE_ECHO TITLE="Copy and paste to your printer.cfg" TYPE="info" MSG={'"%s_N_%s_N_%s_N_%s_N_%s_N_%s_N_%s_N_%s_N_ "' % (line_1, line_2, line_3, line_4, line_5, line_6, line_7, line_8)}
{% set line_9 = "_N_[gcode_macro T1]" %}
{% set line_10 = "variable_parking_position: %.3f" % (dual_carriage_position_endstop + idex_xoffset - 2) %}
CONSOLE_ECHO TITLE="Copy and paste to your printer.cfg" TYPE="info" MSG={'"%s_N_%s_N_%s_N_%s_N_%s_N_%s_N_%s_N_%s_N_%s_N_%s_N_ "' % (line_1, line_2, line_3, line_4, line_5, line_6, line_7, line_8, line_9, line_10)}

{% endif %}

0 comments on commit 9b4da6c

Please sign in to comment.