Subversion Repositories Tronxy-X3A-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 = 4092 K, 4.7 kOhm pull-up, bed thermistor
24
const short temptable_1[][2] PROGMEM = {
25
  { OV(  23), 300 },
26
  { OV(  25), 295 },
27
  { OV(  27), 290 },
28
  { OV(  28), 285 },
29
  { OV(  31), 280 },
30
  { OV(  33), 275 },
31
  { OV(  35), 270 },
32
  { OV(  38), 265 },
33
  { OV(  41), 260 },
34
  { OV(  44), 255 },
35
  { OV(  48), 250 },
36
  { OV(  52), 245 },
37
  { OV(  56), 240 },
38
  { OV(  61), 235 },
39
  { OV(  66), 230 },
40
  { OV(  71), 225 },
41
  { OV(  78), 220 },
42
  { OV(  84), 215 },
43
  { OV(  92), 210 },
44
  { OV( 100), 205 },
45
  { OV( 109), 200 },
46
  { OV( 120), 195 },
47
  { OV( 131), 190 },
48
  { OV( 143), 185 },
49
  { OV( 156), 180 },
50
  { OV( 171), 175 },
51
  { OV( 187), 170 },
52
  { OV( 205), 165 },
53
  { OV( 224), 160 },
54
  { OV( 245), 155 },
55
  { OV( 268), 150 },
56
  { OV( 293), 145 },
57
  { OV( 320), 140 },
58
  { OV( 348), 135 },
59
  { OV( 379), 130 },
60
  { OV( 411), 125 },
61
  { OV( 445), 120 },
62
  { OV( 480), 115 },
63
  { OV( 516), 110 },
64
  { OV( 553), 105 },
65
  { OV( 591), 100 },
66
  { OV( 628),  95 },
67
  { OV( 665),  90 },
68
  { OV( 702),  85 },
69
  { OV( 737),  80 },
70
  { OV( 770),  75 },
71
  { OV( 801),  70 },
72
  { OV( 830),  65 },
73
  { OV( 857),  60 },
74
  { OV( 881),  55 },
75
  { OV( 903),  50 },
76
  { OV( 922),  45 },
77
  { OV( 939),  40 },
78
  { OV( 954),  35 },
79
  { OV( 966),  30 },
80
  { OV( 977),  25 },
81
  { OV( 985),  20 },
82
  { OV( 993),  15 },
83
  { OV( 999),  10 },
84
  { OV(1004),   5 },
85
  { OV(1008),   0 },
86
  { OV(1012),  -5 },
87
  { OV(1016), -10 },
88
  { OV(1020), -15 }
89
};