After seeing a few posts I decided to upgrade the thermistor for a M3 stud type - I ordered two and they arrived from the US in GB this morning. They are a EPCOS 100K Thermistor (B57560G1104F)
Now I've looked up the table on the reprap wiki and it's listed as this:
// EPCOS 100K Thermistor (B57560G1104F)
// Made with createTemperatureLookup.py (http://svn.reprap.org/trunk/reprap/firm ... eLookup.py)
// ./createTemperatureLookup.py --r0=100000 --t0=25 --r1=0 --r2=4700 --beta=4092 --max-adc=1023
// r0: 100000
// t0: 25
// r1: 0
// r2: 4700
// beta: 4092
// max adc: 1023
#define NUMTEMPS 20
short temptable[NUMTEMPS][2] = {
{1, 821},
{54, 252},
{107, 207},
{160, 182},
{213, 165},
{266, 152},
{319, 141},
{372, 131},
{425, 123},
{478, 115},
{531, 107},
{584, 100},
{637, 93},
{690, 86},
{743, 78},
{796, 70},
{849, 60},
{902, 49},
{955, 34},
{1008, 3}
};
what is puzzling me at the moment is exactly how to enter this into the Config.h file correctly..
If I changed this:
#define USER_THERMISTORTABLE0 {}
to this:
#define USER_THERMISTORTABLE0 {\
{1,821},{54,252},{107,207},{160,182},{213,165},{266,152},{319,141},{372,131},{425,123},{478,115},\
{531,107},{584,100},{637,93},{690,86},{743,78},{796,70},{849,60},{902,49},{955,34},{1008,3} }
and then
change this line:
#define NUM_TEMPS_USERTHERMISTOR0 28
to this:
#define NUM_TEMPS_USERTHERMISTOR0 20
use table 5 would this then be correct? Would that be all i need to do?
Thanks in advance!
