Prusa MINI Firmware overview
thermistor_1.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, 4.7 kOhm pull-up, bed thermistor
25 const short temptable_1[][2] PROGMEM = {
26  { OV( 23), 300 },
27  { OV( 25), 295 },
28  { OV( 27), 290 },
29  { OV( 28), 285 },
30  { OV( 31), 280 },
31  { OV( 33), 275 },
32  { OV( 35), 270 },
33  { OV( 38), 265 },
34  { OV( 41), 260 },
35  { OV( 44), 255 },
36  { OV( 48), 250 },
37  { OV( 52), 245 },
38  { OV( 56), 240 },
39  { OV( 61), 235 },
40  { OV( 66), 230 },
41  { OV( 71), 225 },
42  { OV( 78), 220 },
43  { OV( 84), 215 },
44  { OV( 92), 210 },
45  { OV( 100), 205 },
46  { OV( 109), 200 },
47  { OV( 120), 195 },
48  { OV( 131), 190 },
49  { OV( 143), 185 },
50  { OV( 156), 180 },
51  { OV( 171), 175 },
52  { OV( 187), 170 },
53  { OV( 205), 165 },
54  { OV( 224), 160 },
55  { OV( 245), 155 },
56  { OV( 268), 150 },
57  { OV( 293), 145 },
58  { OV( 320), 140 },
59  { OV( 348), 135 },
60  { OV( 379), 130 },
61  { OV( 411), 125 },
62  { OV( 445), 120 },
63  { OV( 480), 115 },
64  { OV( 516), 110 },
65  { OV( 553), 105 },
66  { OV( 591), 100 },
67  { OV( 628), 95 },
68  { OV( 665), 90 },
69  { OV( 702), 85 },
70  { OV( 737), 80 },
71  { OV( 770), 75 },
72  { OV( 801), 70 },
73  { OV( 830), 65 },
74  { OV( 857), 60 },
75  { OV( 881), 55 },
76  { OV( 903), 50 },
77  { OV( 922), 45 },
78  { OV( 939), 40 },
79  { OV( 954), 35 },
80  { OV( 966), 30 },
81  { OV( 977), 25 },
82  { OV( 985), 20 },
83  { OV( 993), 15 },
84  { OV( 999), 10 },
85  { OV(1004), 5 },
86  { OV(1008), 0 },
87  { OV(1012), -5 },
88  { OV(1016), -10 },
89  { OV(1020), -15 }
90 };
PROGMEM
const short temptable_1[][2] PROGMEM
Definition: thermistor_1.h:25
OV
#define OV(N)
Definition: thermistors.h:27