Arduino Based Digital THERMOMETER🌡 - Electronics Project #2

in #steemstem6 years ago (edited)

IMG_20180302_062216.jpg

Good day everyone ❗

In this post, you will learn the procedures on how to make a digital thermometer using Arduino Uno. You may think that it is somehow a human temperature upon hearing the word thermometer, but actually it is more applicable in measuring room temperatures and mostly in industrial applications.
This is rather one of the simple Arduino project that is good to have in your house. But, before we proceed to the main part of this tutorial, let's define and know first what thermometer really is and what help it can give to us humans and our environment.


⚡ Short Summary (Picture of the final output)

IMG_20180301_075635_HDR.jpg


✍ Objectives :

✔ To understand what is thermometer.

✔ To know the materials/components and softwares used in this project.

✔ To describe or define each of the materials/components used.

✔ To know the circuit connections in making this project using Fritzing and Arduino.

✔ The Arduino codes used.

✔ To show to you the final output(with videos) for us to understand well how this project works.


⚡ What is thermometer?

6696456-four-different-types-of-thermometers-with-several-temperatures.jpg

Source

thermometer is an instrument for measuring temperature, often a sealed glass tube that contains a column of liquid, as mercury, that expands and contracts, or rises and falls, with temperature changes, the temperature being read where the top of the column coincides with a calibrated scale marked on the tube or its frame.

We cannot measure the temperature by touching only. Our sense of touch only helps us determine whether the object is hot or cold, but it can't really measure its temperature. We need a certain device that can measure temperature accurately, and this device is called thermometer. 🌡

Thermometers are very important in our daily lives. Why? Simply because through this device, we will be able to know our body temperature if it's normal or not. The normal body temperature of a healthy person is 37ºC and it's important for us to maintain that.

There are many important applications that thermometer has to offer. These includes the measuring of weather temperature, instant temperature reading of foods, liquids and semi-solid samples, indoor and outdoor temperature measurement, maintaining precise temperatures in storage rooms, laboratories, incubators, etc.

All health care professionals use thermometers. All health care facilities use thermometers. Most homes also have thermometers. It is basically one of the important device to have.


⚡ Materials/Components used

IMG_20180228_094854.jpg

♦ Arduino Uno
♦ LCD (16x2)
♦ Temperature Sensor (DS18B20)
♦ Breadboard (for circuit testing)
♦ Potentiometer (100kΩ)
♦ Resistor (1pc. - 4.7kΩ)
♦ Jumper Wires (male to male)

⚡ Softwares used

Fritzing
♦ Arduino - download here


⚡ Description of each materials/components

Arduino ➜ is an open source computer hardware and software company, project, and user community that designs and manufactures single-board microcontrollers and microcontroller kits for building digital devices and interactive objects that can sense and control objects in the physical world.
LCD ➜ Stands for "Liquid Crystal Display." LCD is a flat panel display technology commonly used in TVs and computer monitors. It is also used in screens for mobile devices, such as laptops, tablets, and smartphones.
Temperature Sensor ➜ measure the amount of heat energy or even coldness that is generated by an object or system, allowing us to “sense” or detect any physical change to that temperature producing either an analogue or digital output.
Breadboard ➜ is a solderless device for temporary prototype with electronics and test circuit designs.
Potentiometer ➜ is a three-terminal resistor with a sliding or rotating contact that forms an adjustable voltage divider. If only two terminals are used, one end and the wiper, it acts as a variable resistor or rheostat.
Resistors ➜ is a passive two-terminal electrical component that reduces current flow, adjust signal levels, to divide voltages, bias active elements, and terminate transmission lines, among other uses.
Jumper Wires ➜ are cables with connector pin at both end. They make components easier to connect.

♦ Pin Diagram of the 16x2 LCD


Source

♦ Pin Description:

Pin no.NameFunction
1GroundGround (0V)
2VccSupply voltage (5V)
3VEEContrast adjustment using a variable resistor
4Register selectSelects data register when high, and command register when low
5Read/writeRead from the register when high, and write to the register when low
6EnableWhen a high to low pulse is given, it sends data to the data pins
7-14D0-D78-bit data pins
15Backlight Vcc (5V)Led (Anode)
16Backlight Ground (0V)Led (Cathode)

⚡ Circuit Connections

IMG_20180301_201758.png

This is the circuit connection of this project using Fritzing

♦ Explanation

First, we will connect the 16X2 LCD to the Arduino Uno as follows :
  • Connect the GND, RS, and Backlight (-) pins of the 16x2 LCD to the GND of the Arduino.
  • Connect the Vcc and Backlight (+) pin of 16x2 LCD to the 5V output pin of the Arduino.
  • Connect the RS and Enable pin of 16x2 LCD to Pin 12 and Pin 11 of the Arduino
  • Connect the D4, D5, D6, D7 pins of 16x2 LCD to Pins 5, 4, 3, 2 of the Arduino.
  • Connect the Contrast pin of the 16x2 LCD to the middle pin of the potentiometer.
  • Connect other two pins of the potentiometer to the Vcc and GND.

