SlideShare a Scribd company logo
1 of 5
Download to read offline
International Journal of Trend in Scientific Research and Development (IJTSRD)
Volume: 3 | Issue: 4 | May-Jun 2019 Available Online: www.ijtsrd.com e-ISSN: 2456 - 6470
@ IJTSRD | Unique Paper ID - IJTSRD23719 | Volume – 3 | Issue – 4 | May-Jun 2019 Page: 276
Arduino Based Smart Home Automation System
Ma Naing1, Ni Ni San Hlaing2
1Lecturer, Department of Electronic Engineering, Technological University, Magway, Myanmar
2Lecturer, Department of Electronic Engineering, Technological University, Kyaukse, Myanmar
How to cite this paper: Ma Naing | Ni Ni
San Hlaing "Arduino Based SmartHome
Automation System" Published in
International Journal of Trend in
Scientific Research and Development
(ijtsrd), ISSN: 2456-
6470, Volume-3 |
Issue-4, June 2019,
pp.276-280, URL:
https://www.ijtsrd.c
om/papers/ijtsrd23
719.pdf
Copyright © 2019 by author(s) and
International Journal of Trend in
Scientific Research and Development
Journal. This is an Open Access article
distributed under
the terms of the
Creative Commons
Attribution License (CC BY 4.0)
(http://creativecommons.org/licenses/
by/4.0)
ABSTRACT
This paper presents the design and prototypeimplementation of theautomation
system that can be used two Arduino Nano with sensors. To demonstrate the
effectiveness of this system, the devices such asLDR, temperaturesensor,smoke
sensor and motion sensor have been integrated with the automation system. In
addition, the GSM and RFID modules are also used for security system. The
functions of the sensors are to monitor and control the light, the room
temperature and alarms. The main goal of the security system is GSM which is
used to send the SMS alerts to the owner. TwoArduinoNanocontrolsensors and
relays that monitor a defined location and take action based on specified
parameters like ambient light, temperature, etc. The microcontroller will send
SMS to the owner if the sensors detect an abnormality. In addition, door lock
security is developed by RFID module. In this paper, thepresentsof GSMmodule
security system make more secure and reliable.
KEYWORDS: Arduino NANO, Sensors, RFID, GSM, C Programming
I. INTRODUCTION
A home automation system focuses on automation controlling home electronic
devices whether user is inside or outside of the home. Home automation givesan
individual the ability to automatically control things around the home. A home
appliance is a device or instrument designed to perform a specific function,
especially an electrical device, such as a refrigerator, for household use.
Home automation includes mainly centralized control of
lighting, temperature, appliances, and other systems, to
provide improved comfort, convenience,efficiency and
security. For disabled and elderly person, home automation
can be the substitute of institutional care. With the energy
saving concept, home automation or building automation
makes life very simple nowadays. It involves automatic
controlling of all electrical or electronic devices in homes or
even remotely control through wireless communication.
Centralized control of lighting equipment, air conditioning
and heating, audio/video systems, security systems, kitchen
appliances and all other equipment used in home systems
are possible with this system.This paper presentsthedesign
and implementation of a robust, low cost and user friendly
home automation system using Arduino NANO. The design
ofproposed method is based on Arduino board, GSM, RFID
module and sensors.
II. System Block Diagram
The block diagram of smart home automation system is
shown in fig.1 below. All components are connected by two
Arduino NANO. This system can run with AC and DC as the
whole system use hybrid power supply. The two Arduino
NANO are used to obtain values of physical conditions
through sensors connected to it. The temperature sensor
read temperature values and the smoke sensor detects the
smoke to send SMS alarm and to ring the buzzer. The
automatic switching on and off of the light is controlled by
the Light Dependent Resistor (LDR) which determines the
day light intensity. Also to incorporate security in this
design, a motion detector is integrated using Passive
Infrared Sensor (PIR) to detect movement.
Arduino Nano
PIR
Sensor
Smoke
Sensor
LDR
GSM
Buzzer
Arduino Nano
LM35
RFID
Fan
16× 2 LCD
Servo Motor
Mobile
Phone
Relay
AC to DC
Power Card
Battery
Solar
Relay Bulb
D button
Inverter
20× 4 LCD
Fig.1: System Block Diagram of the Smart Home
Automation System based on Arduion
III. Software Implementation
A. Implementation using ArduinoNANO
In this paper, the programming software is proposed for the
method, that has ability to not only automatically controlthe
appliances but it also monitors the sensors. The control
IJTSRD23719
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID - IJTSRD23719 | Volume – 3 | Issue – 4 | May-Jun 2019 Page: 277
system has the ability to perform the full responsibilities.
The programming software of the system is Arduino C
programming software. A program is text that user write
using a programming language that containsbehaviours that
need a processor to acquire. It basically creates a way of
handling inputs and producing outputs according to these
behaviours. It is often defined as a general purpose
programming language and is indeed one of the most used
languages of all times.20×4 I2C LCD and 16×4 I2C LCD are
used to show the condition of door, light, the value of
temperature and fire condition. 20×4 LCD has 20 columns
and 4 rows and 16×2 LCD has 16 columns and 2 rows. Both
LCD have I2C serial pin to connect with Arduino. LCD device
is connected with I2C device to reduce pin connection of
LCD. I2C device has SDA and SCL pin for serial
communication. The other pins are power supply pin and
ground pin. The I2C protocol involvesusingtwolines tosend
and receive data a serial clock pin (SCL) that the Arduino
board pulses at a regular interval, and a serialdatapin(SDA)
over which data is sent between the two devices. In the
sketch, LCD_I2C lcd(5,0) is written and “Mingalarpar” is
printed in here. “Welcome to Group II” is printed in columns
0 and row 1. In columns 2 and rows 2, “Home Automation”is
printed.
Fig.2: Sketch for LCD
“Light” is printed in row 3 and column 0 to show light
condition. If the LDR detects the decreasing of light level,
Arduino microcontroller turns on 12V LED. The output of
LDR is connected to the analog pin of Arduino Nano.
Fig.3: Sketch for LDR
To automatically switch LED bulb, relay is used. Arduino
send the signal to the input of relay and turn on the relay.
Digital pin of Arduino is used to send the signal to the relays.
The light condition is show in the 20×4 LCD. If the light level
is decreased, LCD show “Turn On.” at row 3 and column 11.
Else, LCD show “Turn Off”. PIR sensor is used for burglar
alarm system and it works at night. PIRfunctionis written as
Mo() in the night condition command. If PIR sensor detectsa
motion, GSM module send alarm SMS to the setting phone
number. For fire alarmfunction, LCDshow“SmokeDetected”
in row 1 and column 0. If Smoke sensor detects the smoke,
the signal is sent to the analog pin of Arduino. LCD show
“Fire Alarm” in columns 0 and rows 2.
Fig.4: Sketch for Smoke Sensor
Fig.5: Sketch for 16×2 LCD
“TEMP” is printed in row 0 and column 0 to show
temperature. “Door” is printed in rows 1 and columns 0. To
show the value of temperature in the LCD,
‘LCD.setCursor(10,0)” can be commanded in the sketch. So
LCD is show temperature value in row 10 and column 0. If
the room temperature is up to 30 Degree Celsius, Arduino
turn on the fan and show the temperature value on the LCD.
Else, Arduino turn off the fun.
Fig.6. Sketch for Temperature Sensor
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID - IJTSRD23719 | Volume – 3 | Issue – 4 | May-Jun 2019 Page: 278
Fig.7: Inserting UID Number of the Tag to the Sketch
In these figure, receiving code is matched by Arduino with
store code. If the code is same, Arduino will send signal to
the servo motor and then open the door. And LCD shows the
door condition. If tag’s ID matches with the ID in the code,
the door will open automatically. It closes manually with
switch using internal pull-up function. Thereare20Kpull-up
resistors built into the Atmega chip that can be accessed
from software. These built-in pull-up resistors are accessed
by setting the pinMode() as INPUT_PULLUP. This effectively
inverts the behavior of the INPUT mode, where HIGH means
the servo is off, and LOW means the servo is on.
Fig.8: Sketch for Door Switch
SIM900A GSM Module
For the security system, the GSM sends text message based
on the sensors (PIR and Smoke sensors) used in this system.
If the PIR sensor gets any unusual movements, the user will
get a text message. This means that there is someone near
the house in absence of the user. The GSM also plays an
important role in fire alarming system with the help of
smoke sensor. When smoke is detected, the system sends
text message through GSM.
Fig.9: Program for Send Message Function
B. Implementation by Hardware
Arduino
NANO
Tx
Rx
RST
GND
D2
D3
D4
D5
D6
D7
D8
D9
D10
D11
D12
Vin
GND
RST
5V
A7
A6
A5
A4
A3
A2
A1
A0
REF
3V3
D13
GSM
SIM
900A
+
-
Tx
RFID
RC_522
SDA
SCK
MOSI
MISO
GND
RST
3.3V
PIR
Arduino
NANO
Tx
Rx
RST
GND
D2
D3
D4
D5
D6
D7
D8
D9
D10
D11
D12
Vin
GND
RST
5V
A7
A6
A5
A4
A3
A2
A1
A0
REF
3V3
D13
InverterBattery
+
+-
Solar pannel
5V
- +
- -
+
GND
AC to DC
power card
+
-
+
-
Servo
D
batton
LCD
2004
+
-SDA
SCL
Rx
2 Channel
Relay
LCD
2004
+
-
SDA
SCL
LDR
Smoke
Sensor
AC
Bulb
+
-
+
-
CMD Nc
Buzzer
LM 35
2 Channel
Relay
+ -CMD
Nc
Fan
-
+
Fig.10: Overall Circuit Diagram of the system
Smart home automation system is designed with Arduino
Nano, sensors, sensor modules/shield, fan, bulb, alarm
system, door lock system. If the temperature sensor feels an
increase in room temperature, Arduino microcontroller
takes a necessary action like automatically turn the fun on
which work as air condition. If the flame sensor detects fire,
Arduino takes action like turn alarm system and sending
SMS to owner. If the LDR sensor feels a decrease the level of
light in the room, Arduino takes action like turnthebulb.PIR
sensor is used for burglar alarm system. For security door
lock system, RFID system and servo motor is used. The
movement of the curtains will depend on the requirementof
light which is measured with Light Dependent Resistor
(LDR).PIR Sensor (HC – SR501) is used for motion detection.
Through GSM module, microcontroller will send SMS text
message to the owner. This will ensure safety inside the
house with the help of PIR sensor.
IV. Results
After connecting and programming all the components, all
the components will be run by the whole system. All
modules and microcontroller are kept together with a lot of
wires. This part is the main center of the home automation
system. The sensors are placed at a suitable side of the room
as shown in Figure 11. Fan is turned ON or OFF using
temperature sensor .When temperature increases, the
current will flow and the relay switch turn ON the fan
automatically.
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID - IJTSRD23719 | Volume – 3 | Issue – 4 | May-Jun 2019 Page: 279
Fig.11: Components Installation
Light is turned ON or OFF, using LDR sensor (Figure 12).
When the LDR senses the darkness, the Arduino commands
the relay switch and which turn on the bulb. With the helpof
PIR sensor, the presence of a person is detected and the
buzzer rings automatically.Then,theGSMmodulesends SMS
alerts to the owner.LCD shows door condition, light
condition, temperature value and fire condition. At the
normal condition, the 20×4 LCD shows“Mingalarpar”forthe
first row, “Welcome to Group II” for the second row, “Home
Automation” for the third row and “Light Turn Off” for the
fourth row. The 16×2 LCD display shows “Temp 30.00” for
the first row and “Door Lock” for the second row. The two
LCD displays are shown in figure 13. Servo motor isinstalled
on the home frame with the door to open or close the door
shown in figure 15.For SMS alarm system, GSM SIM 900A is
used to send SMS message to the owner shown in figure 16.
(a)
(b)
Fig12: (a) Light (LED) OFF, (b) Light (LED) ON
(a)
(b)
Fig.13: Testing of (a) 20×4 LCD, (b) 16×2 LCD
(a)
(b)
Fig.14: (a) Door Closed Condition, (b) Door Opened
Condition
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID - IJTSRD23719 | Volume – 3 | Issue – 4 | May-Jun 2019 Page: 280
Fig.15: Testing of RFID System
Fig.16: SMS Alarm
V. Discussion
This paper is discussed about the development of
automation system byArduinoTheautomation systemis low
cost and user friendly. In future, some devices are more
reliable, faster and cheaper. The componentscan bechanged
with the latest device but it should have the right software
and the right driver. All tasks of this system are done
successfully. The limitations in time and expenses but it will
serve as basis of latest AI systems as that of western
countries. Almost all scientific and latest technologies have
both good and bad sides. This type of work inspires the user
s to do better for our country. Smart Technologyisablessing
for our country. The bad consequences are avoided and it is
used for the betterment. This paper is emphasized
theoretical aspects of design and construction automation
system.
VI. Conclusion
In this paper a design and implementation concept for a
smart home automation system based on Arduino
microcontroller board. Sensors are connected to the
microcontroller board. The home appliances can be
monitored, controlled and accessed automatically in
response to any signals came from related sensors. The
system relies on power supply. If power supply fails, the
connection will be halted and SMS alarm functions will be
stopped. The security system is powered by another power
source for security safety.Withoutsecuritysystem,itdoesn’t
complete the whole system. The porposed system is shown
to be a simple, cost effective and flexible.
VII. REFERENCES
[1] Shatha J. Alghamdi, Lamiaa A. Elrefaei, "Dynamic User
Verification Using Touch Keystroke Based on Medians
Vector Proximity", Computational Intelligence
Communication, (2015).
[2] TziporaHalevi, HaoyuLi,DiMa,NiteshSaxena,Jonathan
Voris, Tuo Xiang, "Context Aware Defenses to RFID
Unauthorized Reading and Relay Attacks", Emerging
Topics in Computing IEEE Transactions on, (2009).
[3] Raphael C.-W. Phan, Jean-Philippe Aumasson, "Next
generation networks: Human-aided and privacy-
driven", Innovations in NGN: Future Network and
Services, (2008).
[4] RobertLarkins, Michael Mayo, "Adaptive Feature
Thresholding for off-line signature verification", Image
and Vision Computing New Zealand, (2008).
[5] Tieyan Li, "Employing Lightweight Primitives on Low-
Cost RFID Tags for Authentication", Vehicular
Technology Conference (2008).
[6] J. Fazenda, D. Santos, P. Correia, "Using Gait to
Recognize People", Computer as a Tool, (2005).

