We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1
Gcode to be used at start of gcode program
(Cancel cutter radius compensation)
G40
(Select XY plane-default) G17
(Cancel modal motion to ensure axis motion is not occurring)
G80 (Cancel tool length compensation) G49 (Use inches for length units) G20 (Absolute distance mode for IJK) G90.1 (Coordinate systems offset to zero) G92.1 (Units per minute mode, used in feed rates) G94 (Rapid linear motion) G0 (Absolute distance mode for XYZ) G90 (Reset scale factor of all axis to 1.0) G50 (Reset coordinate system offset) G52 X0 Y0 Z0 (Move in absolute coordinates. But first, use G90-absolute distance mode for XYZ.) G53 (Cancel rotate coordinate system.) G69 (Set tool offset values to zero for tool #1..253, Z-height, A-tool tip radius, X-diameter) (But first, need radius, G40, and length, G49, cutter compensation turned off.) G40 G49 G10 L1 P1 Z0 A0 X0 � G10 L1 P253 Z0 A0 X0 (Set the fixture offset values to zero for fixture #1..253.) (But first, need to use G90-absolute distance.) G90 G10 L2 P1 X0 Y0 Z0 A0 B0 C0 � G10 L2 P253 X0 Y0 Z0 A0 B0 C0
Gcode to be used at end of gcode program
(Incrementally move tool 4 inches up on Z axis) G91 Z4 (Absolute distance mode for XYZ) G90 (Cancel tool length compensation) G49 (Program end and rewind) M30