diff options
author | wizard23 <wizard23@cb376a5e-1013-0410-a455-b6b1f9ac8223> | 2008-06-28 21:16:38 +0000 |
---|---|---|
committer | wizard23 <wizard23@cb376a5e-1013-0410-a455-b6b1f9ac8223> | 2008-06-28 21:16:38 +0000 |
commit | 2b4c0b36f0959d357a42d7de7f53250ebb2d8b47 (patch) | |
tree | b66f15669f30308cc453fb402d9802cb84b1f375 /trunk/users/wizard23 | |
parent | 0158253f804a7e45b8848f78e956eb6a12ef7fe2 (diff) | |
download | reprap-backup-2b4c0b36f0959d357a42d7de7f53250ebb2d8b47.tar.gz reprap-backup-2b4c0b36f0959d357a42d7de7f53250ebb2d8b47.zip |
more commands
git-svn-id: https://reprap.svn.sourceforge.net/svnroot/reprap@1672 cb376a5e-1013-0410-a455-b6b1f9ac8223
Diffstat (limited to 'trunk/users/wizard23')
-rw-r--r-- | trunk/users/wizard23/processing/GCode_Exerciser/GCode_Exerciser.pde | 31 |
1 files changed, 28 insertions, 3 deletions
diff --git a/trunk/users/wizard23/processing/GCode_Exerciser/GCode_Exerciser.pde b/trunk/users/wizard23/processing/GCode_Exerciser/GCode_Exerciser.pde index 7f6d9b50..a4aa678a 100644 --- a/trunk/users/wizard23/processing/GCode_Exerciser/GCode_Exerciser.pde +++ b/trunk/users/wizard23/processing/GCode_Exerciser/GCode_Exerciser.pde @@ -140,16 +140,16 @@ String getNextCommand() // Z axsis if (key == 'q' || key == 'Q') { - c = "G0 X0 Y0 Z2 F50"; + c = "G0 X0 Y0 Z2 F150"; } if (key == 'z') { - c = "G0 X0 Y0 Z-2 F50"; + c = "G0 X0 Y0 Z-2 F150"; } if (key == 'Z') { - c = "G0 X0 Y0 Z-2 F50"; + c = "G0 X0 Y0 Z-0.2 F150"; } if (key == 'u') @@ -194,6 +194,31 @@ String getNextCommand() c = "M103 (extruder off)"; } + if (key == 'b') + { + c = "M102 (extruder reverse)"; + } + + if (key == 't' || key == 'T') + { + c = "M105 (get current temp)"; + } + + if (key == 'f') + { + c = "M106 (cooling on)"; + } + + if (key == 'f') + { + c = "M106 (cooling on)"; + } + + if (key == 'F') + { + c = "M107 (cooling off)"; + } + |