Prusa MINI Firmware overview
thermistor_20.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 #define REVERSE_TEMP_SENSOR_RANGE
25 
26 // Pt100 with INA826 amp on Ultimaker v2.0 electronics
27 const short temptable_20[][2] PROGMEM = {
28  { OV( 0), 0 },
29  { OV(227), 1 },
30  { OV(236), 10 },
31  { OV(245), 20 },
32  { OV(253), 30 },
33  { OV(262), 40 },
34  { OV(270), 50 },
35  { OV(279), 60 },
36  { OV(287), 70 },
37  { OV(295), 80 },
38  { OV(304), 90 },
39  { OV(312), 100 },
40  { OV(320), 110 },
41  { OV(329), 120 },
42  { OV(337), 130 },
43  { OV(345), 140 },
44  { OV(353), 150 },
45  { OV(361), 160 },
46  { OV(369), 170 },
47  { OV(377), 180 },
48  { OV(385), 190 },
49  { OV(393), 200 },
50  { OV(401), 210 },
51  { OV(409), 220 },
52  { OV(417), 230 },
53  { OV(424), 240 },
54  { OV(432), 250 },
55  { OV(440), 260 },
56  { OV(447), 270 },
57  { OV(455), 280 },
58  { OV(463), 290 },
59  { OV(470), 300 },
60  { OV(478), 310 },
61  { OV(485), 320 },
62  { OV(493), 330 },
63  { OV(500), 340 },
64  { OV(507), 350 },
65  { OV(515), 360 },
66  { OV(522), 370 },
67  { OV(529), 380 },
68  { OV(537), 390 },
69  { OV(544), 400 },
70  { OV(614), 500 },
71  { OV(681), 600 },
72  { OV(744), 700 },
73  { OV(805), 800 },
74  { OV(862), 900 },
75  { OV(917), 1000 },
76  { OV(968), 1100 }
77 };
PROGMEM
const short temptable_20[][2] PROGMEM
Definition: thermistor_20.h:27
OV
#define OV(N)
Definition: thermistors.h:27