Temperature Monitoring Project for kids

Temperature Monitoring Project for kids

Overview
This project is about observing the temperature in the surroundings
using temperature and humidity sensors and printing them on LCD.
In this temperature measurer, we use temperature & humidity sensors for
measuring the temperature of the surroundings and LCD for printing the output.


Hardware required
1. Arduino Uno R3
2. Resistor
3. Jumper Wires
4. Temperature Sensor
5. Potentiometer
6. Lcd
7. Breadboard

Schematic Diagram

Fig 1. Circuit Diagram

Arduino Code :

#include<LiquidCrystal.h>
LiquidCrystal lcd(12,11,5,4,3,2);
float value;
int tmp = A0;
void setup(){
pinMode(tmp,INPUT);
}

void loop(){
value = analogRead(tmp)*0.004882814;
value = (value - 0.5) * 100.0;
lcd.setCursor(0,1);
lcd.print("Temp:");
lcd.print(value);
delay(1000);
lcd.clear();

}

Precautions

  1. Connections should be done properly.
  2. Arduino is case Sensitive so code accordingly.
  3. Give different and appropriate colors to the wires.
  4. Use resistors for sensors and LCDs.

More Posts

Coding For kids

Coding Courses for Kids Online

Our courses which are tailored for grades 1 to 12, and our hands-on curriculum seamlessly integrates, preparing students for challenges and inspiring the next generation.

Leave a Reply

Coding For kids

Coding Courses for Kids Online

Our courses which are tailored for grades 1 to 12, and our hands-on curriculum seamlessly integrates, preparing students for challenges and inspiring the next generation.

STEM Labs

STEM LAB for Schools

Looking for a cutting-edge makerspace that goes beyond traditional education? Partner with Makers’ Muse to unlock innovation and transformative learning for your students.

Coding Toys

STEM LAB for Schools

Discover a revolutionary coding journey for students with our cutting-edge educational toys. Partner with us to unlock innovative learning experiences that transcend traditional education.

Do you have questions regarding our STEM program?

Send Us A Message