|
@@ -0,0 +1,60 @@
|
|
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 <http://www.gnu.org/licenses/>.
|
|
20
|
+ *
|
|
21
|
+ */
|
|
22
|
+#pragma once
|
|
23
|
+
|
|
24
|
+// Unknown thermistor for the Zonestar P802M hot bed. Adjusted By Nerseth
|
|
25
|
+// These were the shipped settings from Zonestar in original firmware: P802M_8_Repetier_V1.6_Zonestar.zip
|
|
26
|
+const short temptable_502[][2] PROGMEM = {
|
|
27
|
+ { OV( 56.0 / 4), 300 },
|
|
28
|
+ { OV( 187.0 / 4), 250 },
|
|
29
|
+ { OV( 615.0 / 4), 190 },
|
|
30
|
+ { OV( 690.0 / 4), 185 },
|
|
31
|
+ { OV( 750.0 / 4), 180 },
|
|
32
|
+ { OV( 830.0 / 4), 175 },
|
|
33
|
+ { OV( 920.0 / 4), 170 },
|
|
34
|
+ { OV(1010.0 / 4), 165 },
|
|
35
|
+ { OV(1118.0 / 4), 160 },
|
|
36
|
+ { OV(1215.0 / 4), 155 },
|
|
37
|
+ { OV(1330.0 / 4), 145 },
|
|
38
|
+ { OV(1460.0 / 4), 140 },
|
|
39
|
+ { OV(1594.0 / 4), 135 },
|
|
40
|
+ { OV(1752.0 / 4), 130 },
|
|
41
|
+ { OV(1900.0 / 4), 125 },
|
|
42
|
+ { OV(2040.0 / 4), 120 },
|
|
43
|
+ { OV(2200.0 / 4), 115 },
|
|
44
|
+ { OV(2350.0 / 4), 110 },
|
|
45
|
+ { OV(2516.0 / 4), 105 },
|
|
46
|
+ { OV(2671.0 / 4), 98 },
|
|
47
|
+ { OV(2831.0 / 4), 92 },
|
|
48
|
+ { OV(2975.0 / 4), 85 },
|
|
49
|
+ { OV(3115.0 / 4), 76 },
|
|
50
|
+ { OV(3251.0 / 4), 72 },
|
|
51
|
+ { OV(3480.0 / 4), 62 },
|
|
52
|
+ { OV(3580.0 / 4), 52 },
|
|
53
|
+ { OV(3660.0 / 4), 46 },
|
|
54
|
+ { OV(3740.0 / 4), 40 },
|
|
55
|
+ { OV(3869.0 / 4), 30 },
|
|
56
|
+ { OV(3912.0 / 4), 25 },
|
|
57
|
+ { OV(3948.0 / 4), 20 },
|
|
58
|
+ { OV(4077.0 / 4), -20 },
|
|
59
|
+ { OV(4094.0 / 4), -55 }
|
|
60
|
+};
|