SlideShare a Scribd company logo
1 of 3
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 11 | Nov 2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1625
VOICE BASED ELDER CARE SYSTEM
Santhakumar S1, Sanjai T2, Sakthivel M3, Sounthararajan V4, Rangarajan J5,Sivakumar C6
1,2,3,4UG Students, Dept. of ECE, Muthayammal Engineering College, Tamilnadu, India
5,6Professor, Dept. of ECE, Muthayammal Engineering College, Tamilnadu, India
----------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - The concept of home automation is gaining
popularity and it helps the elder people who living alone.
Many home automation systems for elder care use different
technologies. In this work, a Voice Activated system is
developed such that the elders can control the electrical
appliances by their voice without any difficulty. Ardunio Uno,
HC-05 Bluetooth module and Smart phone with voice control
application are the main components of this system. To
control home appliance, the elders has to just tell “turn on
light”, “turn off light”, “turn on fan” and “turn off fan”towards
the microphone in the voice control app loaded in the smart
phone.
Key Words: Ardunio, Bluetooth, Elder Care, Voice Control
App, Smart Phone.
1. INTRODUCTION
Elder care is showing special care to senior citizens
regarding their daily needs. Due to aging their physical
health begins to fail and they found it difficult to maintain
their day to day activities [1]. Even to switch on and off the
electrical appliances, they have to get down from their bed
or move to the switch board. In case of emergency, it is
difficult for them to shout loud for any assistance. In such
instants, this type of voice based system will help them a lot.
The issue of population aging seems more and moreserious.
Health care and safety monitoring for the elderly is
becoming an urgent issue to be solved. The concept ofhome
automation is gaining popularity and it helps the elder
people who living alone [2,3]. With the help of this type of
system, it is possible for them to control the basic electrical
appliances like lights, fans and alarm without the help of
others. Considering these aspect, a prototype model was
developed in this work.
Many home automation systems for elder caring using
different technologies like Bluetooth Controlled, Internet
Controlled, RF Controlled and Remote Controlled (IR
Remote) are available [4,5]. Each type has its own
advantages and disadvantages. In this work, a Voice
Activated system is developed such that the elders can
control the electrical appliances by their voice without any
difficulty.
2. SYSTEM DESIGN
Figure 1 shows the block diagram of the proposed system.
The proposed system consists of three main components:
Ardunio UNO, HC-05 Bluetooth module and Smart phone
with voice control application. As shown in the block
diagram, the Bluetooth module is interfaced to the Arduino
board to provide control commends as input. The electrical
appliances to be operated or controlled by the elder people
are connected to the output ports of the Adriano board.
Fig -1: Block diagram of the system
The functional details of the component used are given
below.
Bluetooth HC-05: Bluetooth technology is used to have
communication between the smart phone and the Arduino
board. For this purpose Bluetooth module HC – 05 is used in
this work. This module can be interfaced using UART
protocol with a widerangeofprogrammablebaudrates. This
module can be configured as either master or slave. Figure2
shows the HC – 05 Bluetooth Module used in this work. In
this module, pins are available for VCC (5V), GND, TXand RX.
Fig -2: Bluetooth Hc-05 module
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 11 | Nov 2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1626
Smart phone with BT Voice Control application: This app
is developed by SimpleLabsIN for voice based Arduino
projects. This Android App will use the phone’s voice
recognition feature and will convert the voice commands to
text and transfer the string via Bluetooth. This voice control
application has to be installed in the smart phone which is
used by the elder people. Also, the voice recognition feature
has to be enabled on the phone The home screen of theappis
shown in the figure 3.
Fig -3: BT Voice Control App
Arduino Uno: Arduino Uno is amicrocontrollerboardbased
on the ATmega328P. It has 14 digital input/output pins, 6
analog inputs, a 16 MHz quartz crystal, a USB connection, a
power jack. It contains everything needed to support the
microcontroller; simply connect it to a computer with a USB
cable or power it with a AC-to-DC adapter.
The Arduino Uno comes preprogrammed with a boot loader
that allows uploading new code to it without the use of an
external hardware programmer. Each of the 14 digital pins
on the Uno can be used as an input or output.
3. WORKING PRINCIPLE
All the connections are made as per the block diagram.
Bluetooth uses UART protocol. Therefore, RX and TX pins of
the Arduino board are used for receiving and transmitting
purpose. In this work Software Serial library is used to
define Pin 2 as RX and Pin 3 TX. Next, the paring between the
Phone’s Bluetooth to the HC – 05 Bluetooth Module is done.
Choose theoption“ConnectRobot”andselecttheappropriate
Bluetooth Device to connect the smart phone with the
Bluetooth module.
After making the necessary connections,switchonthepower
supply and smart phone. Now the system is ready to work.
Now, the elders have to just pressthemicrophoneicononthe
app and start giving voice commands to switch“ON”or“OFF”
the appliances they need to control. The prototype of
working model is shown in the figure 4 and figure 5.
Fig -4: Front view of prototype system
Fig -5: Top view of prototype system
For example, if the elders say “turn on light”, the app will
recognize the command and transfers it to the Bluetooth
Module. Then the light (LED) connected to the output of the
Arduino is switched ON. The programs are so written in the
Arduino, such that it will enable the pin in which the light
(LED) is connected. Also, the command gets displayedonthe
screen for their reference.
4. SOFTWARE DESIGN
For controlling each appliance, some predefined strings are
used in the program. When the string “turn on light” is
detected by the app, it will send the string as “*turn on
light#”. That is, the information received by the bluetooth
module is in the format of “*Message#”. To indicate the
beginning and end of the message, the srings ‘*’ and ‘#’ are
used. The received message is comparedwiththepredefined
strings. If the message matches with any of them, then
corresponding output pin of Arduino board is activated or
enabled to switch ON or switch OFF the desired appliance.
To control three home appliance, the following three
commands are used in this system : “turn on buzzer”, “turn
off buzzer”, “turn on light”, “turn off light”, “turn on fan”,
“turn off fan”, “turn on all” and “turn off all”.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 11 | Nov 2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1627
5. CONCLUSION
In this work a voice based elder care system is designedand
a prototype model is developed. The working of proto type
model is found satisfactory. If required depending on the
demands or needs of the elder, additional appliances can be
interfaced to the existing system without much difficulty.
REFERENCES
[1] Aqeel-ur-Rehman , Royda Arif and Hira Khursheed,
“Voice Controlled Home Automation System for the
Elderly or Disabled People”, Journal of Applied
Environmental and Biological Sciences,Vol. 4(8S),2014,
pp. 55-64.
[2] Kai Guan, Minggang Shao, and Shuicai Wu, “A Remote
Health Monitoring System for the Elderly Based on
Smart Home Gateway”, Journal of Healthcare
Engineering, Volume 2017, Article ID 5843504, 9 pages,
doi.org/10.1155/2017/5843504
[3] Morris ME, Adair B, Miller K, Ozanne E, Hansen R, et al.,
(2013) “Smart-Home Technologies to Assist Older
People to Live Well at Home”, Aging Sci, Vol. 1(1): 101,
2013, doi: 10.4172/2329-8847.1000101
[4] Pinto, Sandro & Cabral, Jorge & Gomes, T. (2017). “We-
Care: An IoT-based Health Care system for Elderly
People”, Proceedingof IEEEInternational Conferenceon
Industrial Technology, 2017, doi.
10.1109/ICIT.2017.7915565.
[5] Martin S, Kelly G, Kernohan WG, McCreight B, Nugent C,
“Smart home technologies for health and social care
support”, Cochrane Database Syst Rev, 2008, doi:
10.1002/14651858.CD006412.pub2.
AUTHORS
S. Santhakumar is currently doing his
Second year UG course in ECE
department of Muthayammal
Engineering College, Rasipuram, Tamil
Nadu. His area of interest is Embedded
Systems.
T. Sanjai is currently doing his Second
year UG course in ECE department of
Muthayammal Engineering College,
Rasipuram, Tamil Nadu. His area of
interest is Embedded Systems.
M. Sakthivel is currently doing his
Second year UG course in ECE
department of Muthayammal
Engineering College, Rasipuram, Tamil
Nadu. His area of interest is Embedded
Systems.
V. Sounthararajaniscurrentlydoinghis
Second year UG course in ECE
department of Muthayammal
Engineering College, Rasipuram, Tamil
Nadu. His area of interest is Embedded
Systems.
Dr.J. Rangarajaniscurrentlyworkingas
Professor in ECE department of
Muthayammal Engineering College,
Rasipuram. His area of interest
includes Mobile AdHoc Networks,
Sensor Networks, Embedded System
and Antenna Design.
Mr. C. Sivakumar is currently working
as Associate Professor in ECE
department of Muthayammal
Engineering College, Rasipuram. His
area of interest includes VLSI, Sensor
Networks and Embedded System.
thor
Photo
Photo

