SlideShare a Scribd company logo
1 of 5
Download to read offline
http://www.iaeme.com/IJCET/index.asp 1 editor@iaeme.com
International Journal of Computer Engineering & Technology (IJCET)
Volume 8, Issue 2, March-April 2017, pp. 01–05, Article ID: IJCET_08_02_001
Available online at
http://www.iaeme.com/IJCET/issues.asp?JType=IJCET&VType=8&IType=2
Journal Impact Factor (2016): 9.3590(Calculated by GISI) www.jifactor.com
ISSN Print: 0976-6367 and ISSN Online: 0976–6375
© IAEME Publication
FLOOD MONITORING AND ALERTING
SYSTEM
S. Jana Priya, S. Akshaya, E. Aruna, J. Arokiya Mary Julie
Department of Computer Science and Engineering,
Saranathan College of Engineering, Tiruchirappalli, TamilNadu, India
V. Ranjani
Assistant Professor, Department of Computer Science and Engineering,
Saranathan College of Engineering, Tiruchirappalli, TamilNadu, India
ABSTRACT
Flood is one of the natural disasters which cannot be avoided totally. Every year,
death rate due to flood increases because of absence of early warning. To solve this
problem, this paper demonstrates the idea and implementation of a Flood Monitoring
and Alerting system using Internet of Things (IOT) technology. This system comprises
of three parts. The first part measures the height of the water using ultrasonic distance
measuring sensor. The second part is sending the height information to web page
using the Ethernet shield. The third part is making call to residences to alert them
about flood through voice message. The call is made through the most popular mobile
standard Global System for Mobile Communication (GSM) and ARP33A3 is used to
play the recorded voice message.
Key words: Arduino Uno, Ethernet shield, GSM module, ARP33A3, voice call.
Cite this Article: S. Jana Priya, S. Akshaya, E. Aruna, J. Arokiya Mary Julie and
V. Ranjani, Flood Monitoring and Alerting System. International Journal of
Computer Engineering & Technology, 8(2), 2017, pp. 01–05.
http://www.iaeme.com/IJCET/issues.asp?JType=IJCET&VType=8&IType=2
1. INTRODUCTION
The Internet of Things builds on three major technology layers: Hardware (including chips
and sensors), Communication (including mostly some form of wireless network), and
Software (including data storage, analytics, and front end applications). IoT describes a
system where items in the physical world, and sensors within or attached to these items, are
connected to the Internet via wireless and wired Internet connections. The physical objects
that are being connected will possess one or more sensors. Each sensor will monitor a specific
condition such as location, vibration, motion and temperature. In IoT, these sensors will
connect to each other and to systems that can understand or present information from the
S. Jana Priya, S. Akshaya, E. Aruna, J. Arokiya Mary Julie and V. Ranjani
http://www.iaeme.com/IJCET/index.asp 2 editor@iaeme.com
sensor’s data feeds. These sensors will provide new information to a company’s systems and
to people.
2. BACKGROUND
In developed country like US, Japan etc. the flooding problem is minimized significantly and
do not affect much due to availability of emergency system. But the developing countries like
India, Brazil etc. is suffering a lot during flood.
Every year number of deaths due to flooding keeps increasing in different part of our
country. Two years ago the flood occurred in Chennai, the capital of Tamilnadu resulted
insignificant loss of life and property. Whenever, flooding happens living area near the
riverbank and downstream area are affected severely than others. They need to be alerted
much earlier to have extra time to evacuate immediately. During Chennai flood in 2015, fake
news were spread for instance, A false message which said two lakes had breached and
Chennai had been cut off from rest of the districts, spread panic among commuters, especially
those that were stranded for hours together on the arterial Mount Road on Monday night. To
avoid this situation we need authorized warning system. Our system provides such
information so that people can avoid false news .And the system makes use of voice call as it
is helpful for people who do not know how to read the text message.
3. PROPOSED MODEL
FLOOD MONITORING AND ALERTING SYSTEM alerts the user nearby the river area
through voice call. An Arduino Uno microcontroller is used to control the whole system. It is
interfaced with GSM modem, ultrasonic sensor, Ethernet shield [1]. The distance between the
ultrasonic sensor and water is measured and the height level of the water is calculated [2]. The
calculated height value is updated in the web page. The water level calculated would then be
compared with the set threshold and if the current level is more than the set threshold value,
the microcontroller would enable voice call to be sent to residence to alert them via the GSM
module. We are using ARP33A3 device to record voice and it is interfaced with the GSM
modem so that the recorded voice is played when the call is attended.
Figure 1 Block diagram of proposed model
Arduino uno
Ethernet shield
Ultrasonic
sensor
Database
GSM SIM 900A
APR33A3
Flood Monitoring and Alerting System
http://www.iaeme.com/IJCET/index.asp 3 editor@iaeme.com
4. SYSTEM OVERVIEW
4.1. Flow Chart
Figure 2 Flow Chart
4.2. Ultrasonic Sensor
Figure 3 Ultrasonic Sensor
S. Jana Priya, S. Akshaya, E. Aruna, J. Arokiya Mary Julie and V. Ranjani
http://www.iaeme.com/IJCET/index.asp 4 editor@iaeme.com
Ultrasonic sensor HC SR04 can measure the distance from 2cm to 4m with accuracy of
range of 2mm.It emits ultrasonic sound at 14000/4 Hz which will travel in air. If there is an
object, sound is bounced back to sonar. Using receiving time of sound and speed of sound, we
can calculate the distance of object from sonar.
Speed of sound =340m/s=0.034 cm/micro sec. or 29 micro sec/cm
Time = Distance/speed.
Since the sound waves travel froth and bounce back from object and so time received is
twice the actual time. Thus,
Distance in cm=time*0.034/2 or Distance in cm=time/29/2
Based on distance, height of water is calculated.
4.3. Related Work
The static web page is created using HTML and CSS which is served from the SD card [5].
The Ethernet shield brings the internet connectivity to the arduino shield and make it to act as
a server [6][10]. The Ethernet shield is connected to the system with internet connection with
the help of RJ45 cable. This webpage can be accessed from any system that is connected in
the same LAN as that of the Ethernet shield. A static ip address is allocated to Ethernet shield.
Whenever the user wants to access the page the user must enter the ip address of the Ethernet
shield in the URL bar. The static webpage content will be fetched from the sd card and the
dynamic content that is the water level information will be fetched from the database and
displayed in the webpage.
4.4. Making Call
Figure 4 GSM sim900A
When the water level reaches the threshold level, call must be made to the residence. To
make call using GSM module AT+ATD command is used when the call is attended the
recorded voice message should be played [3][4]. The APR33A3is interfaced with gsm module
[9]. This APR33A3 operates in two modes. The first mode is record mode in which the audio
can be recorded into any of the seven channels. The second mode is playback mode in which
the recorded audio can be played from the channel when the call is attended.
Flood Monitoring and Alerting System
http://www.iaeme.com/IJCET/index.asp 5 editor@iaeme.com
5. PROCESSING STEPS
6. CONCLUSION
This project aims at monitoring the water level in one particular water body. In future it may
be enhanced to monitor multiple locations at the same time and the web page must be able to
display the information based on the selection done by the authority.
REFERENCES
[1] Sheikh Azid, Bibhya Sharma, Krishna Raghuwaiya, Abinendra Chand, Sumeet Prasad,
SMS based flood monitoring and early warning system, ARPN Journal of Engineering
and Applied Science, 10(15) 2015.
[2] Abubaker Rahmtalla, Abdalla Mohamed, Wang Guang Wei, Real Time Wireless Flood
Monitoring System using Ultrasonic waves, International Journal of Science and
Research (IJSR) ,3(8) 2014.
[3] http://www.circuitstoday.com/interface-gsm-module-with-arduino
[4] http://www.edaboard.com/thread2272720.html
[5] https://www.arduino.cc/en/Reference/SDCardNotes
[6] http://www.engineerathome.com/elektronica/buildanethernetwebinterface for arduino/35
[7] http://www.robomart.com/blog/working-of-hc-sr04-ultrasonic-sensor-with-arduino-uno
[8] http://howtomechatronics.com/tutorials/arduino/ultrasonic-sensor-with-arduino-uno.
[9] http://www.raviyp.com/embedded/157-use-apr9600-apr33a3-with-sim300-to-play-audio-
during-call
[10] http://startingelectronics.org/tutorials/arduino/ethernet-shield-web-server-tutorial
[11] Karna Patel, Mrudang Patel and Nirav Oza, Wireless Automation and Machine Learning
of a Rolling-Mill Using Arduino and Android. International Journal of Mechanical
Engineering and Technology, 7(6), 2016, pp. 09–21.
[12] Manish M. Patil and Prof. Chhaya S. Khandelwal, Implementation of Patient Monitoring
System Using GSM Technology. International Journal of Electronics and
Communication Engineering & Technology (IJECET).4(1), 2013, pp. 18–24
Sensing Unit: HC SR04
Processing Unit: Arduino Uno
Micro controller
Communication Unit: GSM Sim
900A , ARP33A3

