Thermometer Using Arduino

 

Thermometer Using Arduino

Simulation Model Link

In this Blog you will Learn how to Develop a Thermometer using Arduino Microcontroller.

What is Thermometer?

A Device which is used to measure temperature is called Thermometer, There are different types of Thermometer are available in the market, Here we are going to build the Thermometer using Arduino Microcontroller, The Components required to make this project are as follows, Also the simulation model link is mentioned just below the Title, You can Click on that link and Simulate the same model in Autodesk Tinkercad.


Components Used

 1. Microcontroller (Arduino)


2. Sensor (Thermistor)



3. LCD (16*2)




Working 

Our First job is to Read Data from the Environment for that purpose we use Thermistor, Which gives us a variable potential as there is a change in the temperature, Next we have to process the data whatever is read by the sensor & use required formulas to get the temperature in desired scale, Now we suppose to display the data for that we use LCD Display, Interfacing of same is shown below.


Interfacing 


Program 

//Thermister
#include<LiquidCrystal.h>
LiquidCrystal lcd(7,6,5,4,3,2);

int temp;
void setup(){

  lcd.begin(16,2);
  pinMode(A0,INPUT);
 
}

void loop(){

  temp=analogRead(A0);
  lcd.setCursor(0,0);
  lcd.print("Temprature");
  lcd.setCursor(13,0);
  lcd.print(temp/2);
  lcd.print("c");
  delay(1000);
  lcd.clear();
 
}

Comments

Popular Posts