Prusa MINI Firmware overview
thermistor_12.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 = 100 kOhm, beta25 = 4700 K, 4.7 kOhm pull-up, (personal calibration for Makibox hot bed)
25 const short temptable_12[][2] PROGMEM = {
26  { OV( 35), 180 }, // top rating 180C
27  { OV( 211), 140 },
28  { OV( 233), 135 },
29  { OV( 261), 130 },
30  { OV( 290), 125 },
31  { OV( 328), 120 },
32  { OV( 362), 115 },
33  { OV( 406), 110 },
34  { OV( 446), 105 },
35  { OV( 496), 100 },
36  { OV( 539), 95 },
37  { OV( 585), 90 },
38  { OV( 629), 85 },
39  { OV( 675), 80 },
40  { OV( 718), 75 },
41  { OV( 758), 70 },
42  { OV( 793), 65 },
43  { OV( 822), 60 },
44  { OV( 841), 55 },
45  { OV( 875), 50 },
46  { OV( 899), 45 },
47  { OV( 926), 40 },
48  { OV( 946), 35 },
49  { OV( 962), 30 },
50  { OV( 977), 25 },
51  { OV( 987), 20 },
52  { OV( 995), 15 },
53  { OV(1001), 10 },
54  { OV(1010), 0 },
55  { OV(1023), -40 }
56 };
OV
#define OV(N)
Definition: thermistors.h:27
PROGMEM
const short temptable_12[][2] PROGMEM
Definition: thermistor_12.h:25