DS18B20-pinout.png

Source

Here is the guide on how to connect the sensor to the Arduino:
  • Connect left pin of DS18B20 to GND of Arduino.
  • Connect right pin of DS18B20 to 5V output of Arduino.
  • Connect middle pin of DS18B20 to Pin 7 of Arduino.
  • Connect a 4.7KΩ resistor from middle pin of DS18B20 to 5V as pull up.

⚡ Arduino Codes

#include <OneWire.h>

#include <LiquidCrystal.h>
#include <DallasTemperature.h>

#define ONE_WIRE_BUS 7

OneWire oneWire(ONE_WIRE_BUS);

DallasTemperature sensors(&oneWire);

float tempC = 0;
float tempF = 0;

LiquidCrystal lcd(12,11,5,4,3,2);

void setup() {
  sensors.begin();
  lcd.begin(16,2);
  lcd.clear();
  pinMode(3, OUTPUT);
  analogWrite(3, 0);
  Serial.begin(9600);
  
}

void loop() {
  sensors.requestTemperatures();
  tempC = sensors.getTempCByIndex(0);
  tempF = sensors.toFahrenheit(tempC);
  delay(1000);
  
  Serial.println(tempC);
  lcd.setCursor(0,0);
  lcd.print("C: ");
  lcd.print(tempC);
  lcd.print(" degrees");
  lcd.setCursor(0,1);
  lcd.print("F: ");
  lcd.print(tempF);
  lcd.print(" degrees");
}

Before uploading this code to your Arduino, you need to manually add first the following libraries to Arduino IDE as it is not included by default.

Here are the steps for that :

⚡ Final Output (with videos)

PicsArt_03-01-09.14.02.jpg
This was the result when I compared the temperature of two rooms. As you can see, each room hast its designated temperature. The air-conditioned room has around 25.62°C and the other room without air-conditioning has around 29.75°C.

♦ 1st Video: Adjusting the contrast of the LCD

In this video, I tried to adjust the contrast of the LCD using a potentiometer. This will help you to clearly read the temperature reading.

♦ 2nd Video: Performance testing

In this video, I tested the performance of this project by simply putting an Ice near the temperature sensor. And the result was indeed convincing. 😊


⚡ Purpose of this post

The main purpose of this post is of course to share my little learnings about some Arduino projects and help my fellow steemians specially those who really loves electronics to know the steps and procedures in making this kind of project. Knowing this would surely improve your knowledge about arduino. Why? because this is one of the starting point in learning about Arduino deeply.

Hope you all appreciate my effort and would gain much learnings from this. 😊


Sincerely Yours,

@ruelx

PicsArt_01-31-09.52.22.png

Sort:  

Most of the people especially those who are not in the field of electronics would think of human temperature measurement upon hearing of a thermometer. Arduino temperature measurement mostly applies to industrial, automation and robotics applications. Great job my friend!

Thank you so much @elkusenero.

hey rulex , love the way you have organized the article flow.
Sensitivity will always be a issue with these sensors , but your code is simple to follow , also why dont you tr use raspberry pi for future projects , it will be fun.

Thanks a lot @theversatileguy. For appreciating my work. I'm planning also to move on with raspberry pi but I'll try first some Arduino projects for preparation.

Yea you can make progress slowly , also consider node mcu or esp8266 , you can do amazing stuff with that (iot).

Noted @theversatileguy. I'll keep that in mind. Thanks

Oh God yes! I want to make a digitizing card for the acquisition and multivariate analysis of electrophysiological data using this kind of technology but based on this post I think it`ll take YEARS for me to be able to master all the necessary information... Good works guys!

If there is a will there is a way. You can do it man , go ahead.

Thanks @khrisaeroth. Yeah I agree with @theversatileguy. You can do it!!

You got a 2.21% upvote from @allaz courtesy of @ruelx!

As a follower of @followforupvotes this post has been randomly selected and upvoted! Enjoy your upvote and have a great day!

Just what I've been looking for. Thanks for a great article.

Congratulations! This post has been upvoted by SteemMakers. We are a community based project that aims to support makers and DIYers on the blockchain in every way possible. Find out more about us on our website: www.steemmakers.com.

If you like our work, please consider upvoting this comment to support the growth of our community. Thank you.

Coin Marketplace

STEEM 0.28
TRX 0.13
JST 0.032
BTC 66101.68
ETH 3023.14
USDT 1.00
SBD 3.71