Hello All and thanks for the help in advance
As mentioned in the book (page 48), every 10 millivolt represents 1 Celsius, which's mean to get the temperature, I write the following formula:
float temperature = voltage * 0.01;
Instead, it's written in the book as following:
float temperature = (voltage - 0.5) * 100;
Could someone please explain why?