Prusa MINI Firmware overview
thermistor_201.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 LMV324 amp on Overlord v1.1 electronics
27 const short temptable_201[][2] PROGMEM = {
28  { OV( 0), 0 },
29  { OV( 8), 1 },
30  { OV( 23), 6 },
31  { OV( 41), 15 },
32  { OV( 51), 20 },
33  { OV( 68), 28 },
34  { OV( 74), 30 },
35  { OV( 88), 35 },
36  { OV( 99), 40 },
37  { OV( 123), 50 },
38  { OV( 148), 60 },
39  { OV( 173), 70 },
40  { OV( 198), 80 },
41  { OV( 221), 90 },
42  { OV( 245), 100 },
43  { OV( 269), 110 },
44  { OV( 294), 120 },
45  { OV( 316), 130 },
46  { OV( 342), 140 },
47  { OV( 364), 150 },
48  { OV( 387), 160 },
49  { OV( 412), 170 },
50  { OV( 433), 180 },
51  { OV( 456), 190 },
52  { OV( 480), 200 },
53  { OV( 500), 210 },
54  { OV( 548), 224 },
55  { OV( 572), 233 },
56  { OV(1155), 490 }
57 };
OV
#define OV(N)
Definition: thermistors.h:27
PROGMEM
const short temptable_201[][2] PROGMEM
Definition: thermistor_201.h:27