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