More Related Content

What's hot

Arduino Based Home Automation System with Android and
Arduino Based Home Automation System with Android andArduino Based Home Automation System with Android and
Arduino Based Home Automation System with Android and
Anish Basu
 
IOT Cloud Based Real Time Automobile Monitoring System
IOT Cloud Based Real Time Automobile Monitoring SystemIOT Cloud Based Real Time Automobile Monitoring System
IOT Cloud Based Real Time Automobile Monitoring System
Dr. Amarjeet Singh
 

What's hot (20)

Arduino Based Home Automation System with Android and
Arduino Based Home Automation System with Android andArduino Based Home Automation System with Android and
Arduino Based Home Automation System with Android and
 
IRJET - Fire and Harmful Gas Detection Notification System
IRJET - Fire and Harmful Gas Detection Notification SystemIRJET - Fire and Harmful Gas Detection Notification System
IRJET - Fire and Harmful Gas Detection Notification System
 
presentation on image processing and temperature and humidity sensor.
presentation on image processing and temperature and humidity sensor.presentation on image processing and temperature and humidity sensor.
presentation on image processing and temperature and humidity sensor.
 
Automatic irrigation system using Arduino
Automatic irrigation system using ArduinoAutomatic irrigation system using Arduino
Automatic irrigation system using Arduino
 
