¿ªÔÆÌåÓýOh man my head hurts. I wish I could grasp this. Are there any videos on the subject? ? ? From: mach1mach2cnc@... [mailto:mach1mach2cnc@...]
Sent: Thursday, February 26, 2015 9:48 AM To: mach1mach2cnc@... Subject: RE: [mach1mach2cnc] offsets ? ? Good morning Spencer, ? Firstly, I am not a machinist by trade and have never used offsets. ?CNC is just a hobby for me so the approach I will suggest comes from a programmer¡¯s view.? It has been a while since I have done this but these work. ? If my part script knows where it is supposed to be relative to the current offset then my code for look like this: ? xOff=getOEMdro(800) yOff=getOEMdro(801) ? code("G01 x["+Str(xOff)+"+1] y["+Str(yOff)+"+1]") ? ? If the script calling my part script knows where my part should go then it would : ? setVar(800,5.25) setVar(801,-2) ? In my part script: ? xOff =getVar(800) yOff =getVar(801) sSpeed=250 FR=50 code("G01 F50 x["+Str(xOff)+"+0] Y["+Str(yOff)+"+0]") ? Hope this helps ? ? From: mach1mach2cnc@... [mailto:mach1mach2cnc@...] ? ? i have read everything i can find about offsets and still can not figure |