Skip to content

Commit

Permalink
STEAPP-903: Added to the manager adjust_basement_auto in spiral mode …
Browse files Browse the repository at this point in the history
…the movement of the tool head in 35mm from the collet
  • Loading branch information
SokolovJek committed Feb 7, 2024
1 parent b82d1c1 commit c9af389
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion stereotech_config/common/probe_main.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -263,9 +263,11 @@ gcode:
{% set offsets = printer.probe.offsets %}
{% set wcs_offsets = printer.gcode_move.wcs_offsets[wcs + 3] %}
{% set x = wcs_offsets[0] - offsets[0] %}
{% set y = wcs_offsets[1] - offsets[1] %}
# {% set y = (wcs_offsets[1] - offsets[1]) if wcs == 0 else (wcs_offsets[1] - offsets[1] - 40) %}
{% set y = (wcs_offsets[1] - offsets[1]) %}
{% set z = wcs_offsets[2] + offsets[2] %}
{% set a = '0' if wcs == 0 else '90' %}
{% set y = y if wcs == 0 else (y - 35) %}
G28 A
G0 A{a} F3600
G0 Z150 F3600
Expand Down

0 comments on commit c9af389

Please sign in to comment.