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