Prusa MINI Firmware overview
thermistor_60.h
Go to the documentation of this file.
1 /**
2  * Marlin 3D Printer Firmware
3  * Copyright (c) 2019 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 #pragma once
23 
24 // R25 = 100 kOhm, beta25 = 3950 K, 4.7 kOhm pull-up,
25 // Maker's Tool Works Kapton Bed Thermistor
26 // ./createTemperatureLookup.py --r0=100000 --t0=25 --r1=0 --r2=4700 --beta=3950
27 // r0: 100000
28 // t0: 25
29 // r1: 0 (parallel with rTherm)
30 // r2: 4700 (series with rTherm)
31 // beta: 3950
32 // min adc: 1 at 0.0048828125 V
33 // max adc: 1023 at 4.9951171875 V
34 const short temptable_60[][2] PROGMEM = {
35  { OV( 51), 272 },
36  { OV( 61), 258 },
37  { OV( 71), 247 },
38  { OV( 81), 237 },
39  { OV( 91), 229 },
40  { OV( 101), 221 },
41  { OV( 131), 204 },
42  { OV( 161), 190 },
43  { OV( 191), 179 },
44  { OV( 231), 167 },
45  { OV( 271), 157 },
46  { OV( 311), 148 },
47  { OV( 351), 140 },
48  { OV( 381), 135 },
49  { OV( 411), 130 },
50  { OV( 441), 125 },
51  { OV( 451), 123 },
52  { OV( 461), 122 },
53  { OV( 471), 120 },
54  { OV( 481), 119 },
55  { OV( 491), 117 },
56  { OV( 501), 116 },
57  { OV( 511), 114 },
58  { OV( 521), 113 },
59  { OV( 531), 111 },
60  { OV( 541), 110 },
61  { OV( 551), 108 },
62  { OV( 561), 107 },
63  { OV( 571), 105 },
64  { OV( 581), 104 },
65  { OV( 591), 102 },
66  { OV( 601), 101 },
67  { OV( 611), 100 },
68  { OV( 621), 98 },
69  { OV( 631), 97 },
70  { OV( 641), 95 },
71  { OV( 651), 94 },
72  { OV( 661), 92 },
73  { OV( 671), 91 },
74  { OV( 681), 90 },
75  { OV( 691), 88 },
76  { OV( 701), 87 },
77  { OV( 711), 85 },
78  { OV( 721), 84 },
79  { OV( 731), 82 },
80  { OV( 741), 81 },
81  { OV( 751), 79 },
82  { OV( 761), 77 },
83  { OV( 771), 76 },
84  { OV( 781), 74 },
85  { OV( 791), 72 },
86  { OV( 801), 71 },
87  { OV( 811), 69 },
88  { OV( 821), 67 },
89  { OV( 831), 65 },
90  { OV( 841), 63 },
91  { OV( 851), 62 },
92  { OV( 861), 60 },
93  { OV( 871), 57 },
94  { OV( 881), 55 },
95  { OV( 891), 53 },
96  { OV( 901), 51 },
97  { OV( 911), 48 },
98  { OV( 921), 45 },
99  { OV( 931), 42 },
100  { OV( 941), 39 },
101  { OV( 951), 36 },
102  { OV( 961), 32 },
103  { OV( 981), 23 },
104  { OV( 991), 17 },
105  { OV(1001), 9 },
106  { OV(1008), 0 }
107 };
OV
#define OV(N)
Definition: thermistors.h:27
PROGMEM
const short temptable_60[][2] PROGMEM
Definition: thermistor_60.h:34