Prusa MINI Firmware overview
thermistor_15.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  // 100k bed thermistor in JGAurora A5. Calibrated by Sam Pinches 21st Jan 2018 using cheap k-type thermocouple inserted into heater block, using TM-902C meter.
25 const short temptable_15[][2] PROGMEM = {
26  { OV( 31), 275 },
27  { OV( 33), 270 },
28  { OV( 35), 260 },
29  { OV( 38), 253 },
30  { OV( 41), 248 },
31  { OV( 48), 239 },
32  { OV( 56), 232 },
33  { OV( 66), 222 },
34  { OV( 78), 212 },
35  { OV( 93), 206 },
36  { OV( 106), 199 },
37  { OV( 118), 191 },
38  { OV( 130), 186 },
39  { OV( 158), 176 },
40  { OV( 187), 167 },
41  { OV( 224), 158 },
42  { OV( 270), 148 },
43  { OV( 321), 137 },
44  { OV( 379), 127 },
45  { OV( 446), 117 },
46  { OV( 518), 106 },
47  { OV( 593), 96 },
48  { OV( 668), 86 },
49  { OV( 739), 76 },
50  { OV( 767), 72 },
51  { OV( 830), 62 },
52  { OV( 902), 48 },
53  { OV( 926), 45 },
54  { OV( 955), 35 },
55  { OV( 966), 30 },
56  { OV( 977), 25 },
57  { OV( 985), 20 },
58  { OV( 993), 15 },
59  { OV( 999), 10 },
60  { OV(1004), 5 },
61  { OV(1008), 0 },
62  { OV(1012), -5 },
63  { OV(1016), -10 },
64  { OV(1020), -15 }
65 };
PROGMEM
const short temptable_15[][2] PROGMEM
Definition: thermistor_15.h:25
OV
#define OV(N)
Definition: thermistors.h:27