0% found this document useful (0 votes)
68 views3 pages

Arduino LM35 Temperature Sensor Guide

This document describes how to create a temperature sensor using an Arduino board, LM35 temperature sensor, and some code. It explains the required parts, how to connect the LM35 sensor to the Arduino, and provides the code to read the temperature data from the sensor in Celsius degrees and print it to the serial monitor every second. Connecting the listed parts and uploading this code allows you to build a working temperature sensor that outputs real-time temperature readings.

Uploaded by

Sdisrat
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
68 views3 pages

Arduino LM35 Temperature Sensor Guide

This document describes how to create a temperature sensor using an Arduino board, LM35 temperature sensor, and some code. It explains the required parts, how to connect the LM35 sensor to the Arduino, and provides the code to read the temperature data from the sensor in Celsius degrees and print it to the serial monitor every second. Connecting the listed parts and uploading this code allows you to build a working temperature sensor that outputs real-time temperature readings.

Uploaded by

Sdisrat
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Food Living Outside Play Technology Workshop

ARDUINO TEMPERATURE SENSOR LM35


by TAPAN MOJIDRA on August 18, 2013

Table of Contents

ARDUINO TEMPERATURE SENSOR LM35 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1

Intro: ARDUINO TEMPERATURE SENSOR LM35 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2

Related Instructables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2

Advertisements . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3

[Link]
Intro: ARDUINO TEMPERATURE SENSOR LM35
Now make your own temperature sensor by Arduino and LM35 Sensor
You required following parts
1-ARDUINO BOARD ANY VERSION
2-LM35 TEMPERATURE SENSOR
3-USB CABLE
4-COMPUTER WITH ARDUINO SOFTWERE

MAKE THE CONNECTION AS SHOWN IN IMAGE AND UPLOAD THE FOLLOWING CODE ON ARDUINO BOARD.

float temp;
int tempPin = 0;

void setup()
{
[Link](9600);
}

void loop()
{
temp = analogRead(tempPin);
temp = temp * 0.48828125;
[Link]("TEMPRATURE = ");
[Link](temp);
[Link]("*C");
[Link]();
delay(1000);
}

NOW SEE THE SERIAL MONITOR IN THE ARDUINO SOFTWERE ,


ITS DONE.
;)
:)

Related Instructables

Temperature
Arduino + Monitoring
Temperature + Measure the Sous-vide Remote Home
temperature and Arduino Shield (Photos) by Automation
Humidity by show it on a Waterproof a [Link] Example -
by sourjuice87
devillived LCD display by LM35 Arduino +
knuppel Temperature Ethernet Shield
Sensor by by gtr_stitch
solarmax

[Link]
Advertisements

[Link]

You might also like