More Related Content

What's hot

Iot based smart irrigation system
Iot based smart irrigation systemIot based smart irrigation system
Iot based smart irrigation systemKrishna Vala
 
AUTOMATIC ACCIDENT DETECTION AND ALERT SYSTEM
AUTOMATIC ACCIDENT DETECTION AND ALERT SYSTEMAUTOMATIC ACCIDENT DETECTION AND ALERT SYSTEM
AUTOMATIC ACCIDENT DETECTION AND ALERT SYSTEMAnamika Vinod
 
Women safety device with gps tracking and alerts
Women safety device with gps tracking  and alertsWomen safety device with gps tracking  and alerts
Women safety device with gps tracking and alertsPraween Lakra
 
Vehicle tracking Using GPS,GSM & ARM7
Vehicle tracking Using GPS,GSM & ARM7Vehicle tracking Using GPS,GSM & ARM7
Vehicle tracking Using GPS,GSM & ARM7Ashutosh Upadhayay
 
Design and Construction of Speed Detection System for Vehicles
Design and Construction of Speed Detection System for VehiclesDesign and Construction of Speed Detection System for Vehicles
Design and Construction of Speed Detection System for Vehiclesijtsrd
 
1. Introduction to Embedded Systems & IoT
1. Introduction to Embedded Systems & IoT1. Introduction to Embedded Systems & IoT
1. Introduction to Embedded Systems & IoTIEEE MIU SB
 
Air and sound pollution monitoring system
Air and sound pollution monitoring systemAir and sound pollution monitoring system
Air and sound pollution monitoring systemAbhinavRajput49
 
Movement Sensed Automatic Door Opening System
Movement Sensed Automatic Door Opening SystemMovement Sensed Automatic Door Opening System
Movement Sensed Automatic Door Opening SystemEdgefxkits & Solutions
 
ACCIDENT DETECTION AND VEHICLE TRACKING USING GPS,GSM AND MEMS
ACCIDENT DETECTION AND VEHICLE TRACKING USING GPS,GSM AND MEMSACCIDENT DETECTION AND VEHICLE TRACKING USING GPS,GSM AND MEMS
ACCIDENT DETECTION AND VEHICLE TRACKING USING GPS,GSM AND MEMSKrishna Moparthi
 
Water quality monitoring in a smart city based on IOT
Water quality monitoring in a smart city based on IOTWater quality monitoring in a smart city based on IOT
Water quality monitoring in a smart city based on IOTMayur Rahangdale
 
IoT Based Disaster Detection and Early Warning Device By Shweta Gaikwad
IoT Based Disaster Detection and Early Warning Device By Shweta GaikwadIoT Based Disaster Detection and Early Warning Device By Shweta Gaikwad
IoT Based Disaster Detection and Early Warning Device By Shweta GaikwadShweta Gaikwad
 
IOT Based Patient Health Monitoring System Using WIFI
IOT Based Patient Health Monitoring System Using WIFIIOT Based Patient Health Monitoring System Using WIFI
IOT Based Patient Health Monitoring System Using WIFIijtsrd
 
EMBEDDED WEB TECHNOLOGY
EMBEDDED WEB TECHNOLOGYEMBEDDED WEB TECHNOLOGY
EMBEDDED WEB TECHNOLOGYVinay Kumar
 
IoT Enabling Technologies
IoT Enabling TechnologiesIoT Enabling Technologies
IoT Enabling TechnologiesPrakash Honnur
 
Speed control of vehicle
Speed control of vehicleSpeed control of vehicle
Speed control of vehicleAmanVerma443
 
PATIENT MONITORING SYSTEM USING IOT
PATIENT MONITORING SYSTEM USING IOTPATIENT MONITORING SYSTEM USING IOT
PATIENT MONITORING SYSTEM USING IOTAM Publications
 
