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
 // 100k bed thermistor in JGAurora A5. Calibrated by Sam Pinches 21st Jan 2018 using cheap k-type thermocouple inserted into heater block, using TM-902C meter.
24
const short temptable_15[][2] PROGMEM = {
25
  { OV(  31), 275 },
26
  { OV(  33), 270 },
27
  { OV(  35), 260 },
28
  { OV(  38), 253 },
29
  { OV(  41), 248 },
30
  { OV(  48), 239 },
31
  { OV(  56), 232 },
32
  { OV(  66), 222 },
33
  { OV(  78), 212 },
34
  { OV(  93), 206 },
35
  { OV( 106), 199 },
36
  { OV( 118), 191 },
37
  { OV( 130), 186 },
38
  { OV( 158), 176 },
39
  { OV( 187), 167 },
40
  { OV( 224), 158 },
41
  { OV( 270), 148 },
42
  { OV( 321), 137 },
43
  { OV( 379), 127 },
44
  { OV( 446), 117 },
45
  { OV( 518), 106 },
46
  { OV( 593),  96 },
47
  { OV( 668),  86 },
48
  { OV( 739),  76 },
49
  { OV( 767),  72 },
50
  { OV( 830),  62 },
51
  { OV( 902),  48 },
52
  { OV( 926),  45 },
53
  { OV( 955),  35 },
54
  { OV( 966),  30 },
55
  { OV( 977),  25 },
56
  { OV( 985),  20 },
57
  { OV( 993),  15 },
58
  { OV( 999),  10 },
59
  { OV(1004),   5 },
60
  { OV(1008),   0 },
61
  { OV(1012),  -5 },
62
  { OV(1016), -10 },
63
  { OV(1020), -15 }
64
};