More Related Content

What's hot

IRJET - IoT based Home Automation using ATmega328 Microcontroller
IRJET -  	  IoT based Home Automation using ATmega328 MicrocontrollerIRJET -  	  IoT based Home Automation using ATmega328 Microcontroller
IRJET - IoT based Home Automation using ATmega328 MicrocontrollerIRJET Journal
 
IRJET- An IoT based Remote HRV Monitoring System for Hypertensive Patients
IRJET-  	  An IoT based Remote HRV Monitoring System for Hypertensive PatientsIRJET-  	  An IoT based Remote HRV Monitoring System for Hypertensive Patients
IRJET- An IoT based Remote HRV Monitoring System for Hypertensive PatientsIRJET Journal
 
IRJET- IoT based Classroom Automation System
IRJET-  	  IoT based Classroom Automation SystemIRJET-  	  IoT based Classroom Automation System
IRJET- IoT based Classroom Automation SystemIRJET Journal
 
IRJET- Design and Implementation of Integrated Smart Home System (ISHS)
IRJET- Design and Implementation of Integrated Smart Home System (ISHS)IRJET- Design and Implementation of Integrated Smart Home System (ISHS)
IRJET- Design and Implementation of Integrated Smart Home System (ISHS)IRJET Journal
 
My Final Year Project - Individual Control Home Automation System
My Final Year Project - Individual Control Home Automation SystemMy Final Year Project - Individual Control Home Automation System
My Final Year Project - Individual Control Home Automation SystemMichael Olafusi
 
