72 lines
1.9 KiB
C
72 lines
1.9 KiB
C
/**
|
|
* Marlin 3D Printer Firmware
|
|
* Copyright (C) 2019 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 <http://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 short temptable_22[][2] 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 }
|
|
};
|