Measure Temperature Using Lm35 and Arduino

20K96

Intro: Measure Temperature Using Lm35 and Arduino

The lm35 is an analog linear temperature sensor. This means that the output voltage is proportional to the temperature. The output voltage rises by 10mv for every 1 degree Celsius rise in temperature. The Arduino can read input from 0-5v. The Arduino stores this as a 10bit number(0-1023). The method that i am going to use now can be used to measure temperature from 2 degree Celsius to the maximum temperature that your lm35 can measure. I will make another article on how we can measure temperatures below that soon.

STEP 1: Making the Connections

The lm35 that i used has the ground pin and the Vs pin interchanged compared to the Texas Instruments one, the data sheet for which is commonly available. If you have interchanged the pins while connecting the sensor it will get hot so you'll know if its incorrect.

connect the Vs pin to the 5v pin on the Arduino and ground to one of the 2 ground pins on the power rail. Connect the Vout pin to one of the analog pin, A0 in my case.

Another thing i noticed is that the temperature that you get is not reliable if you connect many jumper cables together to make the wire long.

STEP 2: The Program

Here is the sketch:


int temppin=0;

float temp;

void setup()

{

Serial.begin(9600);

}

void loop()

{

temp=analogRead(temppin); // Reading data from the sensor.This voltage is stored as a 10bit number

temp=(5.0*temp*1000.0)/(1024*10);

/* 5*temp/1024 is to convert the 10 bit number to a voltage reading.

This is multiplied by 1000 to convert it to millivolt.

We then divide it by 10 beacuse each degree rise results in a 10 millivolt increase.

*/

Serial.println(temp);

delay(500);// This is because we dont want a continuous stream of data

}


Upload the sketch to your Arduino

STEP 3: Check the Temperature

Open the serial monitor and check the temperature. The temperature reading will change every 0.5 seconds.

3 Comments

So how can I make a simulation in proteus and Arduino with lm35 and dc Motor f 1. If Temperature is above 25 o C, motor is ON. 2. Otherwise motor is off
Temperature reading fluctuates wildly, from 20 to 35 degrees, even with
short leads, a well-regulated 5V supply, and a .1uF decoupling cap.
When using the LM35, it's a good idea to use the internal voltage reference instead of the 5v.
This will make the maximum value of the ADC converter to 1.1v, thus increasing the resolution of the converted value.

On the setup function, add the following line
analogReference(INTERNAL); // 1.1 ref. [LM35 outputs 1v when 100ÂșC]

Then, on the loop function change from
temp=(5.0*temp*1000.0)/(1024*10);
To
temp=(1.1*temp*1000.0)/(1024*10);

Ideally, you could read the true Aref voltage (with a multi-meter) and use this value instead of 1.1