summaryrefslogtreecommitdiff
path: root/trunk/users/wizard23
diff options
context:
space:
mode:
authorwizard23 <wizard23@cb376a5e-1013-0410-a455-b6b1f9ac8223>2008-07-04 23:36:07 +0000
committerwizard23 <wizard23@cb376a5e-1013-0410-a455-b6b1f9ac8223>2008-07-04 23:36:07 +0000
commit0723b5d444f3dc06b329800ec8552e1f98ab31d8 (patch)
tree80365cbc21098e93b4994032dbfdf1cad568fe7a /trunk/users/wizard23
parent83728468d0509359333d43f359ba584c0fb22341 (diff)
downloadreprap-backup-0723b5d444f3dc06b329800ec8552e1f98ab31d8.tar.gz
reprap-backup-0723b5d444f3dc06b329800ec8552e1f98ab31d8.zip
shift keys used now
git-svn-id: https://reprap.svn.sourceforge.net/svnroot/reprap@1704 cb376a5e-1013-0410-a455-b6b1f9ac8223
Diffstat (limited to 'trunk/users/wizard23')
-rw-r--r--trunk/users/wizard23/processing/GCode_Exerciser/GCode_Exerciser.pde17
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')
{