IRJET- Voice Controlled Home Automation System
IRJET- Voice Controlled Home Automation SystemIRJET- Voice Controlled Home Automation System
IRJET- Voice Controlled Home Automation SystemIRJET Journal
 
Arduino Based Home Lighting Control by Android Phone
Arduino Based Home Lighting Control by Android PhoneArduino Based Home Lighting Control by Android Phone
Arduino Based Home Lighting Control by Android Phoneijtsrd
 
IRJET- Multi Plug Control using Internet of Things
IRJET- Multi Plug Control using Internet of ThingsIRJET- Multi Plug Control using Internet of Things
IRJET- Multi Plug Control using Internet of ThingsIRJET Journal
 
Smart Home Automation using Wi-Fi
Smart Home Automation using Wi-FiSmart Home Automation using Wi-Fi
Smart Home Automation using Wi-Fiijtsrd
 
final project report_full edit
final project report_full editfinal project report_full edit
final project report_full editSayam Roy
 
PROJECT REPORT ON Home automation using by Bluetooth
 PROJECT REPORT ON Home automation using by Bluetooth PROJECT REPORT ON Home automation using by Bluetooth
PROJECT REPORT ON Home automation using by BluetoothAakashkumar276
 
HOME AUTOMATION USING ZIGBEE TECHNOLOGY AND IOT
HOME AUTOMATION USING ZIGBEE TECHNOLOGY AND IOTHOME AUTOMATION USING ZIGBEE TECHNOLOGY AND IOT
HOME AUTOMATION USING ZIGBEE TECHNOLOGY AND IOTIAEME Publication
 
Bluetooth Home Automation System
Bluetooth Home Automation SystemBluetooth Home Automation System
Bluetooth Home Automation SystemAI Publications
 
Smart Home Automation
Smart Home AutomationSmart Home Automation
Smart Home AutomationMitul Lakhani
 
IRJET- Smart Home: Speech Recognition based Home Automation using IoT
IRJET-  	  Smart Home: Speech Recognition based Home Automation using IoTIRJET-  	  Smart Home: Speech Recognition based Home Automation using IoT
IRJET- Smart Home: Speech Recognition based Home Automation using IoTIRJET Journal
 
android app based home automation
android app based home automationandroid app based home automation
android app based home automationAshikur Rahman
 
Project final filewith front
Project final filewith frontProject final filewith front
Project final filewith frontPankaj Patidar
 
Home automation using_pc
Home automation using_pcHome automation using_pc
Home automation using_pcSumit Sonawane
 

What's hot (20)

IRJET - IoT based Home Automation using ATmega328 Microcontroller
IRJET -  	  IoT based Home Automation using ATmega328 MicrocontrollerIRJET -  	  IoT based Home Automation using ATmega328 Microcontroller
IRJET - IoT based Home Automation using ATmega328 Microcontroller
 
