Merge pull request #71 from ParCan/master
ParCan Thermistor table added
This commit is contained in:
commit
7bb5724e8d
2 changed files with 76 additions and 0 deletions
|
|
@ -18,6 +18,7 @@
|
||||||
// 2 is 200k thermistor
|
// 2 is 200k thermistor
|
||||||
// 3 is mendel-parts thermistor
|
// 3 is mendel-parts thermistor
|
||||||
// 4 is 10k thermistor
|
// 4 is 10k thermistor
|
||||||
|
// 5 is ParCan supplied 104GT-2 100K
|
||||||
#define THERMISTORHEATER 1
|
#define THERMISTORHEATER 1
|
||||||
#define THERMISTORBED 1
|
#define THERMISTORBED 1
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -157,6 +157,74 @@ short temptable_4[NUMTEMPS_4][2] = {
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if (THERMISTORHEATER == 5) || (THERMISTORBED == 5) //100k ParCan thermistor (104GT-2)
|
||||||
|
|
||||||
|
#define NUMTEMPS_5 61
|
||||||
|
const short temptable_5[NUMTEMPS_5][2] = {
|
||||||
|
{1, 713},
|
||||||
|
{18, 316},
|
||||||
|
{35, 266},
|
||||||
|
{52, 239},
|
||||||
|
{69, 221},
|
||||||
|
{86, 208},
|
||||||
|
{103, 197},
|
||||||
|
{120, 188},
|
||||||
|
{137, 181},
|
||||||
|
{154, 174},
|
||||||
|
{171, 169},
|
||||||
|
{188, 163},
|
||||||
|
{205, 159},
|
||||||
|
{222, 154},
|
||||||
|
{239, 150},
|
||||||
|
{256, 147},
|
||||||
|
{273, 143},
|
||||||
|
{290, 140},
|
||||||
|
{307, 136},
|
||||||
|
{324, 133},
|
||||||
|
{341, 130},
|
||||||
|
{358, 128},
|
||||||
|
{375, 125},
|
||||||
|
{392, 122},
|
||||||
|
{409, 120},
|
||||||
|
{426, 117},
|
||||||
|
{443, 115},
|
||||||
|
{460, 112},
|
||||||
|
{477, 110},
|
||||||
|
{494, 108},
|
||||||
|
{511, 106},
|
||||||
|
{528, 103},
|
||||||
|
{545, 101},
|
||||||
|
{562, 99},
|
||||||
|
{579, 97},
|
||||||
|
{596, 95},
|
||||||
|
{613, 92},
|
||||||
|
{630, 90},
|
||||||
|
{647, 88},
|
||||||
|
{664, 86},
|
||||||
|
{681, 84},
|
||||||
|
{698, 81},
|
||||||
|
{715, 79},
|
||||||
|
{732, 77},
|
||||||
|
{749, 75},
|
||||||
|
{766, 72},
|
||||||
|
{783, 70},
|
||||||
|
{800, 67},
|
||||||
|
{817, 64},
|
||||||
|
{834, 61},
|
||||||
|
{851, 58},
|
||||||
|
{868, 55},
|
||||||
|
{885, 52},
|
||||||
|
{902, 48},
|
||||||
|
{919, 44},
|
||||||
|
{936, 40},
|
||||||
|
{953, 34},
|
||||||
|
{970, 28},
|
||||||
|
{987, 20},
|
||||||
|
{1004, 8},
|
||||||
|
{1021, 0}
|
||||||
|
};
|
||||||
|
#endif
|
||||||
|
|
||||||
#if THERMISTORHEATER == 1
|
#if THERMISTORHEATER == 1
|
||||||
#define NUMTEMPS NUMTEMPS_1
|
#define NUMTEMPS NUMTEMPS_1
|
||||||
#define temptable temptable_1
|
#define temptable temptable_1
|
||||||
|
|
@ -169,6 +237,9 @@ short temptable_4[NUMTEMPS_4][2] = {
|
||||||
#elif THERMISTORHEATER == 4
|
#elif THERMISTORHEATER == 4
|
||||||
#define NUMTEMPS NUMTEMPS_4
|
#define NUMTEMPS NUMTEMPS_4
|
||||||
#define temptable temptable_4
|
#define temptable temptable_4
|
||||||
|
#elif THERMISTORHEATER == 5
|
||||||
|
#define NUMTEMPS NUMTEMPS_5
|
||||||
|
#define temptable temptable_5
|
||||||
#elif defined HEATER_USES_THERMISTOR
|
#elif defined HEATER_USES_THERMISTOR
|
||||||
#error No heater thermistor table specified
|
#error No heater thermistor table specified
|
||||||
#endif
|
#endif
|
||||||
|
|
@ -184,8 +255,12 @@ short temptable_4[NUMTEMPS_4][2] = {
|
||||||
#elif THERMISTORBED == 4
|
#elif THERMISTORBED == 4
|
||||||
#define BNUMTEMPS NUMTEMPS_4
|
#define BNUMTEMPS NUMTEMPS_4
|
||||||
#define bedtemptable temptable_4
|
#define bedtemptable temptable_4
|
||||||
|
#elif THERMISTORBED == 5
|
||||||
|
#define BNUMTEMPS NUMTEMPS_5
|
||||||
|
#define bedtemptable temptable_5
|
||||||
#elif defined BED_USES_THERMISTOR
|
#elif defined BED_USES_THERMISTOR
|
||||||
#error No bed thermistor table specified
|
#error No bed thermistor table specified
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif //THERMISTORTABLES_H_
|
#endif //THERMISTORTABLES_H_
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue