Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Heating/Heater.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Heating/Heater.cpp b/src/Heating/Heater.cpp
index b044b37b..69d5c950 100644
--- a/src/Heating/Heater.cpp
+++ b/src/Heating/Heater.cpp
@@ -178,7 +178,7 @@ GCodeResult Heater::SetOrReportModel(unsigned int heater, GCodeBuffer& gb, const
{
// Old style heating model. A = gain, C = cooling time constant
seen = true;
- heatingRate = gain * basicCoolingRate * 100.0;
+ heatingRate = gain * basicCoolingRate * 0.01;
}
}