IoT Based Garbage Monitoring System ppt
IoT Based Garbage Monitoring System pptIoT Based Garbage Monitoring System ppt
IoT Based Garbage Monitoring System pptRanjan Gupta
 

What's hot (20)

Iot based smart irrigation system
Iot based smart irrigation systemIot based smart irrigation system
Iot based smart irrigation system
 
AUTOMATIC ACCIDENT DETECTION AND ALERT SYSTEM
AUTOMATIC ACCIDENT DETECTION AND ALERT SYSTEMAUTOMATIC ACCIDENT DETECTION AND ALERT SYSTEM
AUTOMATIC ACCIDENT DETECTION AND ALERT SYSTEM
 
Women safety device with gps tracking and alerts
Women safety device with gps tracking  and alertsWomen safety device with gps tracking  and alerts
Women safety device with gps tracking and alerts
 
IOT BASED SMART AGRICULTURE
IOT BASED SMART AGRICULTUREIOT BASED SMART AGRICULTURE
IOT BASED SMART AGRICULTURE
 
Vehicle tracking Using GPS,GSM & ARM7
Vehicle tracking Using GPS,GSM & ARM7Vehicle tracking Using GPS,GSM & ARM7
Vehicle tracking Using GPS,GSM & ARM7
 
Design and Construction of Speed Detection System for Vehicles
Design and Construction of Speed Detection System for VehiclesDesign and Construction of Speed Detection System for Vehicles
Design and Construction of Speed Detection System for Vehicles
 
1. Introduction to Embedded Systems & IoT
1. Introduction to Embedded Systems & IoT1. Introduction to Embedded Systems & IoT
1. Introduction to Embedded Systems & IoT
 
Air and sound pollution monitoring system
Air and sound pollution monitoring systemAir and sound pollution monitoring system
Air and sound pollution monitoring system
 
Movement Sensed Automatic Door Opening System
Movement Sensed Automatic Door Opening SystemMovement Sensed Automatic Door Opening System
Movement Sensed Automatic Door Opening System
 
ACCIDENT DETECTION AND VEHICLE TRACKING USING GPS,GSM AND MEMS
ACCIDENT DETECTION AND VEHICLE TRACKING USING GPS,GSM AND MEMSACCIDENT DETECTION AND VEHICLE TRACKING USING GPS,GSM AND MEMS
ACCIDENT DETECTION AND VEHICLE TRACKING USING GPS,GSM AND MEMS
 
Water quality monitoring in a smart city based on IOT
Water quality monitoring in a smart city based on IOTWater quality monitoring in a smart city based on IOT
Water quality monitoring in a smart city based on IOT
 
IoT Based Disaster Detection and Early Warning Device By Shweta Gaikwad
IoT Based Disaster Detection and Early Warning Device By Shweta GaikwadIoT Based Disaster Detection and Early Warning Device By Shweta Gaikwad
IoT Based Disaster Detection and Early Warning Device By Shweta Gaikwad
 
Smart Irrigation System
Smart Irrigation SystemSmart Irrigation System
Smart Irrigation System
 
IOT Based Patient Health Monitoring System Using WIFI
IOT Based Patient Health Monitoring System Using WIFIIOT Based Patient Health Monitoring System Using WIFI
IOT Based Patient Health Monitoring System Using WIFI
 
Iot based home automation
Iot based home automationIot based home automation
Iot based home automation
 
EMBEDDED WEB TECHNOLOGY
EMBEDDED WEB TECHNOLOGYEMBEDDED WEB TECHNOLOGY
EMBEDDED WEB TECHNOLOGY
 
IoT Enabling Technologies
IoT Enabling TechnologiesIoT Enabling Technologies
IoT Enabling Technologies
 
Speed control of vehicle
Speed control of vehicleSpeed control of vehicle
Speed control of vehicle
 
PATIENT MONITORING SYSTEM USING IOT
PATIENT MONITORING SYSTEM USING IOTPATIENT MONITORING SYSTEM USING IOT
PATIENT MONITORING SYSTEM USING IOT
 
IoT Based Garbage Monitoring System ppt
IoT Based Garbage Monitoring System pptIoT Based Garbage Monitoring System ppt
IoT Based Garbage Monitoring System ppt
 

Viewers also liked

THE PRESENT SCENARIO OF THE PUBLIC LIBRARIES IN THE THRISSUR DISTRICT OF KERALA
THE PRESENT SCENARIO OF THE PUBLIC LIBRARIES IN THE THRISSUR DISTRICT OF KERALA THE PRESENT SCENARIO OF THE PUBLIC LIBRARIES IN THE THRISSUR DISTRICT OF KERALA
THE PRESENT SCENARIO OF THE PUBLIC LIBRARIES IN THE THRISSUR DISTRICT OF KERALA IAEME Publication
 
PRODUCT REPUTATION AND GLOBAL RATING IN E-COMMERCE
PRODUCT REPUTATION AND GLOBAL RATING IN E-COMMERCE PRODUCT REPUTATION AND GLOBAL RATING IN E-COMMERCE
PRODUCT REPUTATION AND GLOBAL RATING IN E-COMMERCE IAEME Publication
 
Talketa diapositivas
Talketa diapositivasTalketa diapositivas
Talketa diapositivasbumesar
 
Business presentation coinspace part 1 ver 1.0 03 12 2016
Business presentation coinspace part 1 ver 1.0 03 12 2016Business presentation coinspace part 1 ver 1.0 03 12 2016
Business presentation coinspace part 1 ver 1.0 03 12 2016ranjith kumar
 
Maria gomez
Maria gomezMaria gomez
Maria gomezvane_7
 
Design and further development of an evidence-based framework for technology-...
Design and further development of an evidence-based framework for technology-...Design and further development of an evidence-based framework for technology-...
Design and further development of an evidence-based framework for technology-...College Development Network
 
Pravilnik o-stalnom-strucnom-usavanju-15
Pravilnik o-stalnom-strucnom-usavanju-15Pravilnik o-stalnom-strucnom-usavanju-15
Pravilnik o-stalnom-strucnom-usavanju-15Suzana Miljković
 
Romeo y julieta 2°secc.
Romeo y julieta 2°secc.Romeo y julieta 2°secc.
Romeo y julieta 2°secc.Techy OM
 
DESIGN OF A PROSTHETIC ARM USING FLEX SENSOR
DESIGN OF A PROSTHETIC ARM USING FLEX SENSOR DESIGN OF A PROSTHETIC ARM USING FLEX SENSOR
DESIGN OF A PROSTHETIC ARM USING FLEX SENSOR IAEME Publication
 