Contactless digital tachometer using microcontroller
Contactless digital tachometer using microcontroller Contactless digital tachometer using microcontroller
Contactless digital tachometer using microcontroller
 
37 en-1-especificaciones
37 en-1-especificaciones37 en-1-especificaciones
37 en-1-especificaciones
 
Automatic Room Lights Controller Using Arduino & PIR Sensor
Automatic Room Lights Controller Using Arduino & PIR SensorAutomatic Room Lights Controller Using Arduino & PIR Sensor
Automatic Room Lights Controller Using Arduino & PIR Sensor
 
Wireless Patient Monitoring System using IoT
Wireless Patient Monitoring System using IoTWireless Patient Monitoring System using IoT
Wireless Patient Monitoring System using IoT
 
Q8 Face Recognition & Face Temperature Integrated Detector - Contact-less Tem...
Q8 Face Recognition & Face Temperature Integrated Detector - Contact-less Tem...Q8 Face Recognition & Face Temperature Integrated Detector - Contact-less Tem...
Q8 Face Recognition & Face Temperature Integrated Detector - Contact-less Tem...
 
Anti theft & Automation using Arduino
Anti theft & Automation using ArduinoAnti theft & Automation using Arduino
Anti theft & Automation using Arduino
 
Fire detection system using arduino
Fire detection system using arduino Fire detection system using arduino
Fire detection system using arduino
 
