Google "using thermistor with Arduino" for information on how thermistors work and how to connect them to Arduino. Then refer to the data sheet for how to convert the voltage read by the ADC to temperature.
So looking at the chart of the NTC sensor, it has the following range: 62000-430 Ohms.
Looking back at the attached scheme - how to connect a thermistor to Arduino I have the following question - should I use 62k Ohms resistor together with this NTC to get proper readings?
The link shows a 50kohm NTC thermistor (50k@25C).
You would normally connect a thermistor between an analogue pin and ground, and use a fixed value resistor between pin and 5volt.
The optimum value of that pull up resistor depends on the temp range you want to measure.
If you are interrested in room temp, then use a ~50k resistor (47k).
If you want to measure water temp in a car (~85C), then you could use ~5k6 (see datasheet graph).
Since you're also interrested in a lower water temp, you could compromise by using a 10k resistor.
Convenient, because most thermistor codes assume a 10k pull up resistor (can be changed in the code). This Adafuit tutorial explains a bit more.
Change "#define THERMISTORNOMINAL 10000" to "#define THERMISTORNOMINAL 50000" in the final code.
Leo..
reference resistance at 25 Celsios deg which is about 52 kOhm
So, I connected it to arduino board adding 47 kOkm resistor.
I'm reading its resistance using belows function, and having the resistance and the thermistor mapping as per below - resistance->temp I calc the temp.
The problem is, when I try to read temp for water ex. that has 100 Celsius deg I get very big resistance... works fine till the temps is 20-30...
Can any one help what am I missing there ?
With a thermistor, resolution (A/D steps per degreeC) unfortunately drops when the thermistor resistance differs from the pull up resistor value.
So use a ~5k6 resistor (or 5k, or 10k), to you have max resolution in the middle of that temp range,
and a bit less at the extremes.
You ofcourse have to enter that new value in your code.
Leo..