USER STUDY FOR EXPLORATION OF USERS NEEDS
USER STUDY FOR EXPLORATION OF USERS NEEDS USER STUDY FOR EXPLORATION OF USERS NEEDS
USER STUDY FOR EXPLORATION OF USERS NEEDS IAEME Publication
 
A REVIEW ON LOAD BALANCING IN CLOUD USING ENHANCED GENETIC ALGORITHM
A REVIEW ON LOAD BALANCING IN CLOUD USING ENHANCED GENETIC ALGORITHM A REVIEW ON LOAD BALANCING IN CLOUD USING ENHANCED GENETIC ALGORITHM
A REVIEW ON LOAD BALANCING IN CLOUD USING ENHANCED GENETIC ALGORITHM IAEME Publication
 
DIGITAL LIBRARY SERVICES IN THE DIGITAL AGE
DIGITAL LIBRARY SERVICES IN THE DIGITAL AGE DIGITAL LIBRARY SERVICES IN THE DIGITAL AGE
DIGITAL LIBRARY SERVICES IN THE DIGITAL AGE IAEME Publication
 
INFLUENCE OF SOCIAL NETWORKING SITES ON LIBRARY AND INFORMATION CENTERS
INFLUENCE OF SOCIAL NETWORKING SITES ON LIBRARY AND INFORMATION CENTERS INFLUENCE OF SOCIAL NETWORKING SITES ON LIBRARY AND INFORMATION CENTERS
INFLUENCE OF SOCIAL NETWORKING SITES ON LIBRARY AND INFORMATION CENTERS IAEME Publication
 
ANALYSIS OF FREE WEBSITES SUPPORTING THE LEARNING OF SHAKESPEAREAN LITERATURE
ANALYSIS OF FREE WEBSITES SUPPORTING THE LEARNING OF SHAKESPEAREAN LITERATURE ANALYSIS OF FREE WEBSITES SUPPORTING THE LEARNING OF SHAKESPEAREAN LITERATURE
ANALYSIS OF FREE WEBSITES SUPPORTING THE LEARNING OF SHAKESPEAREAN LITERATURE IAEME Publication
 
NOMENCLATURE CHANGE FOR LIBRARY AND INFORMATION SCIENCE (LIS) SCHOOLS IN NIGE...
NOMENCLATURE CHANGE FOR LIBRARY AND INFORMATION SCIENCE (LIS) SCHOOLS IN NIGE...NOMENCLATURE CHANGE FOR LIBRARY AND INFORMATION SCIENCE (LIS) SCHOOLS IN NIGE...
NOMENCLATURE CHANGE FOR LIBRARY AND INFORMATION SCIENCE (LIS) SCHOOLS IN NIGE...IAEME Publication
 
DIGITAL LIBRARIES: WHITHER THOU GOEST?
DIGITAL LIBRARIES: WHITHER THOU GOEST? DIGITAL LIBRARIES: WHITHER THOU GOEST?
DIGITAL LIBRARIES: WHITHER THOU GOEST? IAEME Publication
 
GENERIC CODE CLONING METHOD FOR DETECTION OF CLONE CODE IN SOFTWARE DEVELOPMENT
GENERIC CODE CLONING METHOD FOR DETECTION OF CLONE CODE IN SOFTWARE DEVELOPMENT GENERIC CODE CLONING METHOD FOR DETECTION OF CLONE CODE IN SOFTWARE DEVELOPMENT
GENERIC CODE CLONING METHOD FOR DETECTION OF CLONE CODE IN SOFTWARE DEVELOPMENT IAEME Publication
 

Viewers also liked (20)

THE PRESENT SCENARIO OF THE PUBLIC LIBRARIES IN THE THRISSUR DISTRICT OF KERALA
THE PRESENT SCENARIO OF THE PUBLIC LIBRARIES IN THE THRISSUR DISTRICT OF KERALA THE PRESENT SCENARIO OF THE PUBLIC LIBRARIES IN THE THRISSUR DISTRICT OF KERALA
THE PRESENT SCENARIO OF THE PUBLIC LIBRARIES IN THE THRISSUR DISTRICT OF KERALA
 
PRODUCT REPUTATION AND GLOBAL RATING IN E-COMMERCE
PRODUCT REPUTATION AND GLOBAL RATING IN E-COMMERCE PRODUCT REPUTATION AND GLOBAL RATING IN E-COMMERCE
PRODUCT REPUTATION AND GLOBAL RATING IN E-COMMERCE
 
Talketa diapositivas
Talketa diapositivasTalketa diapositivas
Talketa diapositivas
 
Business presentation coinspace part 1 ver 1.0 03 12 2016
Business presentation coinspace part 1 ver 1.0 03 12 2016Business presentation coinspace part 1 ver 1.0 03 12 2016
Business presentation coinspace part 1 ver 1.0 03 12 2016
 
Kite16abril
Kite16abrilKite16abril
Kite16abril
 
Maria gomez
Maria gomezMaria gomez
Maria gomez
 
Twitter
TwitterTwitter
Twitter
 
Biografia ramon llull ci
Biografia ramon llull ciBiografia ramon llull ci
Biografia ramon llull ci
 
Design and further development of an evidence-based framework for technology-...
Design and further development of an evidence-based framework for technology-...Design and further development of an evidence-based framework for technology-...
Design and further development of an evidence-based framework for technology-...
 
Pravilnik o-stalnom-strucnom-usavanju-15
Pravilnik o-stalnom-strucnom-usavanju-15Pravilnik o-stalnom-strucnom-usavanju-15
Pravilnik o-stalnom-strucnom-usavanju-15
 
Romeo y julieta 2°secc.
Romeo y julieta 2°secc.Romeo y julieta 2°secc.
Romeo y julieta 2°secc.
 
DESIGN OF A PROSTHETIC ARM USING FLEX SENSOR
DESIGN OF A PROSTHETIC ARM USING FLEX SENSOR DESIGN OF A PROSTHETIC ARM USING FLEX SENSOR
DESIGN OF A PROSTHETIC ARM USING FLEX SENSOR
 
USER STUDY FOR EXPLORATION OF USERS NEEDS
USER STUDY FOR EXPLORATION OF USERS NEEDS USER STUDY FOR EXPLORATION OF USERS NEEDS
USER STUDY FOR EXPLORATION OF USERS NEEDS
 