IRJET- An IoT based Remote HRV Monitoring System for Hypertensive Patients
IRJET-  	  An IoT based Remote HRV Monitoring System for Hypertensive PatientsIRJET-  	  An IoT based Remote HRV Monitoring System for Hypertensive Patients
IRJET- An IoT based Remote HRV Monitoring System for Hypertensive Patients
 
IRJET- IoT based Classroom Automation System
IRJET-  	  IoT based Classroom Automation SystemIRJET-  	  IoT based Classroom Automation System
IRJET- IoT based Classroom Automation System
 
IRJET- Design and Implementation of Integrated Smart Home System (ISHS)
IRJET- Design and Implementation of Integrated Smart Home System (ISHS)IRJET- Design and Implementation of Integrated Smart Home System (ISHS)
IRJET- Design and Implementation of Integrated Smart Home System (ISHS)
 
My Final Year Project - Individual Control Home Automation System
My Final Year Project - Individual Control Home Automation SystemMy Final Year Project - Individual Control Home Automation System
My Final Year Project - Individual Control Home Automation System
 
IRJET- Voice Controlled Home Automation System
IRJET- Voice Controlled Home Automation SystemIRJET- Voice Controlled Home Automation System
IRJET- Voice Controlled Home Automation System
 
Arduino Based Home Lighting Control by Android Phone
Arduino Based Home Lighting Control by Android PhoneArduino Based Home Lighting Control by Android Phone
Arduino Based Home Lighting Control by Android Phone
 
IRJET- Multi Plug Control using Internet of Things
IRJET- Multi Plug Control using Internet of ThingsIRJET- Multi Plug Control using Internet of Things
IRJET- Multi Plug Control using Internet of Things
 
Smart Home Automation using Wi-Fi
Smart Home Automation using Wi-FiSmart Home Automation using Wi-Fi
Smart Home Automation using Wi-Fi
 
final project report_full edit
final project report_full editfinal project report_full edit
final project report_full edit
 
PROJECT REPORT ON Home automation using by Bluetooth
 PROJECT REPORT ON Home automation using by Bluetooth PROJECT REPORT ON Home automation using by Bluetooth
PROJECT REPORT ON Home automation using by Bluetooth
 
Gujarat technological universit1
Gujarat technological universit1Gujarat technological universit1
Gujarat technological universit1
 
HOME AUTOMATION USING ZIGBEE TECHNOLOGY AND IOT
HOME AUTOMATION USING ZIGBEE TECHNOLOGY AND IOTHOME AUTOMATION USING ZIGBEE TECHNOLOGY AND IOT
HOME AUTOMATION USING ZIGBEE TECHNOLOGY AND IOT
 
Bluetooth Home Automation System
Bluetooth Home Automation SystemBluetooth Home Automation System
Bluetooth Home Automation System
 
Smart Home Automation
Smart Home AutomationSmart Home Automation
Smart Home Automation
 
IRJET- Smart Home: Speech Recognition based Home Automation using IoT
IRJET-  	  Smart Home: Speech Recognition based Home Automation using IoTIRJET-  	  Smart Home: Speech Recognition based Home Automation using IoT
IRJET- Smart Home: Speech Recognition based Home Automation using IoT
 
android app based home automation
android app based home automationandroid app based home automation
android app based home automation
 
Uvais
Uvais Uvais
Uvais
 
Project final filewith front
Project final filewith frontProject final filewith front
Project final filewith front
 
Home automation using_pc
Home automation using_pcHome automation using_pc
Home automation using_pc
 

Similar to IRJET- Voice based Elder Care System

IRJET - Home Automation for Physically Challenged and Elder People
IRJET -  	  Home Automation for Physically Challenged and Elder PeopleIRJET -  	  Home Automation for Physically Challenged and Elder People
IRJET - Home Automation for Physically Challenged and Elder PeopleIRJET Journal
 
IoT BASED ON WIRELESS HOME AUTOMATION
IoT BASED ON WIRELESS HOME AUTOMATIONIoT BASED ON WIRELESS HOME AUTOMATION
IoT BASED ON WIRELESS HOME AUTOMATIONIRJET Journal
 
Connecting Home Appliances via Bluetooth using IoT
Connecting Home Appliances via Bluetooth using IoTConnecting Home Appliances via Bluetooth using IoT
Connecting Home Appliances via Bluetooth using IoTIRJET Journal
 
