What's new
What's new

A axis programming question

chip_maker

Stainless
Joined
Jan 14, 2006
Location
Moira, NY USA
I'm having a brain fart right now. I'm trying to write the shortest possible code to drill 36 holes around the o.d. of a part. I don't want to have to write it like:

g81 z-.o6 r.05 f20.
a20.
a30.
..........
a350.
g0 g80 z.1

I'm sure there is a shorter way to write the code but I can't remember how to write it:willy_nilly:.

Thanks!
 
I'm having a brain fart right now. I'm trying to write the shortest possible code to drill 36 holes around the o.d. of a part. I don't want to have to write it like:

g81 z-.o6 r.05 f20.
a20.
a30.
..........
a350.
g0 g80 z.1

I'm sure there is a shorter way to write the code but I can't remember how to write it:willy_nilly:.

Thanks!
G00 X0. Y0. A0.
G81 Z-.06 R.05 F20.
G91 A10. L35
G80
G90 Z1. M09

mIKE
 








 
Back
Top