A REVIEW ON LOAD BALANCING IN CLOUD USING ENHANCED GENETIC ALGORITHM
A REVIEW ON LOAD BALANCING IN CLOUD USING ENHANCED GENETIC ALGORITHM A REVIEW ON LOAD BALANCING IN CLOUD USING ENHANCED GENETIC ALGORITHM
A REVIEW ON LOAD BALANCING IN CLOUD USING ENHANCED GENETIC ALGORITHM
 
DIGITAL LIBRARY SERVICES IN THE DIGITAL AGE
DIGITAL LIBRARY SERVICES IN THE DIGITAL AGE DIGITAL LIBRARY SERVICES IN THE DIGITAL AGE
DIGITAL LIBRARY SERVICES IN THE DIGITAL AGE
 
INFLUENCE OF SOCIAL NETWORKING SITES ON LIBRARY AND INFORMATION CENTERS
INFLUENCE OF SOCIAL NETWORKING SITES ON LIBRARY AND INFORMATION CENTERS INFLUENCE OF SOCIAL NETWORKING SITES ON LIBRARY AND INFORMATION CENTERS
INFLUENCE OF SOCIAL NETWORKING SITES ON LIBRARY AND INFORMATION CENTERS
 
ANALYSIS OF FREE WEBSITES SUPPORTING THE LEARNING OF SHAKESPEAREAN LITERATURE
ANALYSIS OF FREE WEBSITES SUPPORTING THE LEARNING OF SHAKESPEAREAN LITERATURE ANALYSIS OF FREE WEBSITES SUPPORTING THE LEARNING OF SHAKESPEAREAN LITERATURE
ANALYSIS OF FREE WEBSITES SUPPORTING THE LEARNING OF SHAKESPEAREAN LITERATURE
 
NOMENCLATURE CHANGE FOR LIBRARY AND INFORMATION SCIENCE (LIS) SCHOOLS IN NIGE...
NOMENCLATURE CHANGE FOR LIBRARY AND INFORMATION SCIENCE (LIS) SCHOOLS IN NIGE...NOMENCLATURE CHANGE FOR LIBRARY AND INFORMATION SCIENCE (LIS) SCHOOLS IN NIGE...
NOMENCLATURE CHANGE FOR LIBRARY AND INFORMATION SCIENCE (LIS) SCHOOLS IN NIGE...
 
DIGITAL LIBRARIES: WHITHER THOU GOEST?
DIGITAL LIBRARIES: WHITHER THOU GOEST? DIGITAL LIBRARIES: WHITHER THOU GOEST?
DIGITAL LIBRARIES: WHITHER THOU GOEST?
 
GENERIC CODE CLONING METHOD FOR DETECTION OF CLONE CODE IN SOFTWARE DEVELOPMENT
GENERIC CODE CLONING METHOD FOR DETECTION OF CLONE CODE IN SOFTWARE DEVELOPMENT GENERIC CODE CLONING METHOD FOR DETECTION OF CLONE CODE IN SOFTWARE DEVELOPMENT
GENERIC CODE CLONING METHOD FOR DETECTION OF CLONE CODE IN SOFTWARE DEVELOPMENT
 

Similar to Flood Monitoring and Alerting System Using IoT

Flood detection using_iot_ijariie7746
Flood detection using_iot_ijariie7746Flood detection using_iot_ijariie7746
Flood detection using_iot_ijariie7746Rudi Hernowo
 
IRJET- Emergency Navigation System using Mobile Computing
IRJET-  	  Emergency Navigation System using Mobile ComputingIRJET-  	  Emergency Navigation System using Mobile Computing
IRJET- Emergency Navigation System using Mobile ComputingIRJET Journal
 
IRJET- Smart Dustbin
IRJET-  	  Smart DustbinIRJET-  	  Smart Dustbin
IRJET- Smart DustbinIRJET Journal
 
IRJET- Pollution Monitoring and Controlling System using Internet of Thin...
IRJET-  	  Pollution Monitoring and Controlling System using Internet of Thin...IRJET-  	  Pollution Monitoring and Controlling System using Internet of Thin...
IRJET- Pollution Monitoring and Controlling System using Internet of Thin...IRJET Journal
 
IRJET - Advanced Flood Level Monitoring and Alerting System
IRJET -  	  Advanced Flood Level Monitoring and Alerting SystemIRJET -  	  Advanced Flood Level Monitoring and Alerting System
IRJET - Advanced Flood Level Monitoring and Alerting SystemIRJET Journal
 
IRJET- IOT Based Air and Sound Pollution Monitoring System
IRJET-  	  IOT Based Air and Sound Pollution Monitoring SystemIRJET-  	  IOT Based Air and Sound Pollution Monitoring System
IRJET- IOT Based Air and Sound Pollution Monitoring SystemIRJET Journal
 
IRJET- Integrated Automatic Flood Warning and Alert System using IoT
IRJET-  	  Integrated Automatic Flood Warning and Alert System using IoTIRJET-  	  Integrated Automatic Flood Warning and Alert System using IoT
IRJET- Integrated Automatic Flood Warning and Alert System using IoTIRJET Journal
 
Bridge monitoring and alert generation system using iot
Bridge monitoring and alert generation system using iotBridge monitoring and alert generation system using iot
Bridge monitoring and alert generation system using iotIJARIIT
 
Alert System for High Speed Vehicles to Avoid Wildlife Accidents
Alert System for High Speed Vehicles to Avoid Wildlife AccidentsAlert System for High Speed Vehicles to Avoid Wildlife Accidents
Alert System for High Speed Vehicles to Avoid Wildlife AccidentsIJERA Editor
 
Alert System for High Speed Vehicles to Avoid Wildlife Accidents
Alert System for High Speed Vehicles to Avoid Wildlife AccidentsAlert System for High Speed Vehicles to Avoid Wildlife Accidents
Alert System for High Speed Vehicles to Avoid Wildlife AccidentsIJERA Editor
 
IRJET - An Automatic Forest Fire Detection using Lora Wireless Mesh Topology
IRJET - An Automatic Forest Fire Detection using Lora Wireless Mesh TopologyIRJET - An Automatic Forest Fire Detection using Lora Wireless Mesh Topology
IRJET - An Automatic Forest Fire Detection using Lora Wireless Mesh TopologyIRJET Journal
 
IRJET - Automatic Potholes Detection and Alert System with Speed Reduction Fe...
IRJET - Automatic Potholes Detection and Alert System with Speed Reduction Fe...IRJET - Automatic Potholes Detection and Alert System with Speed Reduction Fe...
IRJET - Automatic Potholes Detection and Alert System with Speed Reduction Fe...IRJET Journal
 
Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...eSAT Publishing House
 
