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

937 Comments

  1. best usa no deposit bonus codes 2021, 10 dollar minimum deposit usa
    online casino 2021 and fast withdrawal online 7sultans mobile casino, Leora, united states, or
    european roulette layout usa

  2. uptown pokies australia review, are there any legal online poker sites in australia and instant payout casino uk, or free bonus casino uk

    Here is my web blog: bridge jumper gambling (Eugenia)

  3. free $100 casino chip 2021 uk, real pokies australia
    and juki slot machine, or usa online casino ratings

    My homepage – thesis about gambling in the philippines (Alethea)

  4. Ken Ken

    roulette odds united statesn, gambling stocks united states and big bucks bingo
    australia, or no deposit bonus sign up how old do you have to be
    to go in morongo casino (Ken) united states

  5. united statesn roulette online fast, no deposit bonus uk online
    casinos and where is gambling legal in australia, or real money australian pokies online

    my site casino 7 games (Latisha)

  6. usa casino no deposit bonus code, latest no deposit casino bonuses usa and does united states have casinos, or how to count cards in blackjack basic strategy (Indiana) many casinos are
    in usa

  7. ladbrokes slots uk, united states casino online and online casino uk free bonus no deposit, or live uk poker tournaments

    Stop by my web blog when will casinos in lake charles open (Wilson)

  8. casino in toronto ontario australia, new zealandn poker online
    free game and rules of roulette uk, or best online casino
    bonus 2000 (Nikole) in united kingdom top reviewed

  9. free online casino games no deposit united states, united
    statesn original slot machine game and do you have to pay tax on casino winnings casinos in ruidoso downs nm (Judy)
    canada, or online roulette canada real money

  10. usa bingo search pound, canada gambling advertising and best online slot new zealand, or free slot games in canada

    my homepage :: casino internet archive (Suzanna)

  11. Ona Ona

    online free casino united states, best online poker app new zealand and legal
    online gambling sites usa, or free casino chips usa

    Take a look at my blog … bingo fundraisers [Ona]

  12. online texas holdem real money australia, where are casinos legal in usa
    and new zealandn online pokies bonus, or the blackjacks homepage australia

    Feel free to visit my web page – blackjack express llc – Joann

  13. bonanza slot volatility, top canadian casinos in axis and all slots online casino united states, or australian poker tournaments

    Also visit my web-site; how to play blackjack not 21
    (Dianne)

Leave a Reply

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