|
@@ -0,0 +1,66 @@
|
|
1
|
+/**
|
|
2
|
+ * Marlin 3D Printer Firmware
|
|
3
|
+ * Copyright (c) 2020 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 = 3950 K, 4.7 kOhm pull-up
|
|
25
|
+// Resistance 100k Ohms at 25deg. C
|
|
26
|
+// Resistance Tolerance + / -1%
|
|
27
|
+// B Value 3950K at 25/50 deg. C
|
|
28
|
+// B Value Tolerance + / - 1%
|
|
29
|
+// Kis3d Silicone Heater 24V 200W/300W with 6mm Precision cast plate (EN AW 5083)
|
|
30
|
+// Temperature setting time 10 min to determine the 12Bit ADC value on the surface. (le3tspeak)
|
|
31
|
+const temp_entry_t temptable_30[] PROGMEM = {
|
|
32
|
+ { OV( 1), 938 },
|
|
33
|
+ { OV( 298), 125 }, // 1193 - 125°
|
|
34
|
+ { OV( 321), 121 }, // 1285 - 121°
|
|
35
|
+ { OV( 348), 117 }, // 1392 - 117°
|
|
36
|
+ { OV( 387), 113 }, // 1550 - 113°
|
|
37
|
+ { OV( 411), 110 }, // 1644 - 110°
|
|
38
|
+ { OV( 445), 106 }, // 1780 - 106°
|
|
39
|
+ { OV( 480), 101 }, // 1920 - 101°
|
|
40
|
+ { OV( 516), 97 }, // 2064 - 97°
|
|
41
|
+ { OV( 553), 92 }, // 2212 - 92°
|
|
42
|
+ { OV( 591), 88 }, // 2364 - 88°
|
|
43
|
+ { OV( 628), 84 }, // 2512 - 84°
|
|
44
|
+ { OV( 665), 79 }, // 2660 - 79°
|
|
45
|
+ { OV( 702), 75 }, // 2808 - 75°
|
|
46
|
+ { OV( 736), 71 }, // 2945 - 71°
|
|
47
|
+ { OV( 770), 67 }, // 3080 - 67°
|
|
48
|
+ { OV( 801), 63 }, // 3204 - 63°
|
|
49
|
+ { OV( 830), 59 }, // 3320 - 59°
|
|
50
|
+ { OV( 857), 55 }, // 3428 - 55°
|
|
51
|
+ { OV( 881), 51 }, // 3524 - 51°
|
|
52
|
+ { OV( 902), 47 }, // 3611 - 47°
|
|
53
|
+ { OV( 922), 42 }, // 3688 - 42°
|
|
54
|
+ { OV( 938), 38 }, // 3754 - 38°
|
|
55
|
+ { OV( 952), 34 }, // 3811 - 34°
|
|
56
|
+ { OV( 964), 29 }, // 3857 - 29°
|
|
57
|
+ { OV( 975), 25 }, // 3900 - 25°
|
|
58
|
+ { OV( 980), 23 }, // 3920 - 23°
|
|
59
|
+ { OV( 991), 17 }, // 3964 - 17°
|
|
60
|
+ { OV(1001), 9 }, // Calculated
|
|
61
|
+ { OV(1004), 5 }, // Calculated
|
|
62
|
+ { OV(1008), 0 }, // Calculated
|
|
63
|
+ { OV(1012), -5 }, // Calculated
|
|
64
|
+ { OV(1016), -10 }, // Calculated
|
|
65
|
+ { OV(1020), -15 } // Calculated
|
|
66
|
+};
|