Prusa MINI Firmware overview
thermistor_11.h
Go to the documentation of this file.
1 /**
2  * Marlin 3D Printer Firmware
3  * Copyright (c) 2019 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 // R25 = 100 kOhm, beta25 = 3950 K, 4.7 kOhm pull-up, QU-BD silicone bed QWG-104F-3950 thermistor
25 const short temptable_11[][2] PROGMEM = {
26  { OV( 1), 938 },
27  { OV( 31), 314 },
28  { OV( 41), 290 },
29  { OV( 51), 272 },
30  { OV( 61), 258 },
31  { OV( 71), 247 },
32  { OV( 81), 237 },
33  { OV( 91), 229 },
34  { OV( 101), 221 },
35  { OV( 111), 215 },
36  { OV( 121), 209 },
37  { OV( 131), 204 },
38  { OV( 141), 199 },
39  { OV( 151), 195 },
40  { OV( 161), 190 },
41  { OV( 171), 187 },
42  { OV( 181), 183 },
43  { OV( 191), 179 },
44  { OV( 201), 176 },
45  { OV( 221), 170 },
46  { OV( 241), 165 },
47  { OV( 261), 160 },
48  { OV( 281), 155 },
49  { OV( 301), 150 },
50  { OV( 331), 144 },
51  { OV( 361), 139 },
52  { OV( 391), 133 },
53  { OV( 421), 128 },
54  { OV( 451), 123 },
55  { OV( 491), 117 },
56  { OV( 531), 111 },
57  { OV( 571), 105 },
58  { OV( 611), 100 },
59  { OV( 641), 95 },
60  { OV( 681), 90 },
61  { OV( 711), 85 },
62  { OV( 751), 79 },
63  { OV( 791), 72 },
64  { OV( 811), 69 },
65  { OV( 831), 65 },
66  { OV( 871), 57 },
67  { OV( 881), 55 },
68  { OV( 901), 51 },
69  { OV( 921), 45 },
70  { OV( 941), 39 },
71  { OV( 971), 28 },
72  { OV( 981), 23 },
73  { OV( 991), 17 },
74  { OV(1001), 9 },
75  { OV(1021), -27 }
76 };
PROGMEM
const short temptable_11[][2] PROGMEM
Definition: thermistor_11.h:25
OV
#define OV(N)
Definition: thermistors.h:27