IRJET - Automatic Plant Watering System using NodeMCU
IRJET - Automatic Plant Watering System using NodeMCUIRJET - Automatic Plant Watering System using NodeMCU
IRJET - Automatic Plant Watering System using NodeMCUIRJET Journal
 
IVRS Based System for Traffic Density Measurement
IVRS Based System for Traffic Density MeasurementIVRS Based System for Traffic Density Measurement
IVRS Based System for Traffic Density MeasurementIRJET Journal
 
IRJET- IoT based Flow Analyzing and Alerting System
IRJET- IoT based Flow Analyzing and Alerting SystemIRJET- IoT based Flow Analyzing and Alerting System
IRJET- IoT based Flow Analyzing and Alerting SystemIRJET Journal
 
IRJET- A Real Time Solution to Flood Monitoring System using IoT and Wireless...
IRJET- A Real Time Solution to Flood Monitoring System using IoT and Wireless...IRJET- A Real Time Solution to Flood Monitoring System using IoT and Wireless...
IRJET- A Real Time Solution to Flood Monitoring System using IoT and Wireless...IRJET Journal
 
IRJET - Aid for Blind People using IoT
IRJET - Aid for Blind People using IoTIRJET - Aid for Blind People using IoT
IRJET - Aid for Blind People using IoTIRJET Journal
 
IRJET-mart Trash Can Monitoring System using IoT - Creating Solutions for Sma...
IRJET-mart Trash Can Monitoring System using IoT - Creating Solutions for Sma...IRJET-mart Trash Can Monitoring System using IoT - Creating Solutions for Sma...
IRJET-mart Trash Can Monitoring System using IoT - Creating Solutions for Sma...IRJET Journal
 

Similar to Flood Monitoring and Alerting System Using IoT (20)

185-687-1-PB
185-687-1-PB185-687-1-PB
185-687-1-PB
 
Flood detection using_iot_ijariie7746
Flood detection using_iot_ijariie7746Flood detection using_iot_ijariie7746
Flood detection using_iot_ijariie7746
 
IRJET- Emergency Navigation System using Mobile Computing
IRJET-  	  Emergency Navigation System using Mobile ComputingIRJET-  	  Emergency Navigation System using Mobile Computing
IRJET- Emergency Navigation System using Mobile Computing
 
IRJET- Smart Dustbin
IRJET-  	  Smart DustbinIRJET-  	  Smart Dustbin
IRJET- Smart Dustbin
 
IRJET- Pollution Monitoring and Controlling System using Internet of Thin...
IRJET-  	  Pollution Monitoring and Controlling System using Internet of Thin...IRJET-  	  Pollution Monitoring and Controlling System using Internet of Thin...
IRJET- Pollution Monitoring and Controlling System using Internet of Thin...
 
IRJET - Advanced Flood Level Monitoring and Alerting System
IRJET -  	  Advanced Flood Level Monitoring and Alerting SystemIRJET -  	  Advanced Flood Level Monitoring and Alerting System
IRJET - Advanced Flood Level Monitoring and Alerting System
 
IRJET- IOT Based Air and Sound Pollution Monitoring System
IRJET-  	  IOT Based Air and Sound Pollution Monitoring SystemIRJET-  	  IOT Based Air and Sound Pollution Monitoring System
IRJET- IOT Based Air and Sound Pollution Monitoring System
 
IRJET- Integrated Automatic Flood Warning and Alert System using IoT
IRJET-  	  Integrated Automatic Flood Warning and Alert System using IoTIRJET-  	  Integrated Automatic Flood Warning and Alert System using IoT
IRJET- Integrated Automatic Flood Warning and Alert System using IoT
 
Bridge monitoring and alert generation system using iot
Bridge monitoring and alert generation system using iotBridge monitoring and alert generation system using iot
Bridge monitoring and alert generation system using iot
 
Alert System for High Speed Vehicles to Avoid Wildlife Accidents
Alert System for High Speed Vehicles to Avoid Wildlife AccidentsAlert System for High Speed Vehicles to Avoid Wildlife Accidents
Alert System for High Speed Vehicles to Avoid Wildlife Accidents
 
Alert System for High Speed Vehicles to Avoid Wildlife Accidents
Alert System for High Speed Vehicles to Avoid Wildlife AccidentsAlert System for High Speed Vehicles to Avoid Wildlife Accidents
Alert System for High Speed Vehicles to Avoid Wildlife Accidents
 
IRJET - An Automatic Forest Fire Detection using Lora Wireless Mesh Topology
IRJET - An Automatic Forest Fire Detection using Lora Wireless Mesh TopologyIRJET - An Automatic Forest Fire Detection using Lora Wireless Mesh Topology
IRJET - An Automatic Forest Fire Detection using Lora Wireless Mesh Topology
 
IRJET - Automatic Potholes Detection and Alert System with Speed Reduction Fe...
IRJET - Automatic Potholes Detection and Alert System with Speed Reduction Fe...IRJET - Automatic Potholes Detection and Alert System with Speed Reduction Fe...
IRJET - Automatic Potholes Detection and Alert System with Speed Reduction Fe...
 
Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...
 
IRJET - Automatic Plant Watering System using NodeMCU
IRJET - Automatic Plant Watering System using NodeMCUIRJET - Automatic Plant Watering System using NodeMCU
IRJET - Automatic Plant Watering System using NodeMCU
 
IVRS Based System for Traffic Density Measurement
IVRS Based System for Traffic Density MeasurementIVRS Based System for Traffic Density Measurement
IVRS Based System for Traffic Density Measurement
 
IRJET- IoT based Flow Analyzing and Alerting System
IRJET- IoT based Flow Analyzing and Alerting SystemIRJET- IoT based Flow Analyzing and Alerting System
IRJET- IoT based Flow Analyzing and Alerting System
 
IRJET- A Real Time Solution to Flood Monitoring System using IoT and Wireless...
IRJET- A Real Time Solution to Flood Monitoring System using IoT and Wireless...IRJET- A Real Time Solution to Flood Monitoring System using IoT and Wireless...
IRJET- A Real Time Solution to Flood Monitoring System using IoT and Wireless...
 
IRJET - Aid for Blind People using IoT
IRJET - Aid for Blind People using IoTIRJET - Aid for Blind People using IoT
IRJET - Aid for Blind People using IoT
 
