Files
linuxcnc/configs/sim.gmoccapy/macros/macro_8.ngc
Thaddeus-Maximus f3953d66ae ?
2026-04-03 15:58:58 -05:00

28 lines
383 B
Plaintext
Executable File

; Testfile go to position
; will jog the machine to a position to give
; the image path must be relative from your config dir or absolute, "~" is allowed
(IMAGE, ./macros/images/macro_8.png)
O<macro_8> sub
G17
G21
G54
G61
G40
G49
G80
G90
;#1 = <X-Pos>
;#2 = <Y-Pos>
;#3 = <Z-Pos>
(DBG, Will now move machine to X = #1 , Y = #2 , Z = #3)
G0 X #1 Y #2 Z #3
O<macro_8> endsub
M2