diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-07-05 11:02:09 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-07-05 11:02:09 -0400 |
commit | 295a6f48fc05e942719e553208dd454f0e54c04f (patch) | |
tree | 2e80fea55ee066d17ce82c0d3ab55bfeca6fe061 /test | |
parent | 1eb416002bf9abfc2fe9d30e9c42c44704e0f791 (diff) | |
download | kutter-295a6f48fc05e942719e553208dd454f0e54c04f.tar.gz kutter-295a6f48fc05e942719e553208dd454f0e54c04f.tar.xz kutter-295a6f48fc05e942719e553208dd454f0e54c04f.zip |
test: Add additional movement commands to move.gcode
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'test')
-rw-r--r-- | test/klippy/move.gcode | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/test/klippy/move.gcode b/test/klippy/move.gcode index 30e2a02c..9bc1f0f6 100644 --- a/test/klippy/move.gcode +++ b/test/klippy/move.gcode @@ -2,6 +2,7 @@ ; Start by homing the printer. G28 +G90 G1 F6000 ; Z / X / Y moves @@ -9,6 +10,13 @@ G1 Z1 G1 X1 G1 Y1 +; Delayed moves +G1 Y2 +G4 P100 +G1 Y1.5 +M400 +G1 Y1 + ; diagonal moves G1 X0 Y0 G1 X1 Z2 @@ -20,3 +28,16 @@ G1 E0 ; regular extrude move G1 X0 Y0 E.01 + +; fan speeds +M106 S50 +M106 +M106 S90 +M106 S0 +M107 + +; coordinate manipulation +G92 Y-3 +G1 Y-2 +G91 +G1 Y-1 |