Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Temperature table for DyzeDesign thermistor #2915

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Marlin/Configuration.h
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ Here are some standard links for getting your machine calibrated:
// 13 is 100k Hisens 3950 1% up to 300°C for hotend "Simple ONE " & "Hotend "All In ONE"
// 20 is the PT100 circuit found in the Ultimainboard V2.x
// 60 is 100k Maker's Tool Works Kapton Bed Thermistor beta=3950
// 66 is DyzeDesign 500°C Thermistor
//
// 1k ohm pullup tables - This is not normal, you would have to have changed out your 4.7k for 1k
// (but gives greater accuracy and more stable PID)
Expand Down Expand Up @@ -743,7 +744,7 @@ const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the l

// Panucatt VIKI LCD with status LEDs, integrated click & L/R/U/P buttons, separate encoder inputs
//#define LCD_I2C_VIKI

// SSD1306 OLED generic display support
// ==> REMEMBER TO INSTALL U8glib to your ARDUINO library folder: http://code.google.com/p/u8glib/wiki/u8glib
//#define U8GLIB_SSD1306
Expand Down
51 changes: 51 additions & 0 deletions Marlin/thermistortables.h
Original file line number Diff line number Diff line change
Expand Up @@ -957,6 +957,57 @@ const short temptable_60[][2] PROGMEM = {
{1008 * OVERSAMPLENR, 0},
};
#endif

#if (THERMISTORHEATER_0 == 66) || (THERMISTORHEATER_1 == 66) || (THERMISTORHEATER_2 == 66) || (THERMISTORHEATER_3 == 66) || (THERMISTORBED == 66) // DyzeDesign 500°C Thermistor
const short temptable_66[][2] PROGMEM = {
{ 13.81*OVERSAMPLENR , 822.8},
{ 15.17*OVERSAMPLENR , 503.36},
{ 16.71*OVERSAMPLENR , 493.68},
{ 18.45*OVERSAMPLENR , 484},
{ 20.39*OVERSAMPLENR , 474.32},
{ 22.58*OVERSAMPLENR , 464.64},
{ 25.08*OVERSAMPLENR , 454.96},
{ 27.86*OVERSAMPLENR , 445.28},
{ 31.01*OVERSAMPLENR , 435.6},
{ 34.59*OVERSAMPLENR , 425.92},
{ 38.64*OVERSAMPLENR , 416.24},
{ 43.25*OVERSAMPLENR , 406.56},
{ 48.52*OVERSAMPLENR , 396.88},
{ 54.52*OVERSAMPLENR , 387.2},
{ 61.38*OVERSAMPLENR , 377.52},
{ 69.24*OVERSAMPLENR , 367.84},
{ 78.27*OVERSAMPLENR , 358.16},
{ 88.63*OVERSAMPLENR , 348.48},
{ 100.53*OVERSAMPLENR , 338.8},
{ 114.23*OVERSAMPLENR , 329.12},
{ 130*OVERSAMPLENR , 319.44},
{ 148.13*OVERSAMPLENR , 309.76},
{ 168.96*OVERSAMPLENR , 300.08},
{ 192.87*OVERSAMPLENR , 290.4},
{ 220.71*OVERSAMPLENR , 280.72},
{ 252.47*OVERSAMPLENR , 271.04},
{ 288.49*OVERSAMPLENR , 261.36},
{ 328.99*OVERSAMPLENR , 251.68},
{ 373.7*OVERSAMPLENR , 242},
{ 422.66*OVERSAMPLENR , 232.32},
{ 475.19*OVERSAMPLENR , 222.64},
{ 530.47*OVERSAMPLENR , 212.96},
{ 587.37*OVERSAMPLENR , 203.28},
{ 644.41*OVERSAMPLENR , 193.6},
{ 700.09*OVERSAMPLENR , 183.92},
{ 752.88*OVERSAMPLENR , 174.24},
{ 845.19*OVERSAMPLENR , 154.88},
{ 914.98*OVERSAMPLENR , 135.52},
{ 962.34*OVERSAMPLENR , 116.16},
{ 991.45*OVERSAMPLENR , 96.8},
{ 1007.8*OVERSAMPLENR , 77.44},
{ 1016.24*OVERSAMPLENR , 58.08},
{ 1020.25*OVERSAMPLENR , 38.72},
{ 1023*OVERSAMPLENR-1 , 25},
{ 1023*OVERSAMPLENR , 20},
};
#endif

#if (THERMISTORBED == 12)
//100k 0603 SMD Vishay NTCS0603E3104FXT (4.7k pullup) (calibrated for Makibox hot bed)
const short temptable_12[][2] PROGMEM = {
Expand Down