Prusa MINI Firmware overview
thermistor_6.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, 8.2 kOhm pull-up, 100k Epcos (?) thermistor
25 const short temptable_6[][2] PROGMEM = {
26  { OV( 1), 350 },
27  { OV( 28), 250 }, // top rating 250C
28  { OV( 31), 245 },
29  { OV( 35), 240 },
30  { OV( 39), 235 },
31  { OV( 42), 230 },
32  { OV( 44), 225 },
33  { OV( 49), 220 },
34  { OV( 53), 215 },
35  { OV( 62), 210 },
36  { OV( 71), 205 }, // fitted graphically
37  { OV( 78), 200 }, // fitted graphically
38  { OV( 94), 190 },
39  { OV( 102), 185 },
40  { OV( 116), 170 },
41  { OV( 143), 160 },
42  { OV( 183), 150 },
43  { OV( 223), 140 },
44  { OV( 270), 130 },
45  { OV( 318), 120 },
46  { OV( 383), 110 },
47  { OV( 413), 105 },
48  { OV( 439), 100 },
49  { OV( 484), 95 },
50  { OV( 513), 90 },
51  { OV( 607), 80 },
52  { OV( 664), 70 },
53  { OV( 781), 60 },
54  { OV( 810), 55 },
55  { OV( 849), 50 },
56  { OV( 914), 45 },
57  { OV( 914), 40 },
58  { OV( 935), 35 },
59  { OV( 954), 30 },
60  { OV( 970), 25 },
61  { OV( 978), 22 },
62  { OV(1008), 3 },
63  { OV(1023), 0 } // to allow internal 0 degrees C
64 };
PROGMEM
const short temptable_6[][2] PROGMEM
Definition: thermistor_6.h:25
OV
#define OV(N)
Definition: thermistors.h:27