0% found this document useful (0 votes)
11 views2 pages

IOT5

Uploaded by

mkvcinemas83
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)
11 views2 pages

IOT5

Uploaded by

mkvcinemas83
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/ 2

2.

Coding:-
#include<Adafruit_LiquidCrystal.h>
#define sensorPin A0
Adafruit_LiquidCrystal lcd_1(0);

void setup() {
Serial.begin(9600);
lcd_1.begin(16,2);
lcd_1.print("SCREEN ON");
}

void loop() { lcd_1.clear(); int reading =


analogRead(sensorPin); float voltage =
reading * (5.0 / 1024.0); float
temperatureC = (voltage - 0.5) * 100;
lcd_1.setCursor(0,0);
lcd_1.print(temperatureC);
lcd_1.print("\xB0"); lcd_1.print("C");
delay(1000);
}

5. Learning outcomes (What I have learnt):

1. About and uses of Arduino UNO, Breadboard, TMP36 Tempature Sensor, LCD.

2. Designing of circuit using Arduino UNO, Breadboard, Jumping Wires, TMP36 Tempature Sensor, LCD.

3. Implementation of program to find the temrature as above given in experiment using single circuit design.

4. Implementation of codes for designed circuit.

Evaluation Grid (To be created as per the SOP and Assessment guidelines by the faculty):
Sr. No. Parameters Marks Obtained Maximum Marks
1. Worksheet Completion 10 marks
2. Post Lab Quiz Result 5 marks
3. Student Engagement 5 marks
(Simulation/
Demonstrate/Performance and
Pre-Lab Questions))
Total 20 marks

You might also like