2018-01-22 00:12:37 +01:00
/**
* Marlin 3 D Printer Firmware
2020-02-03 15:00:57 +01:00
* Copyright ( c ) 2020 MarlinFirmware [ https : //github.com/MarlinFirmware/Marlin]
2018-01-22 00:12:37 +01:00
*
* Based on Sprinter and grbl .
2019-06-28 06:57:50 +02:00
* Copyright ( c ) 2011 Camiel Gubbels / Erik van der Zalm
2018-01-22 00:12:37 +01:00
*
* 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/>.
*
*/
2019-07-05 05:44:12 +02:00
# pragma once
2018-01-22 00:12:37 +01:00
// 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.
const short temptable_15 [ ] [ 2 ] PROGMEM = {
{ OV ( 31 ) , 275 } ,
{ OV ( 33 ) , 270 } ,
{ OV ( 35 ) , 260 } ,
{ OV ( 38 ) , 253 } ,
{ OV ( 41 ) , 248 } ,
2018-05-28 10:26:15 +02:00
{ OV ( 48 ) , 239 } ,
{ OV ( 56 ) , 232 } ,
{ OV ( 66 ) , 222 } ,
{ OV ( 78 ) , 212 } ,
{ OV ( 93 ) , 206 } ,
2018-01-22 00:12:37 +01:00
{ OV ( 106 ) , 199 } ,
{ OV ( 118 ) , 191 } ,
{ OV ( 130 ) , 186 } ,
{ OV ( 158 ) , 176 } ,
{ OV ( 187 ) , 167 } ,
{ OV ( 224 ) , 158 } ,
{ OV ( 270 ) , 148 } ,
2018-05-28 10:26:15 +02:00
{ OV ( 321 ) , 137 } ,
{ OV ( 379 ) , 127 } ,
{ OV ( 446 ) , 117 } ,
{ OV ( 518 ) , 106 } ,
2018-01-22 00:12:37 +01:00
{ OV ( 593 ) , 96 } ,
{ OV ( 668 ) , 86 } ,
{ OV ( 739 ) , 76 } ,
{ OV ( 767 ) , 72 } ,
{ OV ( 830 ) , 62 } ,
{ OV ( 902 ) , 48 } ,
{ OV ( 926 ) , 45 } ,
{ OV ( 955 ) , 35 } ,
{ OV ( 966 ) , 30 } ,
{ OV ( 977 ) , 25 } ,
{ OV ( 985 ) , 20 } ,
{ OV ( 993 ) , 15 } ,
{ OV ( 999 ) , 10 } ,
{ OV ( 1004 ) , 5 } ,
{ OV ( 1008 ) , 0 } ,
{ OV ( 1012 ) , - 5 } ,
{ OV ( 1016 ) , - 10 } ,
{ OV ( 1020 ) , - 15 }
} ;