aboutsummaryrefslogtreecommitdiff
path: root/Marlin/src/module/thermistor/thermistor_55.h
diff options
context:
space:
mode:
Diffstat (limited to 'Marlin/src/module/thermistor/thermistor_55.h')
-rw-r--r--Marlin/src/module/thermistor/thermistor_55.h62
1 files changed, 62 insertions, 0 deletions
diff --git a/Marlin/src/module/thermistor/thermistor_55.h b/Marlin/src/module/thermistor/thermistor_55.h
new file mode 100644
index 0000000..707b7d4
--- /dev/null
+++ b/Marlin/src/module/thermistor/thermistor_55.h
@@ -0,0 +1,62 @@
+/**
+ * Marlin 3D Printer Firmware
+ * Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
+ *
+ * Based on Sprinter and grbl.
+ * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
+#pragma once
+
+// R25 = 100 kOhm, beta25 = 4267 K, 1 kOhm pull-up,
+// 100k ATC Semitec 104GT-2 (Used on ParCan) (WITH 1kohm RESISTOR FOR PULLUP, R9 ON SANGUINOLOLU! NOT FOR 4.7kohm PULLUP! THIS IS NOT NORMAL!)
+// Verified by linagee. Source: https://www.mouser.com/datasheet/2/362/semitec%20usa%20corporation_gtthermistor-1202937.pdf
+// Calculated using 1kohm pullup, voltage divider math, and manufacturer provided temp/resistance
+// Advantage: More resolution and better linearity from 150C to 200C
+const temp_entry_t temptable_55[] PROGMEM = {
+ { OV( 1), 500 },
+ { OV( 76), 300 },
+ { OV( 87), 290 },
+ { OV( 100), 280 },
+ { OV( 114), 270 },
+ { OV( 131), 260 },
+ { OV( 152), 250 },
+ { OV( 175), 240 },
+ { OV( 202), 230 },
+ { OV( 234), 220 },
+ { OV( 271), 210 },
+ { OV( 312), 200 },
+ { OV( 359), 190 },
+ { OV( 411), 180 },
+ { OV( 467), 170 },
+ { OV( 527), 160 },
+ { OV( 590), 150 },
+ { OV( 652), 140 },
+ { OV( 713), 130 },
+ { OV( 770), 120 },
+ { OV( 822), 110 },
+ { OV( 867), 100 },
+ { OV( 905), 90 },
+ { OV( 936), 80 },
+ { OV( 961), 70 },
+ { OV( 979), 60 },
+ { OV( 993), 50 },
+ { OV(1003), 40 },
+ { OV(1010), 30 },
+ { OV(1015), 20 },
+ { OV(1018), 10 },
+ { OV(1020), 0 }
+};