From 295a6f48fc05e942719e553208dd454f0e54c04f Mon Sep 17 00:00:00 2001
From: Kevin O'Connor <kevin@koconnor.net>
Date: Thu, 5 Jul 2018 11:02:09 -0400
Subject: [PATCH] test: Add additional movement commands to move.gcode

Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
---
 test/klippy/move.gcode | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/test/klippy/move.gcode b/test/klippy/move.gcode
index 30e2a02c2..9bc1f0f6a 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