diff options
Diffstat (limited to 'test/klippy/move.gcode')
-rw-r--r-- | test/klippy/move.gcode | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/klippy/move.gcode b/test/klippy/move.gcode new file mode 100644 index 00000000..30e2a02c --- /dev/null +++ b/test/klippy/move.gcode @@ -0,0 +1,22 @@ +; Simple movement tests + +; Start by homing the printer. +G28 +G1 F6000 + +; Z / X / Y moves +G1 Z1 +G1 X1 +G1 Y1 + +; diagonal moves +G1 X0 Y0 +G1 X1 Z2 +G1 X0 Y1 Z1 + +; extrude only moves +G1 E1 +G1 E0 + +; regular extrude move +G1 X0 Y0 E.01 |