summaryrefslogtreecommitdiff
path: root/Sprinter/ThermistorTable_mendelparts.h
diff options
context:
space:
mode:
authorkliment <kliment.yanev@gmail.com>2011-07-05 20:20:15 +0200
committerkliment <kliment.yanev@gmail.com>2011-07-05 20:20:15 +0200
commitd1cfd12190a0810bb6a623a5e674d9339e723b8e (patch)
tree93fb64b47f5247a23aa2377d9debb25f380e4af5 /Sprinter/ThermistorTable_mendelparts.h
parent873e85b3bb5240eaaba6491c38284e2d6d3fba2e (diff)
Cleaned up configuration. Made a hack so that board versions can be set from configuration.h. Combined thermistor tables. Enabled maxtemp and mintemp by default.
Changed case of configuration.h to make it appear first in Arduino IDE
Diffstat (limited to 'Sprinter/ThermistorTable_mendelparts.h')
-rw-r--r--Sprinter/ThermistorTable_mendelparts.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/Sprinter/ThermistorTable_mendelparts.h b/Sprinter/ThermistorTable_mendelparts.h
deleted file mode 100644
index 9e65b85..0000000
--- a/Sprinter/ThermistorTable_mendelparts.h
+++ /dev/null
@@ -1,45 +0,0 @@
-#ifndef THERMISTORTABLE_H_
-#define THERMISTORTABLE_H_
-
-//thermistor table for mendel-parts thermistor
-// Standardized R/T characteristic no. 8404
- // RS thermistor 484-0183; EPCOS NTC
- // Mendel-Parts thermistor G540 / G550
- // Optimized for 100...300C working range.
- // Max range: -20...300C
- // Max reading error on Gen 6 electronics: ~+5%, -3% in 100 - 300C range.
-
-#define NUMTEMPS 28
-const short temptable[NUMTEMPS][2] = {
- {1,864},
- {21,300},
- {25,290},
- {29,280},
- {33,270},
- {39,260},
- {46,250},
- {54,240},
- {64,230},
- {75,220},
- {90,210},
- {107,200},
- {128,190},
- {154,180},
- {184,170},
- {221,160},
- {265,150},
- {316,140},
- {375,130},
- {441,120},
- {513,110},
- {588,100},
- {734,80},
- {856,60},
- {938,40},
- {986,20},
- {1008,0},
- {1018,-20}
- };
-
-
-#endif