duet_vcore3/homey.g

15 lines
593 B
Plaintext
Raw Normal View History

2021-05-26 21:17:05 +00:00
; homey.g
; called to home the Y axis
;
2022-02-02 23:19:54 +00:00
M201 X500.00 Y500.00 ; Reduce acceleration for homing moves
2021-05-23 12:36:07 +00:00
G91 ; relative positioning
2022-02-02 23:19:54 +00:00
G1 H2 Z10 F8000 ; lift Z relative to current position
G1 H1 Y625 F3600 ; move quickly to Y axis endstop and stop there (first pass)
G1 Y-20 F3000 ; go back a few mm
2022-02-01 17:54:16 +00:00
G1 H1 Y625 F256 ; move slowly to Y axis endstop once more (second pass)
2022-02-02 23:19:54 +00:00
G1 Y10 F10800 ; move forward 10 mm
M201 X3000 Y3000 ; Return to full accelerationG1 H2 Z-10 F10800
G1 H2 Z-10 F8000 ; Lower Z relative to current position
2021-05-23 12:36:07 +00:00
G90 ; absolute positioning
2022-02-02 23:19:54 +00:00