How To Use Charly 4U Milling Mchine Using The Gcode
How To Use Charly 4U Milling Mchine Using The Gcode
Charly 4U
Milling Machine
USING THE GCODE
FOR ISO FILE
fast moving
moving at a controlled speed in a straight line or an arc
range of motion at a controlled rate to achieve a hole, cut a piece to a
given size, or added a decorative profile on the edge of a piece.
X position
Y position
Z position
A position
B position
C position
I X-axis data of an arc
J Y-axis data of an arc
Radius R
Origins:
Original program (OP) is the origin point of the program from which the
movements of the machine is programmed.
Original machine (OM) is the origin point in space from which to
measure the machine movements. It is defined by the manufacturer
and it is fixed.
Work piece (Opp) is used to place the coin in the machine. It is defined by the
operator.
Corrections
The markers used to account for different tool lengths and diameters.
Spell length strawberry: Activated automatically when changing
tool M6.
Cutter radius correction: G41 and G42, G40 cancellation.
G41 positions the tool to the left of the programmed path of a value
equal to the radius.
G42 positions the tool to the right of the programmed path of a value
equal to the radius.
Axes
The Z axis of a CNC machine is always the axis of the
rotating pin.
The X and Y axes are arranged in a direct orthogonal
with respect to Z.
The X axis is the one that allows the greatest
distance of travel. The last axis being the axis Y.
Axe called A, B, C.
Axes A, B, C rotary axes are:
A rotating around X,
B about Y,
C around Z.
IV - Instructions analyzed
by the ISO code for Gpilote
Charlyrobot
PREAMBLE:
The motion commands are processed centrally tool for XY and Z to the
end of tool (not management tool offset).
G0 and G1 commands are modal.
Orders G2 and G3 are not modal. In the latest versions of the control
module, a command G2 or G3 is accepted as implicitly recognized by
the presence of the parameters I, J. or R.
The first shift at the beginning or after a machining tool change must
specify the XY Z.
Commands executed:
XYZ coordinates of points in mm.
A Coordinate degree of the rotation axis horizontal and parallel to the X
axis (4th axis)
A is used when the origin of Y, Z must correspond to the coordinates Y,
Z of the 4th axis.
limited to 650 laps
G0 Rapid movement (not subject)
V - Syntax a program
Example 1: Making simple 3 axes.
N10 G71
N20 G90
N30 T1
N40 S8000
N50 G0 X10 Y10 Z10
N60 G1 Z-1 F1200
N70 X20
N80 Y20
N90 X10
Y10 N100
N110 Z10
N120 T2
N130 G0 X10 Y20 Z10
N140 G1 Z-1 F800
N150 G2 X20 Y20 R10 F1200
F800 N160 G1 Z10
N10 indicates a line number, it is optional. G71 sets the unit metric unit G70 in inches.
N20 G90 sets the absolute mode (G91 mode relative). It defaults to G90 if not specified.
Gpilote will automatically position the pin in the tool change position.
With a tool changer, will take the tool placed in a position in the rack. It will introduce the
tool automatically pin, if there is one.
the M3 is not required, the pin starts automatically the first move, and stops
automatically after the last move.
N50 G0 runs out on a trip at high speed (the maximum speed set in the machine
Charlyrobot).
X, Y and Z are required on the first line G0 or after a tool change. The following
values define the start position of the machine compared to the original program and the
room.
N70 to N110 control G1 is modal, ie it remains active until another command cancels, as
another command G, M and T.
(reverse clockwise).
It starts at the point earlier and moves back to the point indicated by X
and Y.
There are two ways to define the circularity:
or by defining the radius R,
or by defining the center of the circle I and J (respectively expressing x and y
ATTENTION! Gpilote does not define an arc greater than or equal to 180
, otherwise it will take the smaller of the two arcs possible. To define a
circle or arc greater than 180 must break the circle or arc as long arcs as
necessary, always strictly less than 180 .
N160 back the tool out of the material in G1 (G0 better than an order to
set a speed).
N170 At the end of the program, the pin back in Z then moves diagonally
to the OM. Control M2 and M5 are not necessary.
N10 G90
F3000.000 N20N30 G01 X101.500 Y0.000 Z0.000
N40 G04 F10
N50 G01 X100.000 Y0.000
N60 G03 X-100000 Y0.000 I0.000 J0.000
N70 G03 Y0 X100.000 I0.000 J0.000
N75 G03 X0.000 Y100.000 I0.000 J0.000
N80 G01 X0.000 Y101.500
N85 G00 Z0.1
N90 G04 F3
N95 G00 Z0
N100 G01 X0.000 Y100.000
N110 G02 X0.000 Y-100 000 I0.000 J0.000
N115 G02 X0.000 Y100.000 I0.000 J0.000
N120 G02 X100.000 Y0.000 I0.000 J0.000
N130 G01 X101.500 Y0.000
N135 G00 Z0.1
N140 G04 F10
N150 G00 Z0
N10, G90 sets the absolute mode (G91 mode relative). It defaults to
PROGRAM