Prusa MINI Firmware overview
thermistor_70.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 // Stock BQ Hephestos 2 100k thermistor.
25 // Created on 29/12/2017 with an ambient temperature of 20C.
26 // ANENG AN8009 DMM with a K-type probe used for measurements.
27 
28 // R25 = 100 kOhm, beta25 = 4100 K, 4.7 kOhm pull-up, bqh2 stock thermistor
29 const short temptable_70[][2] PROGMEM = {
30  { OV( 18), 270 },
31  { OV( 27), 248 },
32  { OV( 34), 234 },
33  { OV( 45), 220 },
34  { OV( 61), 205 },
35  { OV( 86), 188 },
36  { OV( 123), 172 },
37  { OV( 420), 110 },
38  { OV( 590), 90 },
39  { OV( 845), 56 },
40  { OV( 970), 25 },
41  { OV( 986), 20 },
42  { OV( 994), 15 },
43  { OV(1000), 10 },
44  { OV(1005), 5 },
45  { OV(1009), 0 } // safety
46 };
PROGMEM
const short temptable_70[][2] PROGMEM
Definition: thermistor_70.h:29
OV
#define OV(N)
Definition: thermistors.h:27