summaryrefslogtreecommitdiff
path: root/Sprinter/ThermistorTable_200k.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_200k.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_200k.h')
-rw-r--r--Sprinter/ThermistorTable_200k.h42
1 files changed, 0 insertions, 42 deletions
diff --git a/Sprinter/ThermistorTable_200k.h b/Sprinter/ThermistorTable_200k.h
deleted file mode 100644
index 4142eb2..0000000
--- a/Sprinter/ThermistorTable_200k.h
+++ /dev/null
@@ -1,42 +0,0 @@
-#ifndef THERMISTORTABLE_H_
-#define THERMISTORTABLE_H_
-
-// Thermistor lookup table for RepRap Temperature Sensor Boards (http://make.rrrf.org/ts)
-// See this page:
-// http://dev.www.reprap.org/bin/view/Main/Thermistor
-// for details of what goes in this table.
-// Made with createTemperatureLookup.py (http://svn.reprap.org/trunk/reprap/firmware/Arduino/utilities/createTemperatureLookup.py)
-// ./createTemperatureLookup.py --r0=100000 --t0=25 --r1=0 --r2=4700 --beta=4066 --max-adc=1023
-// r0: 100000
-// t0: 25
-// r1: 0
-// r2: 4700
-// beta: 4066
-// max adc: 1023
-
-#define NUMTEMPS 20
-const short temptable[NUMTEMPS][2] = {
- {1, 848},
- {54, 275},
- {107, 228},
- {160, 202},
- {213, 185},
- {266, 171},
- {319, 160},
- {372, 150},
- {425, 141},
- {478, 133},
- {531, 125},
- {584, 118},
- {637, 110},
- {690, 103},
- {743, 95},
- {796, 86},
- {849, 77},
- {902, 65},
- {955, 49},
- {1008, 17}
-};
-
-
-#endif