Questions & Answers related to home automation
Questions & Answers related to home automationQuestions & Answers related to home automation
Questions & Answers related to home automation
 
Bluetooth Home Automation System
Bluetooth Home Automation SystemBluetooth Home Automation System
Bluetooth Home Automation System
 
IRJET- Intelligent Energy Saving and Voice Control System
IRJET- Intelligent Energy Saving and Voice Control SystemIRJET- Intelligent Energy Saving and Voice Control System
IRJET- Intelligent Energy Saving and Voice Control System
 
Top 786 Embedded Systems Projects for Engineers | List of 2020 Embedded Syste...
Top 786 Embedded Systems Projects for Engineers | List of 2020 Embedded Syste...Top 786 Embedded Systems Projects for Engineers | List of 2020 Embedded Syste...
Top 786 Embedded Systems Projects for Engineers | List of 2020 Embedded Syste...
 
Bidirectional Visitor Counter using IR sensors and Arduino Uno R3
Bidirectional Visitor Counter using IR sensors and Arduino Uno R3Bidirectional Visitor Counter using IR sensors and Arduino Uno R3
Bidirectional Visitor Counter using IR sensors and Arduino Uno R3
 
IRJET- Intelligent Security System for Women by using Arduino
IRJET- Intelligent Security System for Women by using ArduinoIRJET- Intelligent Security System for Women by using Arduino
IRJET- Intelligent Security System for Women by using Arduino
 
Implementation Of GSM Based Fire Alarm and Protection System
Implementation Of GSM Based Fire Alarm and Protection SystemImplementation Of GSM Based Fire Alarm and Protection System
Implementation Of GSM Based Fire Alarm and Protection System
 
IOT Cloud Based Real Time Automobile Monitoring System
IOT Cloud Based Real Time Automobile Monitoring SystemIOT Cloud Based Real Time Automobile Monitoring System
IOT Cloud Based Real Time Automobile Monitoring System
 
List of good embedded systems projects for engineering
List of good embedded systems projects for engineeringList of good embedded systems projects for engineering
List of good embedded systems projects for engineering
 

Similar to Arduino Based Smart Home Automation System

IoT Based Automatic Gas, Smoke and Fire Alert System
IoT Based Automatic Gas, Smoke and Fire Alert SystemIoT Based Automatic Gas, Smoke and Fire Alert System
IoT Based Automatic Gas, Smoke and Fire Alert System
ijtsrd
 
Fire Detection System using GSM Module
Fire Detection System using GSM ModuleFire Detection System using GSM Module
Fire Detection System using GSM Module
ijtsrd
 
Electronic Door Lock using RFID and Password Based on Arduino
Electronic Door Lock using RFID and Password Based on ArduinoElectronic Door Lock using RFID and Password Based on Arduino
Electronic Door Lock using RFID and Password Based on Arduino
ijtsrd
 

Similar to Arduino Based Smart Home Automation System (20)

Integrated Security System With Remot Controlling Of Appliances
Integrated Security System With Remot Controlling Of AppliancesIntegrated Security System With Remot Controlling Of Appliances
Integrated Security System With Remot Controlling Of Appliances
 
major1.pptx
major1.pptxmajor1.pptx
major1.pptx
 
IoT Based Automatic Gas, Smoke and Fire Alert System
IoT Based Automatic Gas, Smoke and Fire Alert SystemIoT Based Automatic Gas, Smoke and Fire Alert System
IoT Based Automatic Gas, Smoke and Fire Alert System
 
1610956352300 (2).pptx
1610956352300 (2).pptx1610956352300 (2).pptx
1610956352300 (2).pptx
 
slide iot Project - temperature.pptx
slide iot Project - temperature.pptxslide iot Project - temperature.pptx
slide iot Project - temperature.pptx
 
GSM Based Home Automation System using Arduino
GSM Based Home Automation System using ArduinoGSM Based Home Automation System using Arduino
GSM Based Home Automation System using Arduino
 
IRJET- Power Theft Detection and Monitoring using GSM Technology
IRJET-  	  Power Theft Detection and Monitoring using GSM TechnologyIRJET-  	  Power Theft Detection and Monitoring using GSM Technology
IRJET- Power Theft Detection and Monitoring using GSM Technology
 
Smart and Secure Home using IoT
Smart and Secure Home using IoTSmart and Secure Home using IoT
Smart and Secure Home using IoT
 
Fire Detection System using GSM Module
Fire Detection System using GSM ModuleFire Detection System using GSM Module
Fire Detection System using GSM Module
 
Smoke Alert System For Dye Industries Using IoT
Smoke Alert System For Dye Industries Using IoTSmoke Alert System For Dye Industries Using IoT
Smoke Alert System For Dye Industries Using IoT
 
Presentation on INTERNET OF THINGS
Presentation on INTERNET OF THINGSPresentation on INTERNET OF THINGS
Presentation on INTERNET OF THINGS
 
GSM Based SMS fire alert system
GSM Based SMS fire alert systemGSM Based SMS fire alert system
GSM Based SMS fire alert system
 
Home Automation Using Arduino and ESP8266
Home Automation Using Arduino and ESP8266Home Automation Using Arduino and ESP8266
Home Automation Using Arduino and ESP8266
 
Fire Detection Using MATLAB
Fire Detection Using MATLABFire Detection Using MATLAB
Fire Detection Using MATLAB
 
Microcontroller Based Temperature Monitoring and Controlling System using XBe...
Microcontroller Based Temperature Monitoring and Controlling System using XBe...Microcontroller Based Temperature Monitoring and Controlling System using XBe...
Microcontroller Based Temperature Monitoring and Controlling System using XBe...
 
IOT Based Soldier Position Tracking and Health Monitoring System
IOT Based Soldier Position Tracking and Health Monitoring SystemIOT Based Soldier Position Tracking and Health Monitoring System
IOT Based Soldier Position Tracking and Health Monitoring System
 
IoT Based Detection of Leakages in Gas Pipes
IoT Based Detection of Leakages in Gas PipesIoT Based Detection of Leakages in Gas Pipes
IoT Based Detection of Leakages in Gas Pipes
 
IRJET- Centralised Status alert system for industrial machines
IRJET-  	  Centralised Status alert system for industrial machinesIRJET-  	  Centralised Status alert system for industrial machines
IRJET- Centralised Status alert system for industrial machines
 
Electronic Door Lock using RFID and Password Based on Arduino
Electronic Door Lock using RFID and Password Based on ArduinoElectronic Door Lock using RFID and Password Based on Arduino
Electronic Door Lock using RFID and Password Based on Arduino
 
IRJET - SMS based Accident Alert with GPS Coordinates
IRJET -  	  SMS based Accident Alert with GPS CoordinatesIRJET -  	  SMS based Accident Alert with GPS Coordinates
IRJET - SMS based Accident Alert with GPS Coordinates
 

More from ijtsrd

‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation
ijtsrd
 
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and ProspectsDynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
ijtsrd
 
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
ijtsrd
 
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
ijtsrd
 
Problems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A StudyProblems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A Study
ijtsrd
 
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
ijtsrd
 
A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...
ijtsrd
 
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
ijtsrd
 
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
ijtsrd
 
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. SadikuSustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
ijtsrd
 
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
ijtsrd
 
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
ijtsrd
 
Activating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment MapActivating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment Map
ijtsrd
 
Educational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger SocietyEducational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger Society
ijtsrd
 
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
ijtsrd
 

More from ijtsrd (20)

‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation
 
Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...
 
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and ProspectsDynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
 
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
 
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
 
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
 
Problems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A StudyProblems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A Study
 
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
 
The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...
 
A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...
 
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
 
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
 
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. SadikuSustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
 
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
 
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
 
