Hello Guest it is March 28, 2024, 08:35:31 AM

Author Topic: Tool Change  (Read 1689 times)

0 Members and 1 Guest are viewing this topic.

Tool Change
« on: March 04, 2018, 05:03:23 AM »
Whenever I move the spindle on my CNC-Router  to a convenient place to perform a tool change, it will return to the place where it came from in a  very slow speed.
In fact the feed speed that has last been been programmed before the tool change.
In case of drilling holes, that would in my case be 50 mm/min  (I always do the drilling very slow).
N.B. I use stanfard code fragments;
e.g. for a  tool change:
-
N1000 M06 D04 T04  (change to 4 mm in D04)
N1010 S3000 F3000
-
How do I make the spindle return more quickly ?
regards,

wilfoude
Re: Tool Change
« Reply #1 on: March 18, 2018, 01:14:31 PM »
-
N1000 M06 D04 T04  (change to 4 mm in D04)
N1010 S3000 F3000
-
How do I make the spindle return more quickly ?

add a G00 plus whatever plane move

N999 G00 X__ Y__ Z__
N1000 M06 D04 T04  (change to 4 mm in D04)
N1010 S3000 F3000
Re: Tool Change
« Reply #2 on: March 19, 2018, 03:51:43 AM »
That sounds logical. This should remember Mach3 that the last move before toolchange was at G00 speed.
I give it a try.
Thanks,

Wilfried.
Re: Tool Change
« Reply #3 on: March 26, 2018, 03:31:28 PM »
Did it work for you?
Re: Tool Change
« Reply #4 on: April 03, 2018, 03:53:33 AM »
Sorry for the very late reply, but I was not able the test any sooner.
But unfortunately it did not work. I also realized that all my subs already end with a "G00 Z25" to bring the tool to a safe height.
So the last movement before a tool change has always been a G00.
But anyway, thanks for helping.
Wilfried