Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
g28-reprap [2017/01/25 18:35] arthur |
g28-reprap [2017/01/25 18:55] (current) arthur |
||
---|---|---|---|
Line 11: | Line 11: | ||
The command is used as such : | The command is used as such : | ||
- | [[code]] | + | <code> |
G28 X10 Y10 | G28 X10 Y10 | ||
- | [[/code]] | + | </code> |
Which means : move until you hit the X and Y endstops, then set the current X position to 10 and the Y position to 10 | Which means : move until you hit the X and Y endstops, then set the current X position to 10 and the Y position to 10 | ||
Line 19: | Line 19: | ||
You can also use the Gcode without any parameters : | You can also use the Gcode without any parameters : | ||
- | [[code]] | + | <code> |
G28 | G28 | ||
- | [[/code]] | + | </code> |
Which is equivalent to doing : | Which is equivalent to doing : | ||
- | [[code]] | + | <code> |
G28 X0 Y0 Z0 | G28 X0 Y0 Z0 | ||
- | [[/code]] | + | </code> |
=== Parameters | === Parameters |