What's new
What's new

Okuma M-560 Genous Probing

dsutter220

Plastic
Joined
Jul 1, 2020
im trying to write a sub program to pick up a bore in a casted part for a production run .
don't know where to start can anyone help?

i'm trying to pick up a bore (datum a) then drill a hole and mill a small pocket. then load next part hit start and have it call up probe pick up the part again set my
h1 work offset and then cut. i dont know anything about creating my own probing program.
 
this program is part of a bigger one, it probes a bore that's 1.62" diameter and then moves over .375" and probes the bottom of the bore for z, it does so for all 8 and updates 8 offsets,

O1141
G40 G80 (imperial canned cycle cancel)
G90 (absolute)
G0 Z999.999 (z up)
IF[VTLCN EQ 1]N10 (check if probe in)
T=999 M6 (tool change to probe)
N10 (if probe in skip to here)
G15H1 (call work offset 1)
G01 G56 HA F=200.0 (call tool offset probe)
CALL O9832 (probe turn on)

CALL O9810 Z5.0 F200.0 (initial position)
CALL O9810 PX=0 PY=0 PF=200.0 (safe move xy)
CALL O9810 PZ=0.5 PF=200.0 (safe move z)
CALL O9814 PD=1.62 PS=1 (bore probe)
CALL O9810 Z1.0 F200.0 (retract)
CALL O9810 PX=0 PY=0.375 PF=200.0 (safe move xy away from center)
CALL O9810 PZ=0.25 PF=200.0 (safe move z)
CALL O9811 PS=1 PZ=0 (z probe)
CALL O9810 PZ=5 PF=200.0 (retract)

CALL O9833 (probe off)
G90
G0 Z999.999
M30

DSC03981.jpg
 








 
Back
Top