What's new
What's new

okuma mill tool precall?

tay2daizzo8

Hot Rolled
Joined
Nov 8, 2013
Location
north of Bean town
hey all does anybody know how to have the next tool in your cycle staged in the down postion while running? Its an okuma osp-10um control. so much time is wasted weighting for the atc to spin and bring the tool into the ready position(like 3 whole minutes of cycle time on a 25 min cycle). i know my yasnac control is a m106txx but okuma doesnt seem to like anything i try.

Thanks guys
 
Have no idea about what your control needs or is looking for but this is what we use on a P-300 control.

N26 (1.0625 INDEXABLE DRILL)
N27 G116 TOOL=82
N28 T65 <-------------------------------------------stages the next tool
N29 G15 H1
N30 G0 X-2. Y0. M03 S5000
N31 G00 G56 Z0.5 H82 M08
 
Have no idea about what your control needs or is looking for but this is what we use on a P-300 control.

N26 (1.0625 INDEXABLE DRILL)
N27 G116 TOOL=82
N28 T65 <-------------------------------------------stages the next tool
N29 G15 H1
N30 G0 X-2. Y0. M03 S5000
N31 G00 G56 Z0.5 H82 M08

That's interesting on our P300m were using G111 for tool change with "A" and "R" designation to stage next tool.

As in G111 A25 R55 (loads tool 25 then cycles to tool 55)

I have no experience with OP's control
 
That's interesting on our P300m were using G111 for tool change with "A" and "R" designation to stage next tool.

As in G111 A25 R55 (loads tool 25 then cycles to tool 55)

I have no experience with OP's control

I use G116 as well and then just a Txx on the next line to stage the next tool. Works like a charm.
 
Have no idea about what your control needs or is looking for but this is what we use on a P-300 control.

N26 (1.0625 INDEXABLE DRILL)
N27 G116 TOOL=82
N28 T65 <-------------------------------------------stages the next tool
N29 G15 H1
N30 G0 X-2. Y0. M03 S5000
N31 G00 G56 Z0.5 H82 M08

Interesting. I have this exact same machine and we use G116 T82. The rest of your code is the way we do it. What's with the "TOOL=82"?
 
tool=# is just because he has a different version of the ATC macro. The one I use is G116 T# Q3
 
Huh.

I love Okuma but you'd think they'd standardize on something like this.
 
Huh.

I love Okuma but you'd think they'd standardize on something like this.

What's to standardize?
I don't even use teh G116 macro, I just use T1M6.
It came with the Macro installed, but I deleted it. Didn't need it.
 
What's to standardize?
I don't even use teh G116 macro, I just use T1M6.
It came with the Macro installed, but I deleted it. Didn't need it.

What's the point of the G116 macro then if it will change tools fine with T1M6?
 
What's the point of the G116 macro then if it will change tools fine with T1M6?

I'm not sure I think it supposed to help with error recovery but there are soft buttons on the control for that as well so.....?
 
What's the point of the G116 macro then if it will change tools fine with T1M6?

I think the G116 macro allows you to index with no tool in the spindle.
A simple M code does the same thing before an M6 if you have no tool in the spindle.
Offhand I THINK it's M332 but don't quote me on that.
 
You mean to leave it empty? I think we just do a G116 T0 to put the tool away and leave the spindle empty.
 
Depending on where you live in the country, Okuma distributors use different G-code macros for tool changes. Both macros accomplish the same thing; reduce the amount of errors during operation and the amount of key strokes needed to do simple tool changes. If you just use M6 T#, and also pre-stage tools with a T# on a following line, you will get an alarm during restarts when the control reads the M6 again. This requires you to use M64 to un-prep the staged tool, then restart again. If you want to clear the spindle, you normally have to issue an M63 then M6. If you have a prepped tool but want to change to a different tool number, you would normally have to use M64 to unprep the current tool, then M6 T# to call the new tool.

G111 and G116 are custom macros that handle situations like this and makes it easier on the operators to use.

To answer the original question, if you put a T# on any line after your M6 the machine will prep the T# for a faster tool change.
 








 
Back
Top