home *** CD-ROM | disk | FTP | other *** search
- name Mitsubishi L0
-
- O >4
- N >4
- G >2
- X ->3.>4
- Z ->3.>4
- d >2 D
- I ->3.>4
- K ->3.>4
- U ->3.>4
- W ->3.>4
- D ->3.>4
- H >2
- F >3.>3
- T 4
- S >4
- M >2
-
- Revsigns X I # List of letters to reverse signs
-
- ModalGs 0 1 2 3 73 74 76 80 81 82 83 84 85 # List of g codes that are modal
-
- Sequence#s N 1 1 1 # Char, freq, incr & start
- First#? N # Y or N 'Output 1st sequence no.
-
- Comment ( ) # Begin End comment char.
-
- HCode Z # X or X U 'Horizontal char.
- VCode X # Y or Y V 'Vertical char.
- FeedCode F # Feed rate char.
-
- RevTurret2? Y
- HCode2 Z
- VCode2 X
-
- Spindle 3 4 5 # Cw, ccw & stop m codes
- Coolant 8 9 7 # On, Off & Mist m codes
- SpeedType G 97 96 # CSS and RPM g codes
- FeedType G 95 94 # IPR & IPM g codes
-
- ByDiameter? Y # Y or N 'Output X val. by diameter
-
- CtrIncremental? Y # Y or N 'Inc or abs I & J
- ByQuadrants? Y # Y or N 'Break arcs at quadrants
-
- Inc/Abs G 91 90 # Inc & Abs char. & values
-
- Inch/MM 20 21 # Inch & Metric g codes
-
- CtrCode K I # I J or R or I J K L
-
- Feed G1 # Linear move
- Rapid G0 # Rapid positioning word
- Cw G2 # Circular move clockwise
- Ccw G3 # Circular move counter clockwise
-
- UppercaseComments? Y # Y or N 'Require uppercase comments
-
- AutoThread # Automatic thread canned cycle
- G32
- End
-
- Drill # Drilling canned/manual cycle
- G1 Z[H] F[Frate]
- G0 Z[SClear]
- end
-
- Peck # Pecking canned/manual cycle
- none
- end
-
- Tap # Tapping canned/manual cycle
- G78 Z[H] F[FRate]
- end cancel
-
- Ream # Reaming canned/manual cycle
- G1 Z[H] F[FRate]
- G0 Z[SClear]
- end
-
- Cancel # Cancel a canned/manual cycle
- G80
- end
-
- StartCode # Start of the program
- O[Program#]
- End
-
- 1stToolChange # First tool change
- T0
- G28 W0
- G28 U0
- G50 X0 Z0
- M1
- T[Tool]
- G0 X[V]
- G[FeedType] G[SpeedType] S[Speed] M[Direct]
- Z[H] M[Cool]
- End
-
- Infeed # Enable cutter comp
- G1 X[V] Z[H] d[Dcomp] F[FRate]
- end
-
- Outfeed # Disable cutter comp
- G1 X[V] Z[H] F[FRate]
- end
-
- ToolChange # Secondary tool changes
- G0 Z[ToolH] M5
- T0
- M1
-
- T[Tool]
- G0 X[V]
- G[FeedType] G[SpeedType] S[Speed] M[Direct]
- Z[H] M[Cool]
- End
-
- EndCode # End of the program
- G0 Z[ToolH] X[ToolV]
- G28 W0 M5
- G28 U0
- M30
- End
-
-