diff options
author | kliment <kliment.yanev@gmail.com> | 2011-03-28 18:15:38 +0200 |
---|---|---|
committer | kliment <kliment.yanev@gmail.com> | 2011-03-28 18:15:38 +0200 |
commit | a3bd2c88b715e4b8c221c4e0debc7fdaa60b2f15 (patch) | |
tree | b40966169301ff82c3bc85a7e08b34226762fa40 /Tonokip_Firmware/ThermistorTable.h | |
parent | 6d4dae1115cebc5e0ec986edd5f6f795e24b729c (diff) |
Added temp tables to configuration. Made dual temp tables optional. Re-enabled min-z endstop in default config.
Diffstat (limited to 'Tonokip_Firmware/ThermistorTable.h')
-rw-r--r-- | Tonokip_Firmware/ThermistorTable.h | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/Tonokip_Firmware/ThermistorTable.h b/Tonokip_Firmware/ThermistorTable.h deleted file mode 100644 index ef68b5f..0000000 --- a/Tonokip_Firmware/ThermistorTable.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 -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 |