diff options
author | wizard23 <wizard23@cb376a5e-1013-0410-a455-b6b1f9ac8223> | 2008-06-24 21:37:44 +0000 |
---|---|---|
committer | wizard23 <wizard23@cb376a5e-1013-0410-a455-b6b1f9ac8223> | 2008-06-24 21:37:44 +0000 |
commit | 72c7b7baf551fd77fb8bb2b8604fc3a131cd769c (patch) | |
tree | 45b39d8b78f6558a3353841977fce8bfdcac5ab7 | |
parent | 0e131d8402ccc60cc8519f36c4bb94e28291132b (diff) | |
download | reprap-backup-72c7b7baf551fd77fb8bb2b8604fc3a131cd769c.tar.gz reprap-backup-72c7b7baf551fd77fb8bb2b8604fc3a131cd769c.zip |
tweaks on Gcode excerciser
git-svn-id: https://reprap.svn.sourceforge.net/svnroot/reprap@1661 cb376a5e-1013-0410-a455-b6b1f9ac8223
-rw-r--r-- | trunk/users/wizard23/processing/GCode_Exerciser/GCode_Exerciser.pde | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/trunk/users/wizard23/processing/GCode_Exerciser/GCode_Exerciser.pde b/trunk/users/wizard23/processing/GCode_Exerciser/GCode_Exerciser.pde index 7bceba66..7f6d9b50 100644 --- a/trunk/users/wizard23/processing/GCode_Exerciser/GCode_Exerciser.pde +++ b/trunk/users/wizard23/processing/GCode_Exerciser/GCode_Exerciser.pde @@ -173,13 +173,13 @@ String getNextCommand() if (key == 'i') { - motorSpeed += 5; + motorSpeed += 1; c = "M108 S" + motorSpeed; } if (key == 'j') { - motorSpeed -= 5; + motorSpeed -= 1; c = "M108 S" + motorSpeed; } |