PageChapter: 6 Section:
PROGRAMMING 19
Example of programming:
N0 G74 X ............ ; Search for reference point of axis X
N1 G34 X125 ...... ; Activation of slave mode
N2 S1000 M3....... ; Turning direction and speed of the roller with wedge
Axis X will move as infinite slave, making cuts every 125
mm.
N3 M0.................. ; Program stop
Function G34 is still active and cuts are still made every 125
mm
If the START key is pressed the CNC will continue with
program execution .
N4 M30............... ; End of the program
The following example displays how one can program cutting of one batch of parts 150
mm in length and then another batch of 80 mm pieces.
N0 G74 X ............ ; Search for reference point of axis X
N1 G34 X150 ...... ; Activation of slave mode
N2 S1000 M3....... ; Turning direction and speed of the roller with wedge.
Axis X will move as infinite slave, making cuts every 125
mm.
N3 M0.................. ; Program stop
Function G34 is still active and cuts are still made every 125
mm
The CNC does not continue with the execution of the
program until the START key is pressed
N4 M5.................. ; Program stop. End of the first batch.
If required the material to be cut can be changed.
N5 M0.................. ; Program stop.
The CNC does not continue with the execution of the
program until the START key is pressed.
N6 G74 X ............ ; Search for reference point of axis X
N7 G34 X80 ........ ; Activation of the slave mode. Cuts every 80 mm
N8 S1000 M3....... ; Turning direction and speed of the roller with wedge.
Axis X will move as infinite slave, making cuts every 80
mm.
N9 M0.................. ; Program stop.
Function G34 is still active and cuts are still made every 80
mm
The CNC does not continue with the execution of the
program until the START key is pressed.
N10 M30.............. ; End of program
PATH CONTROL