diff options
author | Emanuele Caruso <emanuele.caruso@gmail.com> | 2011-04-03 20:15:18 +0200 |
---|---|---|
committer | Emanuele Caruso <emanuele.caruso@gmail.com> | 2011-04-03 20:15:18 +0200 |
commit | 646684a5e4a38d520d4ac84ba7b511a50c96ddfb (patch) | |
tree | 97035d8218a153cfa91646aab3cc3b7b185eecab | |
parent | 0edb70a105489dc2646284aeb10ef045f7f78b17 (diff) |
Updated README with important information on how to configure thermistor table(s)
-rw-r--r-- | README | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -4,6 +4,11 @@ This work is licensed under the GNU GPL v3 or (at the user's discretion) any lat It is based on Tonokips's firmware, which was licensed under GPL v2 or later.
-
-
-
+WARNING: The configuration file now has a value to set the wanted temperature table file. If you copy and paste a temperature file from older versions, make sure that the configuration is pointing to it. For example:
+#include "ThermistorTable.h"
+
+WARNING_2: In addition, you can optionally use a different thermistor table for hot-end and bed. To do so, comment the following line in configuration.h:
+#define bedtemptable temptable
+Then add a line pointing to your second thermistor table, for example:
+#include "BedThermistorTable.h"
+Finally, make sure that the nozzle thermistor table, inside ThermistorTable.h in this case, is defined as "temptable" and that the bed thermistor table is defined as "bedtemptable".
|