Prusa MINI Firmware overview
thermistor_67.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 = 500 KOhm, beta25 = 3800 K, 4.7 kOhm pull-up, SliceEngineering 450 °C Thermistor
25 const short temptable_67[][2] PROGMEM = {
26  { OV( 22 ), 500 },
27  { OV( 23 ), 490 },
28  { OV( 25 ), 480 },
29  { OV( 27 ), 470 },
30  { OV( 29 ), 460 },
31  { OV( 32 ), 450 },
32  { OV( 35 ), 440 },
33  { OV( 38 ), 430 },
34  { OV( 41 ), 420 },
35  { OV( 45 ), 410 },
36  { OV( 50 ), 400 },
37  { OV( 55 ), 390 },
38  { OV( 60 ), 380 },
39  { OV( 67 ), 370 },
40  { OV( 74 ), 360 },
41  { OV( 82 ), 350 },
42  { OV( 91 ), 340 },
43  { OV( 102 ), 330 },
44  { OV( 114 ), 320 },
45  { OV( 127 ), 310 },
46  { OV( 143 ), 300 },
47  { OV( 161 ), 290 },
48  { OV( 181 ), 280 },
49  { OV( 204 ), 270 },
50  { OV( 229 ), 260 },
51  { OV( 259 ), 250 },
52  { OV( 290 ), 240 },
53  { OV( 325 ), 230 },
54  { OV( 364 ), 220 },
55  { OV( 407 ), 210 },
56  { OV( 453 ), 200 },
57  { OV( 501 ), 190 },
58  { OV( 551 ), 180 },
59  { OV( 603 ), 170 },
60  { OV( 655 ), 160 },
61  { OV( 706 ), 150 },
62  { OV( 755 ), 140 },
63  { OV( 801 ), 130 },
64  { OV( 842 ), 120 },
65  { OV( 879 ), 110 },
66  { OV( 910 ), 100 },
67  { OV( 936 ), 90 },
68  { OV( 948 ), 85 },
69  { OV( 958 ), 80 },
70  { OV( 975 ), 70 },
71  { OV( 988 ), 60 },
72  { OV( 998 ), 50 },
73  { OV(1006 ), 40 },
74  { OV(1011 ), 30 },
75  { OV(1013 ), 25 },
76  { OV(1015 ), 20 },
77  { OV(1018 ), 10 },
78  { OV(1020 ), 0 },
79  { OV(1021 ), -10 },
80  { OV(1022 ), -20 }
81 };
OV
#define OV(N)
Definition: thermistors.h:27
PROGMEM
const short temptable_67[][2] PROGMEM
Definition: thermistor_67.h:25