|
@@ -0,0 +1,60 @@
|
|
1
|
+/**
|
|
2
|
+ * Marlin 3D Printer Firmware
|
|
3
|
+ * Copyright (c) 2021 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
4
|
+ *
|
|
5
|
+ * Based on Sprinter and grbl.
|
|
6
|
+ * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
|
7
|
+ *
|
|
8
|
+ * This program is free software: you can redistribute it and/or modify
|
|
9
|
+ * it under the terms of the GNU General Public License as published by
|
|
10
|
+ * the Free Software Foundation, either version 3 of the License, or
|
|
11
|
+ * (at your option) any later version.
|
|
12
|
+ *
|
|
13
|
+ * This program is distributed in the hope that it will be useful,
|
|
14
|
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15
|
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16
|
+ * GNU General Public License for more details.
|
|
17
|
+ *
|
|
18
|
+ * You should have received a copy of the GNU General Public License
|
|
19
|
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
20
|
+ *
|
|
21
|
+ */
|
|
22
|
+#pragma once
|
|
23
|
+
|
|
24
|
+// R25 = 100 KOhm, beta25 = 4550 K, 4.7 kOhm pull-up, TDK NTCG104LH104KT1 https://product.tdk.com/en/search/sensor/ntc/chip-ntc-thermistor/info?part_no=NTCG104LH104KT1
|
|
25
|
+constexpr temp_entry_t temptable_2000[] PROGMEM = {
|
|
26
|
+{ OV(313), 125 },
|
|
27
|
+{ OV(347), 120 },
|
|
28
|
+{ OV(383), 115 },
|
|
29
|
+{ OV(422), 110 },
|
|
30
|
+{ OV(463), 105 },
|
|
31
|
+{ OV(506), 100 },
|
|
32
|
+{ OV(549), 95 },
|
|
33
|
+{ OV(594), 90 },
|
|
34
|
+{ OV(638), 85 },
|
|
35
|
+{ OV(681), 80 },
|
|
36
|
+{ OV(722), 75 },
|
|
37
|
+{ OV(762), 70 },
|
|
38
|
+{ OV(799), 65 },
|
|
39
|
+{ OV(833), 60 },
|
|
40
|
+{ OV(863), 55 },
|
|
41
|
+{ OV(890), 50 },
|
|
42
|
+{ OV(914), 45 },
|
|
43
|
+{ OV(934), 40 },
|
|
44
|
+{ OV(951), 35 },
|
|
45
|
+{ OV(966), 30 },
|
|
46
|
+{ OV(978), 25 },
|
|
47
|
+{ OV(988), 20 },
|
|
48
|
+{ OV(996), 15 },
|
|
49
|
+{ OV(1002), 10 },
|
|
50
|
+{ OV(1007), 5 },
|
|
51
|
+{ OV(1012), 0 },
|
|
52
|
+{ OV(1015), -5 },
|
|
53
|
+{ OV(1017), -10 },
|
|
54
|
+{ OV(1019), -15 },
|
|
55
|
+{ OV(1020), -20 },
|
|
56
|
+{ OV(1021), -25 },
|
|
57
|
+{ OV(1022), -30 },
|
|
58
|
+{ OV(1023), -35 },
|
|
59
|
+{ OV(1023), -40 }
|
|
60
|
+};
|