Prusa MINI Firmware overview
thermistor_71.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 = 3974 K, 4.7 kOhm pull-up, Honeywell 135-104LAF-J01
25 // R0 = 100000 Ohm
26 // T0 = 25 °C
27 // Beta = 3974
28 // R1 = 0 Ohm
29 // R2 = 4700 Ohm
30 const short temptable_71[][2] PROGMEM = {
31  { OV( 35), 300 },
32  { OV( 51), 269 },
33  { OV( 59), 258 },
34  { OV( 64), 252 },
35  { OV( 71), 244 },
36  { OV( 81), 235 },
37  { OV( 87), 230 },
38  { OV( 92), 226 },
39  { OV( 102), 219 },
40  { OV( 110), 214 },
41  { OV( 115), 211 },
42  { OV( 126), 205 },
43  { OV( 128), 204 },
44  { OV( 130), 203 },
45  { OV( 132), 202 },
46  { OV( 134), 201 },
47  { OV( 136), 200 },
48  { OV( 147), 195 },
49  { OV( 154), 192 },
50  { OV( 159), 190 },
51  { OV( 164), 188 },
52  { OV( 172), 185 },
53  { OV( 175), 184 },
54  { OV( 178), 183 },
55  { OV( 181), 182 },
56  { OV( 184), 181 },
57  { OV( 187), 180 },
58  { OV( 190), 179 },
59  { OV( 193), 178 },
60  { OV( 196), 177 },
61  { OV( 199), 176 },
62  { OV( 202), 175 },
63  { OV( 205), 174 },
64  { OV( 208), 173 },
65  { OV( 215), 171 },
66  { OV( 237), 165 },
67  { OV( 256), 160 },
68  { OV( 300), 150 },
69  { OV( 351), 140 },
70  { OV( 470), 120 },
71  { OV( 504), 115 },
72  { OV( 538), 110 },
73  { OV( 745), 80 },
74  { OV( 770), 76 },
75  { OV( 806), 70 },
76  { OV( 829), 66 },
77  { OV( 860), 60 },
78  { OV( 879), 56 },
79  { OV( 888), 54 },
80  { OV( 905), 50 },
81  { OV( 924), 45 },
82  { OV( 940), 40 },
83  { OV( 955), 35 },
84  { OV( 972), 28 },
85  { OV( 974), 27 },
86  { OV( 976), 26 },
87  { OV( 978), 25 },
88  { OV( 980), 24 },
89  { OV( 987), 20 },
90  { OV( 995), 15 },
91  { OV(1001), 10 },
92  { OV(1006), 5 },
93  { OV(1010), 0 }
94 };
OV
#define OV(N)
Definition: thermistors.h:27
PROGMEM
const short temptable_71[][2] PROGMEM
Definition: thermistor_71.h:30