Hello Guest it is March 28, 2024, 07:54:38 PM

Author Topic: REFERENCE MACHINE COORDINATE FROM WORK POSITION "0"  (Read 2399 times)

0 Members and 1 Guest are viewing this topic.

REFERENCE MACHINE COORDINATE FROM WORK POSITION "0"
« on: September 14, 2013, 10:34:57 AM »
I want to go to, say, x13 y17 z-2(machine coordinate) from a current job that is at job position of x0 y0 z0 (machine coordinate x30 y12 z-1).  How do I  reference it in my
Gcode???  I may be at any job of 0.0 depending on the job.. I could go to home 0.0.0, but for speed I would like to move from where I am...
« Last Edit: September 14, 2013, 10:36:57 AM by Cuemaker »

Offline BR549

*
  •  6,965 6,965
    • View Profile
Re: REFERENCE MACHINE COORDINATE FROM WORK POSITION "0"
« Reply #1 on: September 14, 2013, 11:27:21 AM »
G53 X13 Y17 Z-2 But for safety reasons I would do the move in 2 parts. Just make sure you have a clear path . ou may even want to consider a move UP to machine Z Zero, IF you refhome to Z top of stroke, for clearance height .

G53 X13 Y17
G53 Z-2

(;-) TP
Re: REFERENCE MACHINE COORDINATE FROM WORK POSITION "0"
« Reply #2 on: September 14, 2013, 01:23:56 PM »
Thanks, I knew one of the codes could probably do it.  I'll give it a try....