[con soluzione] Come sostituire termistore hotbed con NTC 4.7k "non glass"? March 09, 2014 09:07AM |
Registered: 10 years ago Posts: 756 |
#if (THERMISTORHEATER_0 == 60) || (THERMISTORHEATER_1 == 60) || (THERMISTORHEATER_2 == 60) || (THERMISTORBED == 60) // Thermistor lookup table for RepRap Temperature Sensor Boards (http://make.rrrf.org/ts) // Made with createTemperatureLookup.py (https://github.com/reprap/firmware/blob/master/createTemperatureLookup.py) //createTemperatureLookup.py --r0=4980 --t0=25 --beta=3005 --max-adc=1023 --r1=0 --r2=4700 // r0: 4980 // t0: 25 // r1: 0 // r2: 4700 // beta: 3005 // max adc: 1023 const short temptable_60[][2] PROGMEM = { {1*OVERSAMPLENR, 699}, {54*OVERSAMPLENR, 148}, {107*OVERSAMPLENR, 108}, {160*OVERSAMPLENR, 87}, {213*OVERSAMPLENR, 72}, {266*OVERSAMPLENR, 61}, {319*OVERSAMPLENR, 52}, {372*OVERSAMPLENR, 44}, {425*OVERSAMPLENR, 37}, {478*OVERSAMPLENR, 30}, {531*OVERSAMPLENR, 24}, {584*OVERSAMPLENR, 18}, {637*OVERSAMPLENR, 12}, {690*OVERSAMPLENR, 6}, {743*OVERSAMPLENR, 0}, {796*OVERSAMPLENR, -6}, {849*OVERSAMPLENR, -14}, {902*OVERSAMPLENR, -23}, {955*OVERSAMPLENR, -35}, {1008*OVERSAMPLENR, -60} }; #endif
#define TEMP_SENSOR_0 1 #define TEMP_SENSOR_1 0 #define TEMP_SENSOR_2 0 #define TEMP_SENSOR_BED 60
Re: [con soluzione] Come sostituire termistore hotbed con NTC 4.7k "non glass"? March 09, 2014 11:08AM |
Registered: 10 years ago Posts: 1,714 |
Re: [con soluzione] Come sostituire termistore hotbed con NTC 4.7k "non glass"? March 09, 2014 06:50PM |
Registered: 10 years ago Posts: 756 |
Re: [con soluzione] Come sostituire termistore hotbed con NTC 4.7k "non glass"? March 10, 2014 02:45AM |
Registered: 10 years ago Posts: 77 |
Re: [con soluzione] Come sostituire termistore hotbed con NTC 4.7k "non glass"? March 10, 2014 03:04AM |
Registered: 10 years ago Posts: 1,714 |
Re: [con soluzione] Come sostituire termistore hotbed con NTC 4.7k "non glass"? March 15, 2014 07:10PM |
Registered: 10 years ago Posts: 756 |
Re: [con soluzione] Come sostituire termistore hotbed con NTC 4.7k "non glass"? March 16, 2014 05:28AM |
Registered: 10 years ago Posts: 1,714 |
Re: [con soluzione] Come sostituire termistore hotbed con NTC 4.7k "non glass"? March 20, 2014 07:22PM |
Registered: 10 years ago Posts: 756 |
Re: [con soluzione] Come sostituire termistore hotbed con NTC 4.7k "non glass"? March 31, 2014 04:29PM |
Registered: 10 years ago Posts: 32 |
Re: [con soluzione] Come sostituire termistore hotbed con NTC 4.7k "non glass"? March 31, 2014 07:20PM |
Registered: 10 years ago Posts: 756 |