CNCMill: Difference between revisions

From Traxel Wiki
Jump to navigation Jump to search
(Created page with "Category:Hacking = G-Code = This may be specific to Acorn CNC at HSL. == Feeds == == Straight Line Traversal == == Straight Line Cuts == == Arc Cuts == == Drill Arr...")
 
Line 4: Line 4:


This may be specific to Acorn CNC at HSL.
This may be specific to Acorn CNC at HSL.
== Comments ==
Comments are in parentheses.
<pre>
G0X0Y0 (rapid traverse to origin)
</pre>


== Feeds ==
== Feeds ==
Feed rate is set with an F command, in the active units.
<pre>
G20 (inches)
F15 (15 inches per minute)
G1X0Y0 (traverse to origin at 15 IPM)
G21 (millimeters)
F375 (375 mm per minute)
G1X0Y0 (traverse to origin at 375mmPM)
</pre>


== Straight Line Traversal ==
== Straight Line Traversal ==

Revision as of 21:12, 19 July 2022


G-Code

This may be specific to Acorn CNC at HSL.

Comments

Comments are in parentheses.

G0X0Y0 (rapid traverse to origin)

Feeds

Feed rate is set with an F command, in the active units.

G20 (inches)
F15 (15 inches per minute)
G1X0Y0 (traverse to origin at 15 IPM)
G21 (millimeters)
F375 (375 mm per minute)
G1X0Y0 (traverse to origin at 375mmPM)

Straight Line Traversal

Straight Line Cuts

Arc Cuts

Drill Array Pecking