diff options
author | kintel <kintel> | 2008-07-23 18:04:10 +0000 |
---|---|---|
committer | kintel <kintel@cb376a5e-1013-0410-a455-b6b1f9ac8223> | 2008-07-23 18:04:10 +0000 |
commit | 59bada58c4e710840b96723bcf0963b2450e34c6 (patch) | |
tree | 2014937e02adf11adec4b3abdb8f318e607ce2d6 | |
parent | 50436e3902e32753653c080f9c6bfd5cc115aa82 (diff) | |
download | reprap-59bada58c4e710840b96723bcf0963b2450e34c6.tar.gz reprap-59bada58c4e710840b96723bcf0963b2450e34c6.zip |
Upped default temp to 200
git-svn-id: https://reprap.svn.sourceforge.net/svnroot/reprap@1783 cb376a5e-1013-0410-a455-b6b1f9ac8223
-rw-r--r-- | trunk/users/metalab/processing/GCode_Exerciser/GCode_Exerciser.pde | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/trunk/users/metalab/processing/GCode_Exerciser/GCode_Exerciser.pde b/trunk/users/metalab/processing/GCode_Exerciser/GCode_Exerciser.pde index 9105fa49..5ecd9eb6 100644 --- a/trunk/users/metalab/processing/GCode_Exerciser/GCode_Exerciser.pde +++ b/trunk/users/metalab/processing/GCode_Exerciser/GCode_Exerciser.pde @@ -193,7 +193,7 @@ String getNextCommand() // Temp case 'u': - targetTemp = 185; + targetTemp = 200; c = "M104 S" + targetTemp; break; case 'p': |