Browse Source

Fix thermistor table

pull/1/head
Scott Lahteine 5 years ago
parent
commit
858b2fa21a
  1. 2
      Marlin/src/lcd/thermistornames.h
  2. 72
      Marlin/src/module/thermistor/thermistor_18.h

2
Marlin/src/lcd/thermistornames.h

@ -74,7 +74,7 @@
#define THERMISTOR_NAME "E3104FXT (alt)" #define THERMISTOR_NAME "E3104FXT (alt)"
#elif THERMISTOR_ID == 13 #elif THERMISTOR_ID == 13
#define THERMISTOR_NAME "Hisens 3950" #define THERMISTOR_NAME "Hisens 3950"
#elif THERMISTOR_ID == 18 #elif THERMISTOR_ID == 18
#define THERMISTOR_NAME "ATC Semitec 204GT-2" #define THERMISTOR_NAME "ATC Semitec 204GT-2"
#elif THERMISTOR_ID == 20 #elif THERMISTOR_ID == 20
#define THERMISTOR_NAME "PT100 UltiMB" #define THERMISTOR_NAME "PT100 UltiMB"

72
Marlin/src/module/thermistor/thermistor_18.h

@ -1,6 +1,6 @@
/** /**
* Marlin 3D Printer Firmware * Marlin 3D Printer Firmware
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin] * Copyright (C) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
* *
* Based on Sprinter and grbl. * Based on Sprinter and grbl.
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm * Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
@ -19,40 +19,40 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
* *
*/ */
// 18 is ATC Semitec 204GT-2 (4.7k pullup) Dagoma.Fr - MKS_Base_DKU001327 - version (measured/tested/approved) // ATC Semitec 204GT-2 (4.7k pullup) Dagoma.Fr - MKS_Base_DKU001327 - version (measured/tested/approved)
const short temptable_18[][2] PROGMEM = { const short temptable_18[][2] PROGMEM = {
{1*OVERSAMPLENR,713}, { OV( 1), 713 },
{17*OVERSAMPLENR,284}, { OV( 17), 284 },
{20*OVERSAMPLENR,275}, { OV( 20), 275 },
{23*OVERSAMPLENR,267}, { OV( 23), 267 },
{27*OVERSAMPLENR,257}, { OV( 27), 257 },
{31*OVERSAMPLENR,250}, { OV( 31), 250 },
{37*OVERSAMPLENR,240}, { OV( 37), 240 },
{43*OVERSAMPLENR,232}, { OV( 43), 232 },
{51*OVERSAMPLENR,222}, { OV( 51), 222 },
{61*OVERSAMPLENR,213}, { OV( 61), 213 },
{73*OVERSAMPLENR,204}, { OV( 73), 204 },
{87*OVERSAMPLENR,195}, { OV( 87), 195 },
{106*OVERSAMPLENR,185}, { OV( 106), 185 },
{128*OVERSAMPLENR,175}, { OV( 128), 175 },
{155*OVERSAMPLENR,166}, { OV( 155), 166 },
{189*OVERSAMPLENR,156}, { OV( 189), 156 },
{230*OVERSAMPLENR,146}, { OV( 230), 146 },
{278*OVERSAMPLENR,137}, { OV( 278), 137 },
{336*OVERSAMPLENR,127}, { OV( 336), 127 },
{402*OVERSAMPLENR,117}, { OV( 402), 117 },
{476*OVERSAMPLENR,107}, { OV( 476), 107 },
{554*OVERSAMPLENR,97}, { OV( 554), 97 },
{635*OVERSAMPLENR,87}, { OV( 635), 87 },
{713*OVERSAMPLENR,78}, { OV( 713), 78 },
{784*OVERSAMPLENR,68}, { OV( 784), 68 },
{846*OVERSAMPLENR,58}, { OV( 846), 58 },
{897*OVERSAMPLENR,49}, { OV( 897), 49 },
{937*OVERSAMPLENR,39}, { OV( 937), 39 },
{966*OVERSAMPLENR,30}, { OV( 966), 30 },
{986*OVERSAMPLENR,20}, { OV( 986), 20 },
{1000*OVERSAMPLENR,10}, { OV(1000), 10 },
{1010*OVERSAMPLENR,0}, { OV(1010), 0 },
{1024*OVERSAMPLENR,-273} // for safety { OV(1024),-273 } // for safety
}; };

Loading…
Cancel
Save