A Short Review on the Perspective of Home Automation Technology
A Short Review on the Perspective of Home Automation TechnologyA Short Review on the Perspective of Home Automation Technology
A Short Review on the Perspective of Home Automation TechnologyIRJET Journal
 
IRJET- Android Based Industrial Device Management System for Physical Han...
IRJET-  	  Android Based Industrial Device Management System for Physical Han...IRJET-  	  Android Based Industrial Device Management System for Physical Han...
IRJET- Android Based Industrial Device Management System for Physical Han...IRJET Journal
 
IRJET- Android based Home Automation using Bluetooth Technology
IRJET- Android based Home Automation using Bluetooth TechnologyIRJET- Android based Home Automation using Bluetooth Technology
IRJET- Android based Home Automation using Bluetooth TechnologyIRJET Journal
 
IRJET- Android based Home Automation using Bluetooth Technology
IRJET-  	  Android based Home Automation using Bluetooth TechnologyIRJET-  	  Android based Home Automation using Bluetooth Technology
IRJET- Android based Home Automation using Bluetooth TechnologyIRJET Journal
 
IRJET- Intelligent Home Monitoring using IoT for Physically Challenged
IRJET- Intelligent Home Monitoring using IoT for Physically ChallengedIRJET- Intelligent Home Monitoring using IoT for Physically Challenged
IRJET- Intelligent Home Monitoring using IoT for Physically ChallengedIRJET Journal
 
IRJET- A Review on: Smart and Advanced Living Technology (SALT)
IRJET- A Review on: Smart and Advanced Living Technology (SALT)IRJET- A Review on: Smart and Advanced Living Technology (SALT)
IRJET- A Review on: Smart and Advanced Living Technology (SALT)IRJET Journal
 
IRJET- IoT based Industrial Level Sensor Data Acquisition & Monitoring
IRJET- IoT based Industrial Level Sensor Data Acquisition & MonitoringIRJET- IoT based Industrial Level Sensor Data Acquisition & Monitoring
IRJET- IoT based Industrial Level Sensor Data Acquisition & MonitoringIRJET Journal
 
Smart Home Automation
Smart Home AutomationSmart Home Automation
Smart Home AutomationIRJET Journal
 
IRJET- Voice Controlled Home Automation System
IRJET- Voice Controlled Home Automation SystemIRJET- Voice Controlled Home Automation System
IRJET- Voice Controlled Home Automation SystemIRJET Journal
 
IRJET- H-Box (Connecting Homes)
IRJET- H-Box (Connecting Homes)IRJET- H-Box (Connecting Homes)
IRJET- H-Box (Connecting Homes)IRJET Journal
 
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 AppliancesIRJET Journal
 
Home Automation Application with voice commands using Arduino
Home Automation Application with voice commands using ArduinoHome Automation Application with voice commands using Arduino
Home Automation Application with voice commands using ArduinoIRJET Journal
 
IRJET- Home Automation using IoT: Review
IRJET- Home Automation using IoT: ReviewIRJET- Home Automation using IoT: Review
IRJET- Home Automation using IoT: ReviewIRJET Journal
 
IRJET - Home Security System using Arduino
IRJET -  	  Home Security System using ArduinoIRJET -  	  Home Security System using Arduino
IRJET - Home Security System using ArduinoIRJET Journal
 
IRJET- Smart Energy Meter Billing, Monitoring and Controlling System
IRJET-  	  Smart Energy Meter Billing, Monitoring and Controlling SystemIRJET-  	  Smart Energy Meter Billing, Monitoring and Controlling System
IRJET- Smart Energy Meter Billing, Monitoring and Controlling SystemIRJET Journal
 
IRJET - Web-based Chatbot for Continuous Conversation using Artificial Intell...
IRJET - Web-based Chatbot for Continuous Conversation using Artificial Intell...IRJET - Web-based Chatbot for Continuous Conversation using Artificial Intell...
IRJET - Web-based Chatbot for Continuous Conversation using Artificial Intell...IRJET Journal
 
IOT Based Environmental Pollution Monitoring System
IOT Based Environmental Pollution Monitoring SystemIOT Based Environmental Pollution Monitoring System
IOT Based Environmental Pollution Monitoring SystemIRJET Journal
 

Similar to IRJET- Voice based Elder Care System (20)

IRJET - Home Automation for Physically Challenged and Elder People
IRJET -  	  Home Automation for Physically Challenged and Elder PeopleIRJET -  	  Home Automation for Physically Challenged and Elder People
IRJET - Home Automation for Physically Challenged and Elder People
 
