aboutsummaryrefslogtreecommitdiff
path: root/Marlin/src/module/thermistor/thermistor_22.h
blob: 6f4a31050add0cafb3c6b9dadf70a10a6e36098b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/**
 * Marlin 3D Printer Firmware
 * Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
 *
 * Based on Sprinter and grbl.
 * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 *
 */

// 100k hotend thermistor with 4.7k pull up to 3.3v and 220R to analog input as in GTM32 Pro vB
const temp_entry_t temptable_22[] PROGMEM = {
  { OV(   1), 352 },
  { OV(   6), 341 },
  { OV(  11), 330 },
  { OV(  16), 319 },
  { OV(  20), 307 },
  { OV(  26), 296 },
  { OV(  31), 285 },
  { OV(  40), 274 },
  { OV(  51), 263 },
  { OV(  61), 251 },
  { OV(  72), 245 },
  { OV(  77), 240 },
  { OV(  82), 237 },
  { OV(  87), 232 },
  { OV(  91), 229 },
  { OV(  94), 227 },
  { OV(  97), 225 },
  { OV( 100), 223 },
  { OV( 104), 221 },
  { OV( 108), 219 },
  { OV( 115), 214 },
  { OV( 126), 209 },
  { OV( 137), 204 },
  { OV( 147), 200 },
  { OV( 158), 193 },
  { OV( 167), 192 },
  { OV( 177), 189 },
  { OV( 197), 163 },
  { OV( 230), 174 },
  { OV( 267), 165 },
  { OV( 310), 158 },
  { OV( 336), 151 },
  { OV( 379), 143 },
  { OV( 413), 138 },
  { OV( 480), 127 },
  { OV( 580), 110 },
  { OV( 646), 100 },
  { OV( 731),  88 },
  { OV( 768),  84 },
  { OV( 861),  69 },
  { OV( 935),  50 },
  { OV( 975),  38 },
  { OV(1001),  27 },
  { OV(1011),  22 },
  { OV(1015),  13 },
  { OV(1020),   6 },
  { OV(1023),   0 }
};