forked from Klipper3d/klipper
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
STEAPP-611: modified and tested macros for printing and calibration (…
…old template). (#156) * STEAPP-616: chenched macros for the manual calibrate for old teamplate. * STEAPP-616: changed and checked macros for the printing * STEAPP-611: added changes to main config Ender. * STEAPP-616: changed and checked macros for the load/eject material. * STEAPP-616: changed and checked macros for the load/eject material. * STEAPP-616: edited START command to avoid the clash * STEAPP-616: added comand for object 'bed_screws'. * STEAPP-616: checked and adaptived commands and params for the object 'bed_screws'. * STEAPP-616: added config bed_screws. --------- Co-authored-by: Ilya Gushchin <[email protected]>
- Loading branch information
1 parent
d612c1c
commit 06727d3
Showing
12 changed files
with
165 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
step1 | ||
Z_ENDSTOP_CALIBRATE | ||
|
||
2 | ||
ACCEPT_Z_ENDSTOP | ||
|
||
3 | ||
ACCEPT_Z_ENDSTOP | ||
|
||
..... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
"ручная калибровка 5д модуля" | ||
#step5 | ||
MOVE_SERVICE_POSITION | ||
MOVE_CALIBRATION_POINT POINT=0 | ||
#step6 | ||
SET_A_AXIS_OFFSET_POINT POINT=0 | ||
SAVE_A_AXIS_POINT POINT=0 COORDS=107.0,41.1,138.1 | ||
#step7 | ||
MOVE_CALIBRATION_POINT POINT=3 | ||
SET_A_AXIS_OFFSET_POINT POINT=1 | ||
SAVE_A_AXIS_POINT POINT=1 COORDS=106.3,90.9,139.5 | ||
CALC_A_AXIS_OFFSET | ||
MOVE_WCS_ZERO WCS=1 | ||
#step8 | ||
SET_WCS_OFFSET WCS=1 X=0 Y=0 Z=0 | ||
SET_WCS_OFFSET WCS=3 X=0 Y=0 Z=0 | ||
MOVE_WCS_ZERO WCS=2 | ||
#step 9 | ||
SET_WCS_OFFSET WCS=2 X=0 Y=0 Z=0.1 | ||
SET_WCS_OFFSET WCS=4 X=0 Y=0 Z=0.1 | ||
#step10 | ||
HOME_POSITION ABORT=0 | ||
|
||
"ручная настройка точки старта печати FULL" | ||
# step4 | ||
MOVE_SERVICE_POSITION | ||
# step7 | ||
MOVE_WCS_ZERO WCS=1 | ||
# step8 | ||
SET_WCS_OFFSET WCS=1 ADJUST_WCS=2 X=0 Y=0 Z=0 | ||
# step9 | ||
HOME_POSITION ABORT=0 | ||
|
||
"ручная настройка точки старта печати SPIRAL" | ||
# step4 | ||
MOVE_SERVICE_POSITION | ||
# step7 | ||
MOVE_WCS_ZERO WCS=2 | ||
# step8 | ||
SET_WCS_OFFSET WCS=2 ADJUST_WCS=1 X=0 Y=0 Z=0 | ||
# step9 | ||
HOME_POSITION ABORT=0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
[gcode_macro M140] | ||
rename_existing: M141 | ||
gcode: | ||
{% if printer["gcode_button five_axis_module"].state == "RELEASED" %} | ||
M141 S{ params.S } | ||
{% endif %} | ||
|
||
[gcode_macro M190] | ||
rename_existing: M191 | ||
gcode: | ||
{% if printer["gcode_button five_axis_module"].state == "RELEASED" %} | ||
M117 platform_heating | ||
M191 S{ params.S } | ||
M117 | ||
{% endif %} | ||
|
||
[gcode_macro Z_ENDSTOP_CALIBRATE] | ||
rename_existing: Z_ENDSTOP_CALIBRATE_OLD | ||
gcode: | ||
G54 | ||
TURN_OFF_HEATERS | ||
SET_GCODE_OFFSET Z=0 | ||
G28 | ||
G92 E0 | ||
G0 X117 Y115 Z10 F3600 | ||
SET_IDLE_TIMEOUT TIMEOUT=7200 | ||
Z_ENDSTOP_CALIBRATE_OLD | ||
|
||
[gcode_macro ACCEPT_Z_ENDSTOP] | ||
gcode: | ||
ACCEPT | ||
G28 Z | ||
{% set probe = params.PROBE|default(0)|int %} | ||
{% if probe < 1 %} | ||
BED_SCREWS_ADJUST | ||
{% endif %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.