diff options
author | wizard23 <wizard23> | 2008-07-04 23:36:07 +0000 |
---|---|---|
committer | wizard23 <wizard23@cb376a5e-1013-0410-a455-b6b1f9ac8223> | 2008-07-04 23:36:07 +0000 |
commit | e52e5952e7fbafe4a8e19a77f14c69a900d551c1 (patch) | |
tree | 80365cbc21098e93b4994032dbfdf1cad568fe7a | |
parent | e5120aa6c3ffc81fd4e6deb0e7b2b91d6dfe7de7 (diff) | |
download | reprap-e52e5952e7fbafe4a8e19a77f14c69a900d551c1.tar.gz reprap-e52e5952e7fbafe4a8e19a77f14c69a900d551c1.zip |
shift keys used now
git-svn-id: https://reprap.svn.sourceforge.net/svnroot/reprap@1704 cb376a5e-1013-0410-a455-b6b1f9ac8223
-rw-r--r-- | trunk/users/wizard23/processing/GCode_Exerciser/GCode_Exerciser.pde | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/trunk/users/wizard23/processing/GCode_Exerciser/GCode_Exerciser.pde b/trunk/users/wizard23/processing/GCode_Exerciser/GCode_Exerciser.pde index 04413383..be8b428b 100644 --- a/trunk/users/wizard23/processing/GCode_Exerciser/GCode_Exerciser.pde +++ b/trunk/users/wizard23/processing/GCode_Exerciser/GCode_Exerciser.pde @@ -137,6 +137,23 @@ String getNextCommand() c = "G1 X0 Y-10 Z0 F450"; } + if (key == 'A') + { + c = "G1 X1 Y0 Z0 F450"; + } + if (key == 'D') + { + c = "G1 X-1 Y0 Z0 F450"; + } + if (key == 'W') + { + c = "G1 X0 Y1 Z0 F450"; + } + if (key == 'S') + { + c = "G1 X0 Y-1 Z0 F450"; + } + // Z axsis if (key == 'q' || key == 'Q') { |