summaryrefslogtreecommitdiff
path: root/Sprinter/Sprinter.pde
diff options
context:
space:
mode:
authorblddk <michael.andresen@gmail.com>2012-01-22 21:51:56 +0100
committerblddk <michael.andresen@gmail.com>2012-01-22 21:51:56 +0100
commit908bc5314ca92dd673509e7a60e371752692be4b (patch)
tree329e5eb242658aa7964b2ba1e2e905dd7f31ef2b /Sprinter/Sprinter.pde
parentd8b6c5f233e905dbb5282a255dddd68deb1c3d7f (diff)
Reported wrong temperature while heating up
Diffstat (limited to 'Sprinter/Sprinter.pde')
-rw-r--r--Sprinter/Sprinter.pde2
1 files changed, 1 insertions, 1 deletions
diff --git a/Sprinter/Sprinter.pde b/Sprinter/Sprinter.pde
index e793891..874c333 100644
--- a/Sprinter/Sprinter.pde
+++ b/Sprinter/Sprinter.pde
@@ -980,7 +980,7 @@ inline void process_commands()
Serial.print("T:");
Serial.print( tt );
Serial.print(" B:");
- Serial.println( analog2temp(current_bed_raw) );
+ Serial.println(analog2tempBed(current_bed_raw));
codenum = millis();
}
manage_heater();