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 = 4092 K, 8.2 kOhm pull-up, 100k Epcos (?) thermistor
|
|
|
24 |
const short temptable_6[][2] PROGMEM = {
|
|
|
25 |
{ OV( 1), 350 },
|
|
|
26 |
{ OV( 28), 250 }, // top rating 250C
|
|
|
27 |
{ OV( 31), 245 },
|
|
|
28 |
{ OV( 35), 240 },
|
|
|
29 |
{ OV( 39), 235 },
|
|
|
30 |
{ OV( 42), 230 },
|
|
|
31 |
{ OV( 44), 225 },
|
|
|
32 |
{ OV( 49), 220 },
|
|
|
33 |
{ OV( 53), 215 },
|
|
|
34 |
{ OV( 62), 210 },
|
|
|
35 |
{ OV( 71), 205 }, // fitted graphically
|
|
|
36 |
{ OV( 78), 200 }, // fitted graphically
|
|
|
37 |
{ OV( 94), 190 },
|
|
|
38 |
{ OV( 102), 185 },
|
|
|
39 |
{ OV( 116), 170 },
|
|
|
40 |
{ OV( 143), 160 },
|
|
|
41 |
{ OV( 183), 150 },
|
|
|
42 |
{ OV( 223), 140 },
|
|
|
43 |
{ OV( 270), 130 },
|
|
|
44 |
{ OV( 318), 120 },
|
|
|
45 |
{ OV( 383), 110 },
|
|
|
46 |
{ OV( 413), 105 },
|
|
|
47 |
{ OV( 439), 100 },
|
|
|
48 |
{ OV( 484), 95 },
|
|
|
49 |
{ OV( 513), 90 },
|
|
|
50 |
{ OV( 607), 80 },
|
|
|
51 |
{ OV( 664), 70 },
|
|
|
52 |
{ OV( 781), 60 },
|
|
|
53 |
{ OV( 810), 55 },
|
|
|
54 |
{ OV( 849), 50 },
|
|
|
55 |
{ OV( 914), 45 },
|
|
|
56 |
{ OV( 914), 40 },
|
|
|
57 |
{ OV( 935), 35 },
|
|
|
58 |
{ OV( 954), 30 },
|
|
|
59 |
{ OV( 970), 25 },
|
|
|
60 |
{ OV( 978), 22 },
|
|
|
61 |
{ OV(1008), 3 },
|
|
|
62 |
{ OV(1023), 0 } // to allow internal 0 degrees C
|
|
|
63 |
};
|