Browse Source

Spacing of g-codes in GCodes.md

Scott Lahteine 9 years ago
parent
commit
652d59cd80
1 changed files with 15 additions and 15 deletions
  1. 15
    15
      Documentation/GCodes.md

+ 15
- 15
Documentation/GCodes.md View File

@@ -2,12 +2,12 @@
2 2
 
3 3
 ### Movement G and M Codes
4 4
 ```
5
-G0  -> G1
6
-G1  - Coordinated Movement X Y Z E
7
-G2  - CW ARC
8
-G3  - CCW ARC
9
-G4  - Dwell S[seconds] or P[milliseconds]
10
-G92 - Set current position to cordinates given
5
+G0   -> G1
6
+G1   - Coordinated Movement X Y Z E
7
+G2   - CW ARC
8
+G3   - CCW ARC
9
+G4   - Dwell S[seconds] or P[milliseconds]
10
+G92  - Set current position to cordinates given
11 11
 M0   - Wait for user, with optional prompt message (to press the LCD button, requires ULTRA_LCD)
12 12
        M0 Click When Ready ; show "Click When Ready" until the button is pressed.
13 13
 M1   - Same as M0
@@ -94,8 +94,8 @@ M600 - Pause for filament change X<xpos> Y<ypos> Z<lift> E<initial retract> L<la
94 94
 ```
95 95
 ### Units and Measures G and M Codes
96 96
 ```
97
-G90 - Use Absolute Coordinates
98
-G91 - Use Relative Coordinates
97
+G90  - Use Absolute Coordinates
98
+G91  - Use Relative Coordinates
99 99
 M82  - Set E codes absolute (default)
100 100
 M83  - Set E codes relative while in Absolute Coordinates (G90) mode
101 101
 M92  - Set axis_steps_per_unit - same syntax as G92
@@ -112,19 +112,19 @@ M221 - Set extrude factor override percentage: S<factor in percent>
112 112
 ```
113 113
 ### Firmware Retraction G and M Codes
114 114
 ```
115
-G10 - Retract filament according to settings of M207
116
-G11 - Retract recover filament according to settings of M208
115
+G10  - Retract filament according to settings of M207
116
+G11  - Retract recover filament according to settings of M208
117 117
 M207 - Set retract length S[positive mm] F[feedrate mm/min] Z[additional zlift/hop], stays in mm regardless of M200 setting
118 118
 M208 - Set recover=unretract length S[positive mm surplus to the M207 S*] F[feedrate mm/s]
119 119
 M209 - S<1=true/0=false> enable automatic retract detect if the slicer did not support G10/11: every normal extrude-only move will be classified as retract depending on the direction
120 120
 ```
121 121
 ### Z Probe G and M Codes
122 122
 ```
123
-G28 - Home all Axis
124
-G29 - Detailed Z-Probe, probes the bed at 3 or more points. The printer must be homed with G28 before G29.
125
-G30 - Single Z Probe, probes bed at current XY location.
126
-G31 - Dock Z Probe sled (if enabled)
127
-G32 - Undock Z Probe sled (if enabled)
123
+G28  - Home all Axis
124
+G29  - Detailed Z-Probe, probes the bed at 3 or more points. The printer must be homed with G28 before G29.
125
+G30  - Single Z Probe, probes bed at current XY location.
126
+G31  - Dock Z Probe sled (if enabled)
127
+G32  - Undock Z Probe sled (if enabled)
128 128
 M48  - Measure Z_Probe repeatability: P<points> X<xpos> Y<ypos> V<verbosity> E=engage L<legs of travel>
129 129
        As with G29, the E flag causes the probe to stow after each probe.
130 130
 M401 - Lower Z-probe (if present)

Loading…
Cancel
Save