Skip to content

Temperature Sensor with Arduino and LM35 (Arduino + LM35)

Hello,

I’m starting to publish some experiments that I do with Arduino UNO/Nano, sensors and other stuffs. Today I created a thermometer with LM35 sensor.

The LM35 sensor is a temperature sensor, it will variate 10mV/Celsius. It pins can be seen on image (pay attention, it is a bottom look)

LM35 Pins

So to connect it to Arduino, you must connect VCC to Arduino 5V, GND to Arduino GND, and the middle pin you must connect to an Analog Pin, in my case I used A0.

This projects doesn’t need any resistor or capacitor between the Arduino and the Sensor, so just connect it. The Arduino ADC has a precision of 10 bits, so in this case 5V / 2^10 = 5V / 1024, so 0.0049 is our factor. To get the temperature in Celsius, we get the value and calculate like this:

Temperature = (pin * 0.0049)*100

But why multiply by 100? PIN * 0.0049 will give the volts on port, if we multiply it by 1000 we will have millivolts on port, the sensor varies 10mV/C so we need to divide it by 10 to get the temperature. On mathematics multiply by 1000 and divide by 10 is the same as multiplying by 100. Understand? [Add on 12/12]

And to have it on Fahrenheit, we need to make a conversion

TemperatureF = (Temperature * 1.8) + 32.

The arduino code that I used is:

[code lang=”c”]
int analogPin = 0;
int readValue = 0;
float temperature = 0;
float temperatureF = 0;

void setup() {
Serial.begin(9600);
}

void loop() {
readValue = analogRead(analogPin);
//Serial.println(readValue);
temperature = (readValue * 0.0049);
temperature = temperature * 100;
temperatureF = (temperature * 1.8) + 32;
Serial.print(“Temperature: “);
Serial.print(temperature);
Serial.print(“C “);
Serial.print(temperatureF);
Serial.println(“F”);
delay(1000);
}
[/code]

Hope you like it,
Matheus

References:
LM35 Datasheet
Arduino analog Read

Published inArduino

1,226 Comments

  1. Eliasbep Eliasbep

    Помощь оказывают врачи с практикой в наркологии, психиатрии и восстановительной терапии.
    Ознакомиться с деталями – stoimost-kapelnicy-ot-zapoya

  2. Слушайте кто сталкивался Муж просто потерял себя Дети напуганы Таблетки не помогают Короче, единственное что вытащило из запоя — прокапаться на дому от алкоголя цена выгодная Сняли ломку и стабилизировали состояние В общем, телефон и цены тут — прокапать от алкоголя казань прокапать от алкоголя казань Звоните прямо сейчас Перешлите тем кто в такой же ситуации

  3. Волгоград, всем привет Близкий человек уже несколько дней в запое Жена в истерике Таблетки не помогают Короче, врачи приехали и поставили систему — вывод из запоя на дому цена доступная Приехали через 40 минут В общем, не потеряйте контакты — нарколог вывод из запоя https://czena.vyvod-iz-zapoya-na-domu-volgograd.ru Звоните прямо сейчас Перешлите тем кто в такой же ситуации

  4. I’ve observed that in the world today, video games include the latest trend with children of all ages. Many times it may be unattainable to drag your children away from the games. If you want the very best of both worlds, there are numerous educational video games for kids. Thanks for your post.

  5. how do poker machines work in australia, good gambling
    sites uk and free online pokies best way to win at craps in vegas (Angelo)
    real money united kingdom, or united kingdom no deposit casino

  6. new zealandn style roulette wheel, best usa casino websites and
    free united statesn poker money, or best online poker in united states

    Have a look at my homepage :: do gambling winnings count as income [Roxie]

  7. casino in phuket, united states online casino slots and new poker machines canada,
    or vegas usa casino

    Stop by my webpage :: are laughlin casinos open now (Alisa)

  8. new uk casino no deposit free spins, black chip poker united kingdom and real
    money gambling online united states, or 2021
    no deposit bonus codes uk

    Feel free to surf to my page :: artsy fartsy mama
    easter bingo (Danilo)

  9. new no deposit bonus win real money (Mammie) deposit casino canada, united statesn online pokies paysafe
    and what is the most trusted online casino in united states, or blackjack cosh uk

Leave a Reply

Your email address will not be published. Required fields are marked *