Temperature and Humidity Sensor
Temperature and Humidity Sensor
Temperature and
Humidity Sensor
Submitted By
Bhandia Omkar Shriniwas 19UEL006
Gawle Lucky Sunil 19UEL015
Under Guidance of
Prof. S.M.Karmuse
Department of Electronics
Engineering
D.K.T.E Society’s
Textile and Engineering
Institute, Ichalkaranji
(An Autonomous Institute Affiliated to Shivaji
University Kolhapur)
Academic Year
2021-22
D.K.T.E Society’s
Textile and Engineering Institute, Ichalkaranji
Certific at
e This is to certify that,
Bhandia Omkar Shriniwas 19UEL006
Gawle Lucky Sunil 19UEL015
of Third Year B.Tech. Electronics Engineering, has satisfactorily
completed Mini-Project entitled
The team m em ber s would like to express their special thanks with
gratitude to our guide Prof. Y. V. Sawant, P ro f es s o r in Electronics
Engineering Department,for the whole support, innovative ideas and
encouragement that w e the team received during the entire cour s e study.
We the team are als o happy to thank Prof. (Dr.) P. V. Kadole Sir,
Director, DKTE Society’s Textile and Engineering Institute for providing a
path or giving an opportunity to carry-out the undertaken Project.
The team would al so like to thank all the faculty and supporting
staff in the department, for helping u s directly or indirectly a s and when
required.
Last but not the least our team member s would like to thank God,
our parents and our friends for the unconditional support w e the team
received during the entire cour se and Mini-Project work.
Table of Contents
Chapter 1: Introduction
Chapter 3: Results
Chapter 4: Conclusion
• Applications
• Advantages
References
Chapter-1
Introduction
The number of embedded devices that can interact with
environment are already con-
nected to internet, and it is estimated that the number
reaches 50 billion by 2020 (Kouhia,
2016). The growth of such interacting objects achieved
this staggering pace with the
development of microcontroller based easy-to-use
designed system which are replacing
old systems designed with complicated electronic
circuits.
Chapter 2
System Implementation
2.1 Schematic Diagram
Over the years Arduino has been the brain of thousands of projects,
from everyday objects to complex scientific instruments. A worldwide
community of makers - students, hobbyists, artists, programmers, and
professionals - has gathered around this open-source platform, their
contributions have added up to an incredible amount of access i ble
knowledge that can be of great help to novi ces and experts alike.
2)DHT 11 Sensor
Operating Voltage: 3.5V to 5.5V
Operating current: 0.3mA (measuring) 60uA (standby)
Output: Serial data
Temperature Range: 0°C to 50°C
Humidity Range: 20% to 90%
Resolution: Temperature and Humidity both are 16-bit
Accuracy: ±1°C and ±1%
3) OLED DISPLAY
void setup() {
lcd.begin (16,2);
// the codes written here is to run the
programme once
lcd.print("Booting Up");
Serial.begin(9600);
delay(300);//Let system settle
Serial.println("Humidity and temperature\
n\n");
delay(700);// delay helps the system cool
down by have pause
}
void loop() {
// the codes written here is to run programme repeatedly until the
power off or
//stopped.
DHT.read11(dht_dpin);
lcd.setCursor(0,1);
val = analogRead(tempPin);
float mv = ( val/1024.0)*5000;
float cel = mv/10;
float farh = (cel*9)/5 + 32;
lcd.print("TEMP = ");
lcd.setCursor(0,1);
15
lcd.print(cel);
lcd.print(farh);
// lcd.print(farh,"*F")
delay(500);// delay sets the frequency
lcd.print("Humidity = ");
lcd.print(DHT.humidity);
lcd.print("% ");
delay(500);
lcd.print("temperature = ");
lcd.print(DHT.temperature);
lcd.println("C ");
Chapter
3
Results
After wiring and writing the code, the program was run and the built
device was success-
To study the performance characteristics of the used Arduino-based
humidity and tem-
perature sensor, the test was done in three different conditions. The
first test was done
inside an environmental laboratory room and the other two tests were
done inside a box
and outside laboratory, respectively. To create a different temperature
and humidity, the
sensor was kept inside an insulated wooden box and for the 3rd test the
measurement
was taken outside of the building.
Chapter 4
Conclusion
22
Arduin- based monitoring devices are the new possibilities for developing
smart devices
freely with small budget and simple work. The accelerating race of
advanced technology
outdates the technology used in Arduino Uno in no time; advanced
software working
similarly are available. The Arduino is programmed to use a USB cable to
connect to
computer while there are many other boards available with different
features.
Chapter 5
Applications with Advantages
Advantages:-
a) This sensor includes a resistive element and a sense of wet NTC
temperature measuring devices. It has the excellent quality, fast
response, anti-interference ability, and high-cost performance
advantages. Each DHT11 sensor features an extremely accurate
calibration of the humidity calibration chambe
.
Applications:
HVAC (Heating, Ventilation and Air Conditioning)
Systems Weather Stations Medical Equipment for
measuring humidity Home Automation Systems
Automotive and other weather control applications
References :
w w w.sensors.com
w w w.projects.com