Prusa MINI Firmware overview
thermistor_51.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 = 4092 K, 1 kOhm pull-up,
25 // 100k EPCOS (WITH 1kohm RESISTOR FOR PULLUP, R9 ON SANGUINOLOLU! NOT FOR 4.7kohm PULLUP! THIS IS NOT NORMAL!)
26 // Verified by linagee.
27 // Calculated using 1kohm pullup, voltage divider math, and manufacturer provided temp/resistance
28 // Advantage: Twice the resolution and better linearity from 150C to 200C
29 const short temptable_51[][2] PROGMEM = {
30  { OV( 1), 350 },
31  { OV( 190), 250 }, // top rating 250C
32  { OV( 203), 245 },
33  { OV( 217), 240 },
34  { OV( 232), 235 },
35  { OV( 248), 230 },
36  { OV( 265), 225 },
37  { OV( 283), 220 },
38  { OV( 302), 215 },
39  { OV( 322), 210 },
40  { OV( 344), 205 },
41  { OV( 366), 200 },
42  { OV( 390), 195 },
43  { OV( 415), 190 },
44  { OV( 440), 185 },
45  { OV( 467), 180 },
46  { OV( 494), 175 },
47  { OV( 522), 170 },
48  { OV( 551), 165 },
49  { OV( 580), 160 },
50  { OV( 609), 155 },
51  { OV( 638), 150 },
52  { OV( 666), 145 },
53  { OV( 695), 140 },
54  { OV( 722), 135 },
55  { OV( 749), 130 },
56  { OV( 775), 125 },
57  { OV( 800), 120 },
58  { OV( 823), 115 },
59  { OV( 845), 110 },
60  { OV( 865), 105 },
61  { OV( 884), 100 },
62  { OV( 901), 95 },
63  { OV( 917), 90 },
64  { OV( 932), 85 },
65  { OV( 944), 80 },
66  { OV( 956), 75 },
67  { OV( 966), 70 },
68  { OV( 975), 65 },
69  { OV( 982), 60 },
70  { OV( 989), 55 },
71  { OV( 995), 50 },
72  { OV(1000), 45 },
73  { OV(1004), 40 },
74  { OV(1007), 35 },
75  { OV(1010), 30 },
76  { OV(1013), 25 },
77  { OV(1015), 20 },
78  { OV(1017), 15 },
79  { OV(1018), 10 },
80  { OV(1019), 5 },
81  { OV(1020), 0 },
82  { OV(1021), -5 }
83 };
PROGMEM
const short temptable_51[][2] PROGMEM
Definition: thermistor_51.h:29
OV
#define OV(N)
Definition: thermistors.h:27