Activating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment MapActivating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment Map
 
Educational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger SocietyEducational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger Society
 
Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...
 
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
 
Streamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine LearningStreamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine Learning
 

Recently uploaded

Recently uploaded (20)

On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptxOn_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
 
FICTIONAL SALESMAN/SALESMAN SNSW 2024.pdf
FICTIONAL SALESMAN/SALESMAN SNSW 2024.pdfFICTIONAL SALESMAN/SALESMAN SNSW 2024.pdf
FICTIONAL SALESMAN/SALESMAN SNSW 2024.pdf
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
Details on CBSE Compartment Exam.pptx1111
Details on CBSE Compartment Exam.pptx1111Details on CBSE Compartment Exam.pptx1111
Details on CBSE Compartment Exam.pptx1111
 
Philosophy of china and it's charactistics
Philosophy of china and it's charactisticsPhilosophy of china and it's charactistics
Philosophy of china and it's charactistics
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptx
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
How to Manage Call for Tendor in Odoo 17
How to Manage Call for Tendor in Odoo 17How to Manage Call for Tendor in Odoo 17
How to Manage Call for Tendor in Odoo 17
 
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptxCOMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxExploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptx
 

Arduino Based Smart Home Automation System

  • 1. International Journal of Trend in Scientific Research and Development (IJTSRD) Volume: 3 | Issue: 4 | May-Jun 2019 Available Online: www.ijtsrd.com e-ISSN: 2456 - 6470 @ IJTSRD | Unique Paper ID - IJTSRD23719 | Volume – 3 | Issue – 4 | May-Jun 2019 Page: 276 Arduino Based Smart Home Automation System Ma Naing1, Ni Ni San Hlaing2 1Lecturer, Department of Electronic Engineering, Technological University, Magway, Myanmar 2Lecturer, Department of Electronic Engineering, Technological University, Kyaukse, Myanmar How to cite this paper: Ma Naing | Ni Ni San Hlaing "Arduino Based SmartHome Automation System" Published in International Journal of Trend in Scientific Research and Development (ijtsrd), ISSN: 2456- 6470, Volume-3 | Issue-4, June 2019, pp.276-280, URL: https://www.ijtsrd.c om/papers/ijtsrd23 719.pdf Copyright © 2019 by author(s) and International Journal of Trend in Scientific Research and Development Journal. This is an Open Access article distributed under the terms of the Creative Commons Attribution License (CC BY 4.0) (http://creativecommons.org/licenses/ by/4.0) ABSTRACT This paper presents the design and prototypeimplementation of theautomation system that can be used two Arduino Nano with sensors. To demonstrate the effectiveness of this system, the devices such asLDR, temperaturesensor,smoke sensor and motion sensor have been integrated with the automation system. In addition, the GSM and RFID modules are also used for security system. The functions of the sensors are to monitor and control the light, the room temperature and alarms. The main goal of the security system is GSM which is used to send the SMS alerts to the owner. TwoArduinoNanocontrolsensors and relays that monitor a defined location and take action based on specified parameters like ambient light, temperature, etc. The microcontroller will send SMS to the owner if the sensors detect an abnormality. In addition, door lock security is developed by RFID module. In this paper, thepresentsof GSMmodule security system make more secure and reliable. KEYWORDS: Arduino NANO, Sensors, RFID, GSM, C Programming I. INTRODUCTION A home automation system focuses on automation controlling home electronic devices whether user is inside or outside of the home. Home automation givesan individual the ability to automatically control things around the home. A home appliance is a device or instrument designed to perform a specific function, especially an electrical device, such as a refrigerator, for household use. Home automation includes mainly centralized control of lighting, temperature, appliances, and other systems, to provide improved comfort, convenience,efficiency and security. For disabled and elderly person, home automation can be the substitute of institutional care. With the energy saving concept, home automation or building automation makes life very simple nowadays. It involves automatic controlling of all electrical or electronic devices in homes or even remotely control through wireless communication. Centralized control of lighting equipment, air conditioning and heating, audio/video systems, security systems, kitchen appliances and all other equipment used in home systems are possible with this system.This paper presentsthedesign and implementation of a robust, low cost and user friendly home automation system using Arduino NANO. The design ofproposed method is based on Arduino board, GSM, RFID module and sensors. II. System Block Diagram The block diagram of smart home automation system is shown in fig.1 below. All components are connected by two Arduino NANO. This system can run with AC and DC as the whole system use hybrid power supply. The two Arduino NANO are used to obtain values of physical conditions through sensors connected to it. The temperature sensor read temperature values and the smoke sensor detects the smoke to send SMS alarm and to ring the buzzer. The automatic switching on and off of the light is controlled by the Light Dependent Resistor (LDR) which determines the day light intensity. Also to incorporate security in this design, a motion detector is integrated using Passive Infrared Sensor (PIR) to detect movement. Arduino Nano PIR Sensor Smoke Sensor LDR GSM Buzzer Arduino Nano LM35 RFID Fan 16× 2 LCD Servo Motor Mobile Phone Relay AC to DC Power Card Battery Solar Relay Bulb D button Inverter 20× 4 LCD Fig.1: System Block Diagram of the Smart Home Automation System based on Arduion III. Software Implementation A. Implementation using ArduinoNANO In this paper, the programming software is proposed for the method, that has ability to not only automatically controlthe appliances but it also monitors the sensors. The control IJTSRD23719
  • 2. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID - IJTSRD23719 | Volume – 3 | Issue – 4 | May-Jun 2019 Page: 277 system has the ability to perform the full responsibilities. The programming software of the system is Arduino C programming software. A program is text that user write using a programming language that containsbehaviours that need a processor to acquire. It basically creates a way of handling inputs and producing outputs according to these behaviours. It is often defined as a general purpose programming language and is indeed one of the most used languages of all times.20×4 I2C LCD and 16×4 I2C LCD are used to show the condition of door, light, the value of temperature and fire condition. 20×4 LCD has 20 columns and 4 rows and 16×2 LCD has 16 columns and 2 rows. Both LCD have I2C serial pin to connect with Arduino. LCD device is connected with I2C device to reduce pin connection of LCD. I2C device has SDA and SCL pin for serial communication. The other pins are power supply pin and ground pin. The I2C protocol involvesusingtwolines tosend and receive data a serial clock pin (SCL) that the Arduino board pulses at a regular interval, and a serialdatapin(SDA) over which data is sent between the two devices. In the sketch, LCD_I2C lcd(5,0) is written and “Mingalarpar” is printed in here. “Welcome to Group II” is printed in columns 0 and row 1. In columns 2 and rows 2, “Home Automation”is printed. Fig.2: Sketch for LCD “Light” is printed in row 3 and column 0 to show light condition. If the LDR detects the decreasing of light level, Arduino microcontroller turns on 12V LED. The output of LDR is connected to the analog pin of Arduino Nano. Fig.3: Sketch for LDR To automatically switch LED bulb, relay is used. Arduino send the signal to the input of relay and turn on the relay. Digital pin of Arduino is used to send the signal to the relays. The light condition is show in the 20×4 LCD. If the light level is decreased, LCD show “Turn On.” at row 3 and column 11. Else, LCD show “Turn Off”. PIR sensor is used for burglar alarm system and it works at night. PIRfunctionis written as Mo() in the night condition command. If PIR sensor detectsa motion, GSM module send alarm SMS to the setting phone number. For fire alarmfunction, LCDshow“SmokeDetected” in row 1 and column 0. If Smoke sensor detects the smoke, the signal is sent to the analog pin of Arduino. LCD show “Fire Alarm” in columns 0 and rows 2. Fig.4: Sketch for Smoke Sensor Fig.5: Sketch for 16×2 LCD “TEMP” is printed in row 0 and column 0 to show temperature. “Door” is printed in rows 1 and columns 0. To show the value of temperature in the LCD, ‘LCD.setCursor(10,0)” can be commanded in the sketch. So LCD is show temperature value in row 10 and column 0. If the room temperature is up to 30 Degree Celsius, Arduino turn on the fan and show the temperature value on the LCD. Else, Arduino turn off the fun. Fig.6. Sketch for Temperature Sensor
  • 3. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID - IJTSRD23719 | Volume – 3 | Issue – 4 | May-Jun 2019 Page: 278 Fig.7: Inserting UID Number of the Tag to the Sketch In these figure, receiving code is matched by Arduino with store code. If the code is same, Arduino will send signal to the servo motor and then open the door. And LCD shows the door condition. If tag’s ID matches with the ID in the code, the door will open automatically. It closes manually with switch using internal pull-up function. Thereare20Kpull-up resistors built into the Atmega chip that can be accessed from software. These built-in pull-up resistors are accessed by setting the pinMode() as INPUT_PULLUP. This effectively inverts the behavior of the INPUT mode, where HIGH means the servo is off, and LOW means the servo is on. Fig.8: Sketch for Door Switch SIM900A GSM Module For the security system, the GSM sends text message based on the sensors (PIR and Smoke sensors) used in this system. If the PIR sensor gets any unusual movements, the user will get a text message. This means that there is someone near the house in absence of the user. The GSM also plays an important role in fire alarming system with the help of smoke sensor. When smoke is detected, the system sends text message through GSM. Fig.9: Program for Send Message Function B. Implementation by Hardware Arduino NANO Tx Rx RST GND D2 D3 D4 D5 D6 D7 D8 D9 D10 D11 D12 Vin GND RST 5V A7 A6 A5 A4 A3 A2 A1 A0 REF 3V3 D13 GSM SIM 900A + - Tx RFID RC_522 SDA SCK MOSI MISO GND RST 3.3V PIR Arduino NANO Tx Rx RST GND D2 D3 D4 D5 D6 D7 D8 D9 D10 D11 D12 Vin GND RST 5V A7 A6 A5 A4 A3 A2 A1 A0 REF 3V3 D13 InverterBattery + +- Solar pannel 5V - + - - + GND AC to DC power card + - + - Servo D batton LCD 2004 + -SDA SCL Rx 2 Channel Relay LCD 2004 + - SDA SCL LDR Smoke Sensor AC Bulb + - + - CMD Nc Buzzer LM 35 2 Channel Relay + -CMD Nc Fan - + Fig.10: Overall Circuit Diagram of the system Smart home automation system is designed with Arduino Nano, sensors, sensor modules/shield, fan, bulb, alarm system, door lock system. If the temperature sensor feels an increase in room temperature, Arduino microcontroller takes a necessary action like automatically turn the fun on which work as air condition. If the flame sensor detects fire, Arduino takes action like turn alarm system and sending SMS to owner. If the LDR sensor feels a decrease the level of light in the room, Arduino takes action like turnthebulb.PIR sensor is used for burglar alarm system. For security door lock system, RFID system and servo motor is used. The movement of the curtains will depend on the requirementof light which is measured with Light Dependent Resistor (LDR).PIR Sensor (HC – SR501) is used for motion detection. Through GSM module, microcontroller will send SMS text message to the owner. This will ensure safety inside the house with the help of PIR sensor. IV. Results After connecting and programming all the components, all the components will be run by the whole system. All modules and microcontroller are kept together with a lot of wires. This part is the main center of the home automation system. The sensors are placed at a suitable side of the room as shown in Figure 11. Fan is turned ON or OFF using temperature sensor .When temperature increases, the current will flow and the relay switch turn ON the fan automatically.
  • 4. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID - IJTSRD23719 | Volume – 3 | Issue – 4 | May-Jun 2019 Page: 279 Fig.11: Components Installation Light is turned ON or OFF, using LDR sensor (Figure 12). When the LDR senses the darkness, the Arduino commands the relay switch and which turn on the bulb. With the helpof PIR sensor, the presence of a person is detected and the buzzer rings automatically.Then,theGSMmodulesends SMS alerts to the owner.LCD shows door condition, light condition, temperature value and fire condition. At the normal condition, the 20×4 LCD shows“Mingalarpar”forthe first row, “Welcome to Group II” for the second row, “Home Automation” for the third row and “Light Turn Off” for the fourth row. The 16×2 LCD display shows “Temp 30.00” for the first row and “Door Lock” for the second row. The two LCD displays are shown in figure 13. Servo motor isinstalled on the home frame with the door to open or close the door shown in figure 15.For SMS alarm system, GSM SIM 900A is used to send SMS message to the owner shown in figure 16. (a) (b) Fig12: (a) Light (LED) OFF, (b) Light (LED) ON (a) (b) Fig.13: Testing of (a) 20×4 LCD, (b) 16×2 LCD (a) (b) Fig.14: (a) Door Closed Condition, (b) Door Opened Condition
  • 5. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID - IJTSRD23719 | Volume – 3 | Issue – 4 | May-Jun 2019 Page: 280 Fig.15: Testing of RFID System Fig.16: SMS Alarm V. Discussion This paper is discussed about the development of automation system byArduinoTheautomation systemis low cost and user friendly. In future, some devices are more reliable, faster and cheaper. The componentscan bechanged with the latest device but it should have the right software and the right driver. All tasks of this system are done successfully. The limitations in time and expenses but it will serve as basis of latest AI systems as that of western countries. Almost all scientific and latest technologies have both good and bad sides. This type of work inspires the user s to do better for our country. Smart Technologyisablessing for our country. The bad consequences are avoided and it is used for the betterment. This paper is emphasized theoretical aspects of design and construction automation system. VI. Conclusion In this paper a design and implementation concept for a smart home automation system based on Arduino microcontroller board. Sensors are connected to the microcontroller board. The home appliances can be monitored, controlled and accessed automatically in response to any signals came from related sensors. The system relies on power supply. If power supply fails, the connection will be halted and SMS alarm functions will be stopped. The security system is powered by another power source for security safety.Withoutsecuritysystem,itdoesn’t complete the whole system. The porposed system is shown to be a simple, cost effective and flexible. VII. REFERENCES [1] Shatha J. Alghamdi, Lamiaa A. Elrefaei, "Dynamic User Verification Using Touch Keystroke Based on Medians Vector Proximity", Computational Intelligence Communication, (2015). [2] TziporaHalevi, HaoyuLi,DiMa,NiteshSaxena,Jonathan Voris, Tuo Xiang, "Context Aware Defenses to RFID Unauthorized Reading and Relay Attacks", Emerging Topics in Computing IEEE Transactions on, (2009). [3] Raphael C.-W. Phan, Jean-Philippe Aumasson, "Next generation networks: Human-aided and privacy- driven", Innovations in NGN: Future Network and Services, (2008). [4] RobertLarkins, Michael Mayo, "Adaptive Feature Thresholding for off-line signature verification", Image and Vision Computing New Zealand, (2008). [5] Tieyan Li, "Employing Lightweight Primitives on Low- Cost RFID Tags for Authentication", Vehicular Technology Conference (2008). [6] J. Fazenda, D. Santos, P. Correia, "Using Gait to Recognize People", Computer as a Tool, (2005).