IRJET-mart Trash Can Monitoring System using IoT - Creating Solutions for Sma...
IRJET-mart Trash Can Monitoring System using IoT - Creating Solutions for Sma...IRJET-mart Trash Can Monitoring System using IoT - Creating Solutions for Sma...
IRJET-mart Trash Can Monitoring System using IoT - Creating Solutions for Sma...
 

More from IAEME Publication

IAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdfIAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdfIAEME Publication
 
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...IAEME Publication
 
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURSA STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURSIAEME Publication
 
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURSBROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURSIAEME Publication
 
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONSDETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONSIAEME Publication
 
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONSANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONSIAEME Publication
 
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINOVOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINOIAEME Publication
 
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...IAEME Publication
 
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMYVISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMYIAEME Publication
 
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...IAEME Publication
 
GANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICEGANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICEIAEME Publication
 
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...IAEME Publication
 
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...IAEME Publication
 
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...IAEME Publication
 
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...IAEME Publication
 
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...IAEME Publication
 
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...IAEME Publication
 
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...IAEME Publication
 
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...IAEME Publication
 
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENTA MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENTIAEME Publication
 

More from IAEME Publication (20)

IAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdfIAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdf
 
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
 
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURSA STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
 
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURSBROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
 
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONSDETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
 
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONSANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
 
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINOVOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
 
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
 
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMYVISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
 
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
 
GANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICEGANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICE
 
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
 
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
 
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
 
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
 
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
 
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
 
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
 
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
 
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENTA MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
 

Recently uploaded

Churning of Butter, Factors affecting .
Churning of Butter, Factors affecting  .Churning of Butter, Factors affecting  .
Churning of Butter, Factors affecting .Satyam Kumar
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfAsst.prof M.Gokilavani
 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxKartikeyaDwivedi3
 