IoT BASED ON WIRELESS HOME AUTOMATION
IoT BASED ON WIRELESS HOME AUTOMATIONIoT BASED ON WIRELESS HOME AUTOMATION
IoT BASED ON WIRELESS HOME AUTOMATION
 
Connecting Home Appliances via Bluetooth using IoT
Connecting Home Appliances via Bluetooth using IoTConnecting Home Appliances via Bluetooth using IoT
Connecting Home Appliances via Bluetooth using IoT
 
A Short Review on the Perspective of Home Automation Technology
A Short Review on the Perspective of Home Automation TechnologyA Short Review on the Perspective of Home Automation Technology
A Short Review on the Perspective of Home Automation Technology
 
IRJET- Android Based Industrial Device Management System for Physical Han...
IRJET-  	  Android Based Industrial Device Management System for Physical Han...IRJET-  	  Android Based Industrial Device Management System for Physical Han...
IRJET- Android Based Industrial Device Management System for Physical Han...
 
IRJET- Android based Home Automation using Bluetooth Technology
IRJET- Android based Home Automation using Bluetooth TechnologyIRJET- Android based Home Automation using Bluetooth Technology
IRJET- Android based Home Automation using Bluetooth Technology
 
IRJET- Android based Home Automation using Bluetooth Technology
IRJET-  	  Android based Home Automation using Bluetooth TechnologyIRJET-  	  Android based Home Automation using Bluetooth Technology
IRJET- Android based Home Automation using Bluetooth Technology
 
IRJET- Intelligent Home Monitoring using IoT for Physically Challenged
IRJET- Intelligent Home Monitoring using IoT for Physically ChallengedIRJET- Intelligent Home Monitoring using IoT for Physically Challenged
IRJET- Intelligent Home Monitoring using IoT for Physically Challenged
 
IRJET- A Review on: Smart and Advanced Living Technology (SALT)
IRJET- A Review on: Smart and Advanced Living Technology (SALT)IRJET- A Review on: Smart and Advanced Living Technology (SALT)
IRJET- A Review on: Smart and Advanced Living Technology (SALT)
 
IRJET- IoT based Industrial Level Sensor Data Acquisition & Monitoring
IRJET- IoT based Industrial Level Sensor Data Acquisition & MonitoringIRJET- IoT based Industrial Level Sensor Data Acquisition & Monitoring
IRJET- IoT based Industrial Level Sensor Data Acquisition & Monitoring
 
Smart Home Automation
Smart Home AutomationSmart Home Automation
Smart Home Automation
 
IRJET- Voice Controlled Home Automation System
IRJET- Voice Controlled Home Automation SystemIRJET- Voice Controlled Home Automation System
IRJET- Voice Controlled Home Automation System
 
IRJET- H-Box (Connecting Homes)
IRJET- H-Box (Connecting Homes)IRJET- H-Box (Connecting Homes)
IRJET- H-Box (Connecting Homes)
 
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
 
Home Automation Application with voice commands using Arduino
Home Automation Application with voice commands using ArduinoHome Automation Application with voice commands using Arduino
Home Automation Application with voice commands using Arduino
 
IRJET- Home Automation using IoT: Review
IRJET- Home Automation using IoT: ReviewIRJET- Home Automation using IoT: Review
IRJET- Home Automation using IoT: Review
 
IRJET - Home Security System using Arduino
IRJET -  	  Home Security System using ArduinoIRJET -  	  Home Security System using Arduino
IRJET - Home Security System using Arduino
 
IRJET- Smart Energy Meter Billing, Monitoring and Controlling System
IRJET-  	  Smart Energy Meter Billing, Monitoring and Controlling SystemIRJET-  	  Smart Energy Meter Billing, Monitoring and Controlling System
IRJET- Smart Energy Meter Billing, Monitoring and Controlling System
 
IRJET - Web-based Chatbot for Continuous Conversation using Artificial Intell...
IRJET - Web-based Chatbot for Continuous Conversation using Artificial Intell...IRJET - Web-based Chatbot for Continuous Conversation using Artificial Intell...
IRJET - Web-based Chatbot for Continuous Conversation using Artificial Intell...
 
IOT Based Environmental Pollution Monitoring System
IOT Based Environmental Pollution Monitoring SystemIOT Based Environmental Pollution Monitoring System
IOT Based Environmental Pollution Monitoring System
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTUREIRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsIRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASIRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProIRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemIRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignIRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAbhinavSharma374939
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).pptssuser5c9d4b1
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxDeepakSakkari2
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...
High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...
High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...Call Girls in Nagpur High Profile
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZTE
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)Suman Mia
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 

