[go: up one dir, main page]

0% found this document useful (0 votes)
5 views4 pages

Ex No:5D Temperature Sensor Date

The document outlines a project to detect temperature using a temperature sensor and Arduino. It includes the aim, required tools, an algorithm, and a sample program for implementation. The program successfully reads and displays the temperature in Celsius on the serial monitor.

Uploaded by

puhazh03
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)
5 views4 pages

Ex No:5D Temperature Sensor Date

The document outlines a project to detect temperature using a temperature sensor and Arduino. It includes the aim, required tools, an algorithm, and a sample program for implementation. The program successfully reads and displays the temperature in Celsius on the serial monitor.

Uploaded by

puhazh03
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
You are on page 1/ 4

EX NO:5D TEMPERATURE SENSOR

DATE:

Aim:
To write a program to detect temperature using temperature sensor and

Arduino.

Tools Required:
Tinkercad(Simulation Tool).

Algorithm:
1. Start.

2. Initialize the digital pin.

3. Read the analog value to the sensor.

4. Read the temperature.

5. Display the temperature using serial monitor.

6. Stop.

Program:
int val;

int temppin = A0; // TMP36 output connected to A0

void setup() {

Serial.begin(9600);

void loop() {

val = analogRead(temppin);

float mv = (val / 1024.0) * 5000; // convert to millivolts


float cel = (mv - 500) / 10; // TMP36 formula

Serial.print("Temperature = ");

Serial.print(cel);

Serial.println(" *C");

delay(1000);

Output:
Schematic view:
Result:
Thus the program to detect temperature using temperature sensor and Arduino was
developed successfully.

You might also like