Instrumentation, measurement and control of bio process parameters ( Temperat...
Instrumentation, measurement and control of bio process parameters ( Temperat...Instrumentation, measurement and control of bio process parameters ( Temperat...
Instrumentation, measurement and control of bio process parameters ( Temperat...121011101441
 
Correctly Loading Incremental Data at Scale
Correctly Loading Incremental Data at ScaleCorrectly Loading Incremental Data at Scale
Correctly Loading Incremental Data at ScaleAlluxio, Inc.
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
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
 
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
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 
An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...Chandu841456
 
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)Dr SOUNDIRARAJ N
 
Introduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxIntroduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxk795866
 
8251 universal synchronous asynchronous receiver transmitter
8251 universal synchronous asynchronous receiver transmitter8251 universal synchronous asynchronous receiver transmitter
8251 universal synchronous asynchronous receiver transmitterShivangiSharma879191
 

Recently uploaded (20)

Churning of Butter, Factors affecting .
Churning of Butter, Factors affecting  .Churning of Butter, Factors affecting  .
Churning of Butter, Factors affecting .
 
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptx
 
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
 
Instrumentation, measurement and control of bio process parameters ( Temperat...
Instrumentation, measurement and control of bio process parameters ( Temperat...Instrumentation, measurement and control of bio process parameters ( Temperat...
Instrumentation, measurement and control of bio process parameters ( Temperat...
 
Correctly Loading Incremental Data at Scale
Correctly Loading Incremental Data at ScaleCorrectly Loading Incremental Data at Scale
Correctly Loading Incremental Data at Scale
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
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
 
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
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 
young call girls in Green Park🔝 9953056974 🔝 escort Service
young call girls in Green Park🔝 9953056974 🔝 escort Serviceyoung call girls in Green Park🔝 9953056974 🔝 escort Service
young call girls in Green Park🔝 9953056974 🔝 escort Service
 
POWER SYSTEMS-1 Complete notes examples
POWER SYSTEMS-1 Complete notes  examplesPOWER SYSTEMS-1 Complete notes  examples
POWER SYSTEMS-1 Complete notes examples
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 
An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...
 
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
 
Introduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxIntroduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptx
 
Design and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdfDesign and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdf
 
8251 universal synchronous asynchronous receiver transmitter
8251 universal synchronous asynchronous receiver transmitter8251 universal synchronous asynchronous receiver transmitter
8251 universal synchronous asynchronous receiver transmitter
 

Flood Monitoring and Alerting System Using IoT

  • 1. http://www.iaeme.com/IJCET/index.asp 1 editor@iaeme.com International Journal of Computer Engineering & Technology (IJCET) Volume 8, Issue 2, March-April 2017, pp. 01–05, Article ID: IJCET_08_02_001 Available online at http://www.iaeme.com/IJCET/issues.asp?JType=IJCET&VType=8&IType=2 Journal Impact Factor (2016): 9.3590(Calculated by GISI) www.jifactor.com ISSN Print: 0976-6367 and ISSN Online: 0976–6375 © IAEME Publication FLOOD MONITORING AND ALERTING SYSTEM S. Jana Priya, S. Akshaya, E. Aruna, J. Arokiya Mary Julie Department of Computer Science and Engineering, Saranathan College of Engineering, Tiruchirappalli, TamilNadu, India V. Ranjani Assistant Professor, Department of Computer Science and Engineering, Saranathan College of Engineering, Tiruchirappalli, TamilNadu, India ABSTRACT Flood is one of the natural disasters which cannot be avoided totally. Every year, death rate due to flood increases because of absence of early warning. To solve this problem, this paper demonstrates the idea and implementation of a Flood Monitoring and Alerting system using Internet of Things (IOT) technology. This system comprises of three parts. The first part measures the height of the water using ultrasonic distance measuring sensor. The second part is sending the height information to web page using the Ethernet shield. The third part is making call to residences to alert them about flood through voice message. The call is made through the most popular mobile standard Global System for Mobile Communication (GSM) and ARP33A3 is used to play the recorded voice message. Key words: Arduino Uno, Ethernet shield, GSM module, ARP33A3, voice call. Cite this Article: S. Jana Priya, S. Akshaya, E. Aruna, J. Arokiya Mary Julie and V. Ranjani, Flood Monitoring and Alerting System. International Journal of Computer Engineering & Technology, 8(2), 2017, pp. 01–05. http://www.iaeme.com/IJCET/issues.asp?JType=IJCET&VType=8&IType=2 1. INTRODUCTION The Internet of Things builds on three major technology layers: Hardware (including chips and sensors), Communication (including mostly some form of wireless network), and Software (including data storage, analytics, and front end applications). IoT describes a system where items in the physical world, and sensors within or attached to these items, are connected to the Internet via wireless and wired Internet connections. The physical objects that are being connected will possess one or more sensors. Each sensor will monitor a specific condition such as location, vibration, motion and temperature. In IoT, these sensors will connect to each other and to systems that can understand or present information from the
  • 2. S. Jana Priya, S. Akshaya, E. Aruna, J. Arokiya Mary Julie and V. Ranjani http://www.iaeme.com/IJCET/index.asp 2 editor@iaeme.com sensor’s data feeds. These sensors will provide new information to a company’s systems and to people. 2. BACKGROUND In developed country like US, Japan etc. the flooding problem is minimized significantly and do not affect much due to availability of emergency system. But the developing countries like India, Brazil etc. is suffering a lot during flood. Every year number of deaths due to flooding keeps increasing in different part of our country. Two years ago the flood occurred in Chennai, the capital of Tamilnadu resulted insignificant loss of life and property. Whenever, flooding happens living area near the riverbank and downstream area are affected severely than others. They need to be alerted much earlier to have extra time to evacuate immediately. During Chennai flood in 2015, fake news were spread for instance, A false message which said two lakes had breached and Chennai had been cut off from rest of the districts, spread panic among commuters, especially those that were stranded for hours together on the arterial Mount Road on Monday night. To avoid this situation we need authorized warning system. Our system provides such information so that people can avoid false news .And the system makes use of voice call as it is helpful for people who do not know how to read the text message. 3. PROPOSED MODEL FLOOD MONITORING AND ALERTING SYSTEM alerts the user nearby the river area through voice call. An Arduino Uno microcontroller is used to control the whole system. It is interfaced with GSM modem, ultrasonic sensor, Ethernet shield [1]. The distance between the ultrasonic sensor and water is measured and the height level of the water is calculated [2]. The calculated height value is updated in the web page. The water level calculated would then be compared with the set threshold and if the current level is more than the set threshold value, the microcontroller would enable voice call to be sent to residence to alert them via the GSM module. We are using ARP33A3 device to record voice and it is interfaced with the GSM modem so that the recorded voice is played when the call is attended. Figure 1 Block diagram of proposed model Arduino uno Ethernet shield Ultrasonic sensor Database GSM SIM 900A APR33A3
  • 3. Flood Monitoring and Alerting System http://www.iaeme.com/IJCET/index.asp 3 editor@iaeme.com 4. SYSTEM OVERVIEW 4.1. Flow Chart Figure 2 Flow Chart 4.2. Ultrasonic Sensor Figure 3 Ultrasonic Sensor
  • 4. S. Jana Priya, S. Akshaya, E. Aruna, J. Arokiya Mary Julie and V. Ranjani http://www.iaeme.com/IJCET/index.asp 4 editor@iaeme.com Ultrasonic sensor HC SR04 can measure the distance from 2cm to 4m with accuracy of range of 2mm.It emits ultrasonic sound at 14000/4 Hz which will travel in air. If there is an object, sound is bounced back to sonar. Using receiving time of sound and speed of sound, we can calculate the distance of object from sonar. Speed of sound =340m/s=0.034 cm/micro sec. or 29 micro sec/cm Time = Distance/speed. Since the sound waves travel froth and bounce back from object and so time received is twice the actual time. Thus, Distance in cm=time*0.034/2 or Distance in cm=time/29/2 Based on distance, height of water is calculated. 4.3. Related Work The static web page is created using HTML and CSS which is served from the SD card [5]. The Ethernet shield brings the internet connectivity to the arduino shield and make it to act as a server [6][10]. The Ethernet shield is connected to the system with internet connection with the help of RJ45 cable. This webpage can be accessed from any system that is connected in the same LAN as that of the Ethernet shield. A static ip address is allocated to Ethernet shield. Whenever the user wants to access the page the user must enter the ip address of the Ethernet shield in the URL bar. The static webpage content will be fetched from the sd card and the dynamic content that is the water level information will be fetched from the database and displayed in the webpage. 4.4. Making Call Figure 4 GSM sim900A When the water level reaches the threshold level, call must be made to the residence. To make call using GSM module AT+ATD command is used when the call is attended the recorded voice message should be played [3][4]. The APR33A3is interfaced with gsm module [9]. This APR33A3 operates in two modes. The first mode is record mode in which the audio can be recorded into any of the seven channels. The second mode is playback mode in which the recorded audio can be played from the channel when the call is attended.
  • 5. Flood Monitoring and Alerting System http://www.iaeme.com/IJCET/index.asp 5 editor@iaeme.com 5. PROCESSING STEPS 6. CONCLUSION This project aims at monitoring the water level in one particular water body. In future it may be enhanced to monitor multiple locations at the same time and the web page must be able to display the information based on the selection done by the authority. REFERENCES [1] Sheikh Azid, Bibhya Sharma, Krishna Raghuwaiya, Abinendra Chand, Sumeet Prasad, SMS based flood monitoring and early warning system, ARPN Journal of Engineering and Applied Science, 10(15) 2015. [2] Abubaker Rahmtalla, Abdalla Mohamed, Wang Guang Wei, Real Time Wireless Flood Monitoring System using Ultrasonic waves, International Journal of Science and Research (IJSR) ,3(8) 2014. [3] http://www.circuitstoday.com/interface-gsm-module-with-arduino [4] http://www.edaboard.com/thread2272720.html [5] https://www.arduino.cc/en/Reference/SDCardNotes [6] http://www.engineerathome.com/elektronica/buildanethernetwebinterface for arduino/35 [7] http://www.robomart.com/blog/working-of-hc-sr04-ultrasonic-sensor-with-arduino-uno [8] http://howtomechatronics.com/tutorials/arduino/ultrasonic-sensor-with-arduino-uno. [9] http://www.raviyp.com/embedded/157-use-apr9600-apr33a3-with-sim300-to-play-audio- during-call [10] http://startingelectronics.org/tutorials/arduino/ethernet-shield-web-server-tutorial [11] Karna Patel, Mrudang Patel and Nirav Oza, Wireless Automation and Machine Learning of a Rolling-Mill Using Arduino and Android. International Journal of Mechanical Engineering and Technology, 7(6), 2016, pp. 09–21. [12] Manish M. Patil and Prof. Chhaya S. Khandelwal, Implementation of Patient Monitoring System Using GSM Technology. International Journal of Electronics and Communication Engineering & Technology (IJECET).4(1), 2013, pp. 18–24 Sensing Unit: HC SR04 Processing Unit: Arduino Uno Micro controller Communication Unit: GSM Sim 900A , ARP33A3