Recently uploaded (20)

College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog Converter
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptx
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...
High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...
High Profile Call Girls Nashik Megha 7001305949 Independent Escort Service Na...
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 

IRJET- Voice based Elder Care System

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 11 | Nov 2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1625 VOICE BASED ELDER CARE SYSTEM Santhakumar S1, Sanjai T2, Sakthivel M3, Sounthararajan V4, Rangarajan J5,Sivakumar C6 1,2,3,4UG Students, Dept. of ECE, Muthayammal Engineering College, Tamilnadu, India 5,6Professor, Dept. of ECE, Muthayammal Engineering College, Tamilnadu, India ----------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - The concept of home automation is gaining popularity and it helps the elder people who living alone. Many home automation systems for elder care use different technologies. In this work, a Voice Activated system is developed such that the elders can control the electrical appliances by their voice without any difficulty. Ardunio Uno, HC-05 Bluetooth module and Smart phone with voice control application are the main components of this system. To control home appliance, the elders has to just tell “turn on light”, “turn off light”, “turn on fan” and “turn off fan”towards the microphone in the voice control app loaded in the smart phone. Key Words: Ardunio, Bluetooth, Elder Care, Voice Control App, Smart Phone. 1. INTRODUCTION Elder care is showing special care to senior citizens regarding their daily needs. Due to aging their physical health begins to fail and they found it difficult to maintain their day to day activities [1]. Even to switch on and off the electrical appliances, they have to get down from their bed or move to the switch board. In case of emergency, it is difficult for them to shout loud for any assistance. In such instants, this type of voice based system will help them a lot. The issue of population aging seems more and moreserious. Health care and safety monitoring for the elderly is becoming an urgent issue to be solved. The concept ofhome automation is gaining popularity and it helps the elder people who living alone [2,3]. With the help of this type of system, it is possible for them to control the basic electrical appliances like lights, fans and alarm without the help of others. Considering these aspect, a prototype model was developed in this work. Many home automation systems for elder caring using different technologies like Bluetooth Controlled, Internet Controlled, RF Controlled and Remote Controlled (IR Remote) are available [4,5]. Each type has its own advantages and disadvantages. In this work, a Voice Activated system is developed such that the elders can control the electrical appliances by their voice without any difficulty. 2. SYSTEM DESIGN Figure 1 shows the block diagram of the proposed system. The proposed system consists of three main components: Ardunio UNO, HC-05 Bluetooth module and Smart phone with voice control application. As shown in the block diagram, the Bluetooth module is interfaced to the Arduino board to provide control commends as input. The electrical appliances to be operated or controlled by the elder people are connected to the output ports of the Adriano board. Fig -1: Block diagram of the system The functional details of the component used are given below. Bluetooth HC-05: Bluetooth technology is used to have communication between the smart phone and the Arduino board. For this purpose Bluetooth module HC – 05 is used in this work. This module can be interfaced using UART protocol with a widerangeofprogrammablebaudrates. This module can be configured as either master or slave. Figure2 shows the HC – 05 Bluetooth Module used in this work. In this module, pins are available for VCC (5V), GND, TXand RX. Fig -2: Bluetooth Hc-05 module
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 11 | Nov 2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1626 Smart phone with BT Voice Control application: This app is developed by SimpleLabsIN for voice based Arduino projects. This Android App will use the phone’s voice recognition feature and will convert the voice commands to text and transfer the string via Bluetooth. This voice control application has to be installed in the smart phone which is used by the elder people. Also, the voice recognition feature has to be enabled on the phone The home screen of theappis shown in the figure 3. Fig -3: BT Voice Control App Arduino Uno: Arduino Uno is amicrocontrollerboardbased on the ATmega328P. It has 14 digital input/output pins, 6 analog inputs, a 16 MHz quartz crystal, a USB connection, a power jack. It contains everything needed to support the microcontroller; simply connect it to a computer with a USB cable or power it with a AC-to-DC adapter. The Arduino Uno comes preprogrammed with a boot loader that allows uploading new code to it without the use of an external hardware programmer. Each of the 14 digital pins on the Uno can be used as an input or output. 3. WORKING PRINCIPLE All the connections are made as per the block diagram. Bluetooth uses UART protocol. Therefore, RX and TX pins of the Arduino board are used for receiving and transmitting purpose. In this work Software Serial library is used to define Pin 2 as RX and Pin 3 TX. Next, the paring between the Phone’s Bluetooth to the HC – 05 Bluetooth Module is done. Choose theoption“ConnectRobot”andselecttheappropriate Bluetooth Device to connect the smart phone with the Bluetooth module. After making the necessary connections,switchonthepower supply and smart phone. Now the system is ready to work. Now, the elders have to just pressthemicrophoneicononthe app and start giving voice commands to switch“ON”or“OFF” the appliances they need to control. The prototype of working model is shown in the figure 4 and figure 5. Fig -4: Front view of prototype system Fig -5: Top view of prototype system For example, if the elders say “turn on light”, the app will recognize the command and transfers it to the Bluetooth Module. Then the light (LED) connected to the output of the Arduino is switched ON. The programs are so written in the Arduino, such that it will enable the pin in which the light (LED) is connected. Also, the command gets displayedonthe screen for their reference. 4. SOFTWARE DESIGN For controlling each appliance, some predefined strings are used in the program. When the string “turn on light” is detected by the app, it will send the string as “*turn on light#”. That is, the information received by the bluetooth module is in the format of “*Message#”. To indicate the beginning and end of the message, the srings ‘*’ and ‘#’ are used. The received message is comparedwiththepredefined strings. If the message matches with any of them, then corresponding output pin of Arduino board is activated or enabled to switch ON or switch OFF the desired appliance. To control three home appliance, the following three commands are used in this system : “turn on buzzer”, “turn off buzzer”, “turn on light”, “turn off light”, “turn on fan”, “turn off fan”, “turn on all” and “turn off all”.
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 11 | Nov 2018 www.irjet.net p-ISSN: 2395-0072 © 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 1627 5. CONCLUSION In this work a voice based elder care system is designedand a prototype model is developed. The working of proto type model is found satisfactory. If required depending on the demands or needs of the elder, additional appliances can be interfaced to the existing system without much difficulty. REFERENCES [1] Aqeel-ur-Rehman , Royda Arif and Hira Khursheed, “Voice Controlled Home Automation System for the Elderly or Disabled People”, Journal of Applied Environmental and Biological Sciences,Vol. 4(8S),2014, pp. 55-64. [2] Kai Guan, Minggang Shao, and Shuicai Wu, “A Remote Health Monitoring System for the Elderly Based on Smart Home Gateway”, Journal of Healthcare Engineering, Volume 2017, Article ID 5843504, 9 pages, doi.org/10.1155/2017/5843504 [3] Morris ME, Adair B, Miller K, Ozanne E, Hansen R, et al., (2013) “Smart-Home Technologies to Assist Older People to Live Well at Home”, Aging Sci, Vol. 1(1): 101, 2013, doi: 10.4172/2329-8847.1000101 [4] Pinto, Sandro & Cabral, Jorge & Gomes, T. (2017). “We- Care: An IoT-based Health Care system for Elderly People”, Proceedingof IEEEInternational Conferenceon Industrial Technology, 2017, doi. 10.1109/ICIT.2017.7915565. [5] Martin S, Kelly G, Kernohan WG, McCreight B, Nugent C, “Smart home technologies for health and social care support”, Cochrane Database Syst Rev, 2008, doi: 10.1002/14651858.CD006412.pub2. AUTHORS S. Santhakumar is currently doing his Second year UG course in ECE department of Muthayammal Engineering College, Rasipuram, Tamil Nadu. His area of interest is Embedded Systems. T. Sanjai is currently doing his Second year UG course in ECE department of Muthayammal Engineering College, Rasipuram, Tamil Nadu. His area of interest is Embedded Systems. M. Sakthivel is currently doing his Second year UG course in ECE department of Muthayammal Engineering College, Rasipuram, Tamil Nadu. His area of interest is Embedded Systems. V. Sounthararajaniscurrentlydoinghis Second year UG course in ECE department of Muthayammal Engineering College, Rasipuram, Tamil Nadu. His area of interest is Embedded Systems. Dr.J. Rangarajaniscurrentlyworkingas Professor in ECE department of Muthayammal Engineering College, Rasipuram. His area of interest includes Mobile AdHoc Networks, Sensor Networks, Embedded System and Antenna Design. Mr. C. Sivakumar is currently working as Associate Professor in ECE department of Muthayammal Engineering College, Rasipuram. His area of interest includes VLSI, Sensor Networks and Embedded System. thor Photo Photo