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

974 Comments

  1. Люди помогите советом Брат снова сорвался Родственники не знают что делать В больницу тащить страшно Короче, врач приехал и поставил систему — вызов нарколога на дом Москва недорого Через пару часов человек пришёл в себя В общем, жмите чтобы сохранить — помощь нарколога на дому помощь нарколога на дому Звоните прямо сейчас Перешлите тем кто в такой же ситуации

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

  3. Здорова, народ Близкий человек уже несколько дней в запое Дети напуганы Нужна срочная помощь на дому Короче, врачи приехали и поставили систему — снятие интоксикации на дому быстро Приехали через 40 минут В общем, не потеряйте контакты — вывод из запоя на дому недорого вывод из запоя на дому недорого Вывод из запоя на дому — это реальный выход Перешлите тем кто в такой же ситуации

  4. Williamatope Williamatope

    Помощь оказывают врачи с практикой в наркологии, психиатрии и восстановительной терапии.
    Получить дополнительные сведения – vyvod-iz-zapoya-vyzov

  5. Great work! This is the type of information that should be shared around the web. Shame on Google for not positioning this post higher! Come on over and visit my website . Thanks =)

  6. Слушайте кто знает Близкий человек уже несколько дней в запое Дети напуганы Нужна срочная помощь на дому Короче, единственное что вытащило из запоя — капельница от запоя на дому срочно Приехали через 40 минут В общем, жмите чтобы сохранить — капельница от запоя срочно https://czena.kapelnicza-ot-zapoya-sankt-peterburg.ru Капельница от запоя — это реальный выход Перешлите тем кто в такой же ситуации

  7. Люди помогите советом Отец не выходит из штопора Родственники не знают что делать В больницу тащить страшно Короче, только это реально спасло — прокапаться от алкоголя на дому качественно Сняли ломку и стабилизировали состояние В общем, не потеряйте контакты — вывод из запоя на дому круглосуточно вывод из запоя на дому круглосуточно Звоните прямо сейчас Перешлите тем кто в такой же ситуации

  8. best canadian olg casino bonus funds – Adan, sites, casino
    united kingdom chance and free spins on card registration usa, or top online pokies and casinos
    canadian open 2021

Leave a Reply

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