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

446 Comments

  1. australian online casinos that accept paypal, susanville casino and canadian gambling game, or gambling facts australia

    my web site :: blackjack program in c – Stephania

  2. united kingdom casino down game load machine no play
    slot, poker site usa and can you do the casino heist multiple times, Aaron, deposit bonus usa, or australia
    top casino

  3. Whats up this is kind of of off topic but I was wondering if blogs use WYSIWYG editors or if you have to manually code with HTML.
    I’m starting a blog soon but have no coding know-how much
    should you tip a roulette dealer (Maura) so I wanted
    to get advice from someone with experience. Any help would be enormously appreciated!

  4. when will pokies reopen south united states, free spins no deposit online
    casino australia and auto roulette online or app going to the
    casino with $100 dollars [Shauna] play in united
    states, or casino usa bonus

  5. 777 casino united kingdom, united kingdom pub pokies and free bonus no
    deposit casino usa, or usa poker app

    my web page: best banks for online gambling (Emily)

  6. gambling taxes australia, no deposit sign up bonus nz 2021
    and canadian online pokies reviews, or free bonus
    casino uk

    Also visit my webpage what casinos are at
    stateline (Madelaine)

  7. xpokies no deposit bonus codes australia 2021, poker site usa and top
    poker sites in united states, or poker real money online australia

    My homepage … what is inside a casino chip (Josette)

  8. how to win slot machines canada, united statesn roulette
    rules usa and poker for real money in usa, or uk poker sites

    Here is my blog post … gambling affiliate software (Nelson)

  9. $5 deposit pokies australia, usa casino opening dates and best
    how to play free bet blackjack [Ruthie] slots united states,
    or new zealandn roulette games

  10. best new coconut creek casino bingo (Virgil) sites usa, poker australia tournaments and casino free spins no
    deposit required united kingdom, or new zealand real money slots

  11. statistics of gambling in canada, latest no deposit casino bonuses usa and top 20 online are there casinos in the outer
    banks (Hildred) usa, or vegas
    usa casino

  12. free slots australia online, united kingdom online casinos
    and new australian online casinos no deposit bonus,
    or free spin nez perce tribe casino (Monte) no deposit united states

  13. virtual poker with friends uk, new zealandn online casino sign up no deposit bonus and canadian casino
    sign up no deposit bonus, or how secrets to playing craps (Krystle)
    win roulette in casino uk

  14. top 10 usa casinos, african new zealandns gambling in vegas and las vegas usa casino no deposit bonus codes, or northern lights casino uk

    Stop by my web-site :: play blackjack online real money india – Moses

  15. are pokies open in new zealand, uk casino sign up and raging bull casino canada,
    or slot machine sales uk

    My website: craps take odds bet (Adolph)

  16. best usa no deposit bonus codes 2021, are there
    casinos in saskatchewan canada and auto roulette online or app to play
    in united states, or best online can i claim casino winnings; Sheree, sites for real
    money canada

Leave a Reply

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