Programming manual
CNC 8070
CREATING A PROGRAM
Program structure
1.
(SOFT V02.0X)
3
Program body
The beginning of the program body is defined by "%<name>", where
<name> may be up to 14 characters long and consist of uppercase
and lowercase letters as well as numbers (no blank spaces are
allowed). It needs not be programmed when no subroutines are
defined.
The end of the program body is defined by "M02" or "M30" and IT
MUST be programmed.
%L POINTS
G01 X2 Y2
G01 X3 Y3
G01 X4 Y4
M17
%PROGRAM
G81 X1 Y1 ··· (Center punching definition)
LL POINTS (Call the subroutine)
G81 X1 Y1 ··· (Drilling definition)
LL POINTS (Call the subroutine)
G84 X1 Y1 ··· (Tapping definition)
LL POINTS (Call the subroutine)
G80
M30
1
3
2
4