15_6_6
15_6_6
Abstract
Humidity and temperature monitors have wide industrial applications in many areas
such as automobile industry, food processing and evaluation of plastic
encapsulations in IC packaging. However, most of these monitors had limited
functionality. Hence, this paper was proposed new features that can detect, notify,
record and control the humidity and temperature instantaneously in order to have
stable, controllable atmospheric conditions. This research was used of temperature
humidity sensor DHT-11 to detect level of humidity and temperature changes inside
the room. The data and information from DHT-11 sensor will be analysed
graphically on Blynk platform using NodeMCU. Humidifier will be attached at this
monitor to stabilize back the atmospheric conditions when a specific humidity level
must be maintained to prevent static electricity build up, preserve material
properties, and ensure a comfortable and healthy environment for workers or
residents in industries. In this paper, the value of temperature and humidity changes
can be seen through graph and gauge in Blynk software application. The relative
humidity level will be decrease as the temperature increase. Humidifier triggered
when the reading of temperature and humidity is less than 20% and more than 80%.
Through the mobile application, it can review and read the previous readings and
histories from the temperature and humidity sensor.
Keywords: Blynk application, Humidifier, Humidity and temperature, Monitoring
and controlling, NodeMCU.
3588
Monitoring Temperature, Humidity and Controlling System in Industrial . . . . 3589
1. Introduction
Wireless communication had significant impact on daily life especially in aspect of
industry. The benefits of wireless communication technology are apparently with
low cost, convenience, ease of installation and high portability. One of the
important applications is to monitor the temperature and humidity of surroundings
without restricting the movement of user [1].
The proposed design focuses on the development of wireless temperature and
humidity monitoring prototype system with the initial emphasis on measuring the
temperature and humidity of surroundings. In many industries, parts of the
production and fabrication room will take place in adjustable air-conditioned clean
rooms. In food industry, the storage monitoring is to preserving the raw food in
certain period for sustainable the food safety and good well of quality [2]. Legal
requirements mean that specially prepared, air-conditioned rooms are essential for
processes such as semiconductor manufacturing, components fabricating and
electronics assembly to constantly regulate air humidity.
For comparable, consistent and functional results, those working in fabrication
room, production line and clean rooms require stable, controllable atmospheric
conditions. The temperature and humidity is particulars sense to influence the
viscosity and properties of materials, as well performed of chemical reactions.
Humidity is a primary initiator and booster of devastating effects on electronics and
a constant threat to production efficiency and product qualities. The necessity of
this system is to minimize manpower on controlling air temperature and humidity
of surroundings in industries as the effect of decrease the devastating effects on
electronic components. The system will send an alarm on Blynk platform through
NodeMCU and activate humidifier automatically when temperature and humidity
of certain atmosphere is out of the safety range even the user is out of that certain
atmosphere area [3]. Humidity and temperature of the room could be control and
designed microcontroller by using a DHT-11 sensor, Arduino and microcontroller
board [4-6]. However, DHT-22 sensor is accuracy and adequate for temperatures
between -40℃ to 80℃ with an accuracy of approximately 2℃ [7-9].
Undeniably, IoT based temperature and humidity monitoring effectively
decrease man power on controlling temperature and humidity and lend help in time
wasting of user [10]. In indirect way, it decreases cost of industries in fabricating
new electronic components as it guarantees a stable and controllable atmospheric
condition which slow down the devastating effects of electronic components.
Humidity and temperature have been a problem for many engineers in
industries especially to grasp because of temperature. Some electronic components
should be tested and kept under certain temperature to make sure the testing result
will be accurate and ensure its lifespan. In reality life, the coldness and the heat can
be felt by humans but the ideal temperature for the certain electronic components
cannot be determined as it was made with different materials. The second problem
is because of humidity. The moisture of the air may speed up the decasting effect
of the pins of electronic components. Therefore, it will affect the functionality of
the electronic components and brings losses in terms of money and manpower [11].
The moisture present in the air along with temperature has a long term and
decasting effect on man, machine and material. Every industry of the mechanised
world is affected by humidity and temperature both in terms of material and money.
Although the portable digital temperature and humidity meter is already existed,
there is some limitation for the handheld device which is distance. The data through
the device can only be obtained whenever humans are there. It means that every
time the temperature and the humidity of a certain environment are needed, it
requires the presence of humans to handle [12]. Hence, it is unable to encounter
any problem happened to the electronic components and gadget and take any action
immediately to prevent further damage. Besides, the data obtained through the
meter cannot be reviewed back graphically.
As conclusion, this research able to implement the IoT technology in
monitoring and controlling the humidity and temperature for industrial fixed room
storage. Any person may access the system and monitor with an apps which has
been created. Thus, it enables the users to notice about the level of humidity and
temperature from anywhere anytime they want. Hence, the data can also be
recorded in a database where they are collected in every hour.
2. Methodology
2.1. Project development flow
Figure 1 shows the research development flow of the proposed temperature, humidity
monitoring and controlling system. The idea is to implement a complete temperature,
humidity monitoring and controlling system. The IoT technology was proposed based
on a problem statement to improve the lifespan of plastic encapsulations in IC
packaging. The required hardware components were purchased after the
identification of the hardware based on the functional requirements of the system.
Then, the temperature, humidity monitoring and controlling system was implemented
using the purchased hardware, and the required software will be developed at the
same time. Both hardware and software components were tested to ensure the
requirements of the system were met. If the system did not meet the requirements,
troubleshooting process will be carried out to find out the problems and possible
solutions to solve it. Otherwise, the temperature, humidity monitoring and controlling
system cannot be developed successfully.
NodeMCU microcontroller. It uses low operating voltage from 3.5V to 5.5V with also
lower operating current not more than 0.3mA. The sensor can measure temperature from
0°C to 50°C and humidity from 20% to 90% with an accuracy of ±1°C and ±1% [14].
The NodeMCU also acts as a Wi-Fi module which creates the wireless
communication between the hardware and the database. The obtained data are
stored in the online database and can be monitored by any mobile applications. The
16 × 2 LCD display is a unit used to display the data in real time.
3. Design Methodology
The main tasks of this research are shown as follows:
• Design a user interface using the LCD.
• Acquire data using the temperature and humidity sensor.
• Upload data to the online database using NodeMCU.
• Develop a database application for user to monitor the temperature and humidity.
• Design a complete prototype of the system.
In measuring the surrounding temperature and humidity inside the room, the
temperature and humidity sensor is chosen because of its price. The sensing method
is to take data for every two seconds and send them to the NodeMCU. The NodeMCU
code is based on standard C programming language and it is written as below.
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>
#include "DHT.h"
#define DHTPIN 22
#define DHTTYPE DHT11
DHT dht(DHTPIN, DHTTYPE);
char auth[] = "XXXXXXX";
char ssid[] = "XXXXXXX";
char pass[] = "XXXXXXXXXXX";
void setup()
{
Serial.begin(9600);
From Fig. 7, as we know, the relative humidity level will decrease as the
temperature increase. Therefore, when the temperature is higher than 40℃, the
humidity level is lower than 35%, the relay will be set to HIGH in order to trigger the
humidifier to increase the humidity of the environment. Meanwhile, when the
temperature and the relative humidity level return back to standard range, the
humidifier will be turned off.
through wireless communication no matter where we are. Figure 8 shows the real-time
database update of the application. The application will refresh itself every 3s.
Figure 9 shows that through the mobile application, reviewing and reading the
previous data and histories from the temperature and humidity sensor can be done.
This is another good function for the user to analyse and control the temperature and
the relative humidity of the warehouse smartly.
5. Conclusions
The temperature, humidity monitoring and controlling system will serve as an
optimal solution for all the concerned parties such as electrical component storage
facilities, automobile manufacturers and food storage departments to improve their
efficiency in monitoring, controlling as well as managing the environmental
parameters such as temperature and humidity where these factors play an important
role in their productivity and finance. The system is capable of obtaining the
temperature and humidity of a space, thus providing a real time temperature and
humidity monitoring either using an application in a smartphone via WIFI over IoT,
a LCD display embedded in the system or a computer interface.
The application mentioned above keeps track of the temperature and humidity
readings as well, which helps the user to monitor these parameters in a graph.
Besides that, our system is also able to send an alert to the application if either one
or both of these parameters fall in the critical region; as well as making the
necessary step to bring back the particular parameter to safe region such as turning
on the humidifier if the humidity falls below the assigned value.
This research was built upon basic components. Further improvements can be
made to this project to increase its capability and efficiency such as temperature
control. With our system in place, it can eliminate the necessity of workers to
manually obtain the reading of these parameters and maintaining them frequently.
Many industries especially those require the controlled storages in which the
temperature and humidity plays an important role to ensure the lifespan and
efficiency of their products. The system will be a great help in boosting the
efficiency and reducing the cost.
Abbreviations
DHT-11 Temperature and Humidity Sensors
DHT-22 Temperature and Humidity Sensors
ESP-12 Miniature Wi-Fi Module
Blynk Platform with IOS and Android Apps
NodeMCU Internet of Thing Platform
IoT Internet of Thing
LCD Liquid Crystal Display
NTC Negative Temperature Coefficient
References
1. Roy, A.; Das, P.; and Das, R. (2017). Temperature and humidity monitoring
system for storage rooms of industries. Proceedings of the International
Conference on Computing and Communication Technologies for Smart
Nation. Gurgaon, India, 99-103.
2. Karim, A.; Hassan, M.Z.; Akanda, M.M.; and Mallik, A. (2018). Monitoring
food storage humidity and temperature data using IoT. MOJ Food Processing
and Technology, 6(4), 400-404.
3. Saha, S.; and Majumdar, A. (2017). Data centre temperature monitoring with
ESP8266 based wireless sensor network and cloud based dashboard with real
time alert system. Proceedings of the Devices for Integrated Circuit.
Kalyani, India, 307-310.
4. Rahim, R.; Sudarsana, I.K.; Manikandan, R.; Napitupulu, D.; Listyorini, T.;
Kurniasih, N.; Manurung, R.T.; Sallu, S. (2018). Humidity and temperature
prototype for education with internet of things. International Journal of Pure
and Applied Mathematics, 119(16), 2487-2491.
5. Nasution, T.H.; Muchtar, M.A.; Seniman, S.; and Siregar, I. (2018).
Monitoring temperature and humidity of server room using Lattepanda and
ThingSpeak. Proceedings of the 3rd International Conference on Computing
and Applied Informatics. Medan, Indonesia, 1-6.
6. Ratnadewi; Ramdhani, M.F.; Kurniasih, N.; Putri, L.D.; Parwito; Abdullah,
D.; Listyorini, T.; Bakhtiar, M.I.; Nanuru, R.F.; and Rahim, R. (2018).
Automatic blood pressure detector using arduino to measure blood pressure in
Indonesian people age 19-27 years old. International Journal of Engineering
and Technology, 7(2.5), 115–118.
7. Utomo, M.A.P.; Aziz, A.; Winarno; and Harjito, B. (2018). Server room
temperature & humidity monitoring based on internet of thing (IoT).
Proceedings of the 2nd International Conference on Mathemathics: Education,
Theory and Application. Sukoharjo, Indonesia.
8. Abdulrazzak, I.A.; Bierk, H.; and Aday, L.A. (2018). Humidity and
temperature monitoring. International Journal of Engineering and
Technology, 7(4), 5174-5177.
9. Saptadi, A.H. (2014). Perbandingan akurasi pengukuran suhu dan kelembaban
antara sensor DHT11 dan DHT22. Jurnal Infotel, 6(2), 49-55.
10. Ramesh, A.; Sankaramahalingam, M.; Bharathy, M.S.D.; and Aksha, R.
(2017). Remote temperature monitoring and control using IoT. Proceedings of