diff options
author | Emanuele Caruso <emanuele.caruso@gmail.com> | 2011-03-26 16:48:50 +0100 |
---|---|---|
committer | Emanuele Caruso <emanuele.caruso@gmail.com> | 2011-03-26 16:48:50 +0100 |
commit | 6d4dae1115cebc5e0ec986edd5f6f795e24b729c (patch) | |
tree | ec0f1a58f179f625de27b568d4f6a0820209bb24 /Tonokip_Firmware/BedThermistorTable.h | |
parent | cc6260bd71a2d33c04ec5e741b94a673d78c36e5 (diff) |
Added support for a heated bed thermistor that can be different from the hot-end thermistor
Diffstat (limited to 'Tonokip_Firmware/BedThermistorTable.h')
-rw-r--r-- | Tonokip_Firmware/BedThermistorTable.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/Tonokip_Firmware/BedThermistorTable.h b/Tonokip_Firmware/BedThermistorTable.h new file mode 100644 index 0000000..75ba458 --- /dev/null +++ b/Tonokip_Firmware/BedThermistorTable.h @@ -0,0 +1,33 @@ +// Thermistor lookup table for RepRap Temperature Sensor Boards (http://make.rrrf.org/ts) +// Made with createTemperatureLookup.py (http://svn.reprap.org/trunk/reprap/firmware/Arduino/utilities/createTemperatureLookup.py) +// ./createTemperatureLookup.py --r0=10000 --t0=25 --r1=0 --r2=4700 --beta=3977 --max-adc=1023 +// r0: 10000 +// t0: 25 +// r1: 0 +// r2: 4700 +// beta: 3977 +// max adc: 1023 +#define NUMTEMPS 20 +short bedtemptable[NUMTEMPS][2] = { + {1, 430}, + {54, 137}, + {107, 107}, + {160, 91}, + {213, 80}, + {266, 71}, + {319, 64}, + {372, 57}, + {425, 51}, + {478, 46}, + {531, 41}, + {584, 35}, + {637, 30}, + {690, 25}, + {743, 20}, + {796, 14}, + {849, 7}, + {902, 0}, + {955, -11}, + {1008, -35} +}; + |