summaryrefslogtreecommitdiff
path: root/Tonokip_Firmware/ThermistorTable_mendelparts.h
diff options
context:
space:
mode:
Diffstat (limited to 'Tonokip_Firmware/ThermistorTable_mendelparts.h')
-rw-r--r--Tonokip_Firmware/ThermistorTable_mendelparts.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/Tonokip_Firmware/ThermistorTable_mendelparts.h b/Tonokip_Firmware/ThermistorTable_mendelparts.h
new file mode 100644
index 0000000..68766ad
--- /dev/null
+++ b/Tonokip_Firmware/ThermistorTable_mendelparts.h
@@ -0,0 +1,32 @@
+#ifndef THERMISTORTABLE_H_
+#define THERMISTORTABLE_H_
+
+//thermistor table for mendel-parts thermistor
+
+#define NUMTEMPS 20
+short temptable[NUMTEMPS][2] = {
+ {1, 827},
+ {54, 253},
+ {107, 207},
+ {160, 182},
+ {213, 165},
+ {266, 152},
+ {319, 141},
+ {372, 132},
+ {425, 123},
+ {478, 115},
+ {531, 107},
+ {584, 100},
+ {637, 93},
+ {690, 86},
+ {743, 78},
+ {796, 70},
+ {849, 61},
+ {902, 49},
+ {955, 34},
+ {1008, 3}
+};
+
+
+#endif
+