Prusa MINI Firmware overview
thermistor_7.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-104LAG-J01
25 const short temptable_7[][2] PROGMEM = {
26  { OV( 1), 941 },
27  { OV( 19), 362 },
28  { OV( 37), 299 }, // top rating 300C
29  { OV( 55), 266 },
30  { OV( 73), 245 },
31  { OV( 91), 229 },
32  { OV( 109), 216 },
33  { OV( 127), 206 },
34  { OV( 145), 197 },
35  { OV( 163), 190 },
36  { OV( 181), 183 },
37  { OV( 199), 177 },
38  { OV( 217), 171 },
39  { OV( 235), 166 },
40  { OV( 253), 162 },
41  { OV( 271), 157 },
42  { OV( 289), 153 },
43  { OV( 307), 149 },
44  { OV( 325), 146 },
45  { OV( 343), 142 },
46  { OV( 361), 139 },
47  { OV( 379), 135 },
48  { OV( 397), 132 },
49  { OV( 415), 129 },
50  { OV( 433), 126 },
51  { OV( 451), 123 },
52  { OV( 469), 121 },
53  { OV( 487), 118 },
54  { OV( 505), 115 },
55  { OV( 523), 112 },
56  { OV( 541), 110 },
57  { OV( 559), 107 },
58  { OV( 577), 105 },
59  { OV( 595), 102 },
60  { OV( 613), 99 },
61  { OV( 631), 97 },
62  { OV( 649), 94 },
63  { OV( 667), 92 },
64  { OV( 685), 89 },
65  { OV( 703), 86 },
66  { OV( 721), 84 },
67  { OV( 739), 81 },
68  { OV( 757), 78 },
69  { OV( 775), 75 },
70  { OV( 793), 72 },
71  { OV( 811), 69 },
72  { OV( 829), 66 },
73  { OV( 847), 62 },
74  { OV( 865), 59 },
75  { OV( 883), 55 },
76  { OV( 901), 51 },
77  { OV( 919), 46 },
78  { OV( 937), 41 },
79  { OV( 955), 35 },
80  { OV( 973), 27 },
81  { OV( 991), 17 },
82  { OV(1009), 1 },
83  { OV(1023), 0 } // to allow internal 0 degrees C
84 };
OV
#define OV(N)
Definition: thermistors.h:27
PROGMEM
const short temptable_7[][2] PROGMEM
Definition: thermistor_7.h:25