Subversion Repositories MK-Marlin

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
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 = 3950 K, 4.7 kOhm pull-up, QU-BD silicone bed QWG-104F-3950 thermistor
24
const short temptable_11[][2] PROGMEM = {
25
  { OV(   1), 938 },
26
  { OV(  31), 314 },
27
  { OV(  41), 290 },
28
  { OV(  51), 272 },
29
  { OV(  61), 258 },
30
  { OV(  71), 247 },
31
  { OV(  81), 237 },
32
  { OV(  91), 229 },
33
  { OV( 101), 221 },
34
  { OV( 111), 215 },
35
  { OV( 121), 209 },
36
  { OV( 131), 204 },
37
  { OV( 141), 199 },
38
  { OV( 151), 195 },
39
  { OV( 161), 190 },
40
  { OV( 171), 187 },
41
  { OV( 181), 183 },
42
  { OV( 191), 179 },
43
  { OV( 201), 176 },
44
  { OV( 221), 170 },
45
  { OV( 241), 165 },
46
  { OV( 261), 160 },
47
  { OV( 281), 155 },
48
  { OV( 301), 150 },
49
  { OV( 331), 144 },
50
  { OV( 361), 139 },
51
  { OV( 391), 133 },
52
  { OV( 421), 128 },
53
  { OV( 451), 123 },
54
  { OV( 491), 117 },
55
  { OV( 531), 111 },
56
  { OV( 571), 105 },
57
  { OV( 611), 100 },
58
  { OV( 641),  95 },
59
  { OV( 681),  90 },
60
  { OV( 711),  85 },
61
  { OV( 751),  79 },
62
  { OV( 791),  72 },
63
  { OV( 811),  69 },
64
  { OV( 831),  65 },
65
  { OV( 871),  57 },
66
  { OV( 881),  55 },
67
  { OV( 901),  51 },
68
  { OV( 921),  45 },
69
  { OV( 941),  39 },
70
  { OV( 971),  28 },
71
  { OV( 981),  23 },
72
  { OV( 991),  17 },
73
  { OV(1001),   9 },
74
  { OV(1021), -27 }
75
};