SlideShare a Scribd company logo
1 of 4
Download to read offline
© 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 703
Wireless Sensor Network (WSN) Implementation in IOT Based Smart
City
Vishal Lahane1, Pooja Band2, S.T. Valunjkar3
1,2M.Tech Scholar, Electronic Design and Technology, NIELIT Aurangabad, Maharashtra
3Scientist ‘E’, M.Tech (Electrical Machines and Industrial Drives), NIELIT Aurangabad, Maharashtra
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract: as the IoT (Internet of Things) has made the man
machine interface a very sophisticated thing. Due to this a
large number of devices got connected to the internet. The
proposed system forms the network (WirelessSensorNetwork
or also termed as WSN) of such devices(Sensors) which
collectively sends the real time weather parameters
(Temperature, Humidity, Light Intensity and Depth of water
level present in Dam) of particular location to the local Web
server created using Arduino platform. The system also
provides the certain kind of Security. Hencesystemcanonly be
accessed and monitored by authorized persons.)
Key Words: IoT, WSN, Arduino, Web Server.
1. INTRODUCTION
The IoT is trending concept getting popular across
the globe. Due to IoT the man machine communication
became too much easy. A lot of research is going in this
section. In the conventional system the various weather
parameters were measured by conventional methods but
getting real time data wasnotpossible.Theproposedsystem
collects the weather parameters such as temperature,
humidity, external light intensity and water level present in
dam of particular location. The whole city has network of
such sensors which will collectdata andsimultaneouslysend
it to the web server.
Present innovations in technology mainly focus on
controlling and monitoring of different activities. These are
increasingly emerging to reach the human needs. Most of
this technology is focused on efficient monitoring and
controlling different activities. An efficient environmental
monitoring system is required to monitor and assess the
conditions in case of exceeding the prescribed level of
parameters. When the objects like environment equipped
with sensor devices, microcontroller and various software
applications becomes a self-protecting and self-monitoring
environment and it is also called as smart environment. The
effects due to the environmental changes on animals, plants
and human beings can be monitoredandcontrolledbysmart
environmental monitoring system. By using Intelligent
Network of Sensors and IoT across the city makes the
environment interactive with other objectives, this is one of
the application that smart environment targets. Human
needs demands different types of monitoring systems these
are depends on the type of data gathered by the sensor
devices. Event Detection based and Spatial Process
Estimation are the two categories to which applications are
classified. Initially the sensor devices are deployed in
environment to detect the parameters (e.g., Temperature,
Humidity, Environmental Light Intensity etc.) whilethedata
acquisition, computation and controlling action. Sensor
devices are placed at different locations to collect thedata to
predict the behavior of a particulararea ofinterest.Themain
aim of this paper is to design and implement an efficient
monitoring system through which the required parameters
are monitored remotely using internet. The solution
provides an intelligent remote monitoring for a particular
area of interest. In this paper we also present a trending
results of collected or sensed data withrespecttothenormal
or specified ranges of particular parameters. The embedded
system is an integration of sensor devices, wireless
communication which enables the user to remotely access
the various parameters. The wholesensordata will bewhich
will be transferred to the server will be secured by certain
algorithms.
2. Methodology
For the implementationoftheproposedsystemwehaveused
the Arduino Mega 2560 development board which has
ATmega2560. To measurethe temperatureand humiditywe
have used the DHT11 sensor which is combined module
which provides temperature as well as humidity present in
environment. The DHT11 provides digital values of
temperature and humidity and these values are sent to the
local webserver local webserver created using arduino and
Ethernet shield. Theenvironmentallightintensityisdetected
by the Light Dependent Resistor (LDR) sensor. Thissensoris
used alongwith10kresistorinvoltagedivisionconfiguration.
The light intensity is converted into the percent value by
doing certain mathematical calculations and simultaneously
sent to the local webserver. The water level presentindamis
then measured by ultrasonic sensor HC SR-04 and it is also
sent in real time to the local webserver. Ethernet Shield used
is W5100 by Wiznet. The Ethernet shield is connected to
arduino board by Serial Peripheral Interface (SPI) protocol.
The Ethernet shield then sendsdatatorouter(DigisolDGHR-
3400). The Ethernet shield and routerareconnectedthrough
TCP/IP protocol. The router assigns IP address to Ethernet
shield. The data canbeaccessibleonsecuredwebsitethrough
internet service provider (ISP). The whole data is secured
through MD5 encryptiontechniquedevelopedusingphp.The
following is the block diagram of the proposed system:
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 08 | Aug 2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 704
Fig- 1: Block Diagram of the proposed system
3. HADWARE DESIGN
The hardware of the system is enclosed inperfectABSPlastic
enclosure. The hardware setupofthesystemisshownbelow:
Fig- 2: Hardware Setup
The testing hardware setup is made with the help of
breadboard. All the sensors i.e. LDR, DHT11 and HC SR-04
are interfaced with Arduino Mega 2560. The whole setup is
shown in next image Fig-3.
Fig- 3: System Setup with Network Interface
4. SOFTWARE INTERFACE
The software tool used to write down the code for the
proposed system is Arduino IDE. Basically this is the
compiler. The code written in this compiler is dumped into
the hardware through USB interface present on arduino
board. The GUI (Graphic UserInterface) of the arduino IDEis
shown in below figure Fig- 4:
Fig-4: GUI of Arduino IDE
5. Experimentation and Results:
5.1: Formula Used:
For the conversion of analog values received from LDR
sensor into the percent value, we used following formula:
LDR_Value = analogRead(LDR_Pin);
Percent_Intensity = ((LDR_Value - 30.00) / 993) * 100;
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 08 | Aug 2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 705
Percent_Intensity = 100 - Percent_Intensity;
The formula is developed by subtracting the minimum value
that is 30.00 (we got this from observation) from LDR_value
(variable giving real timeanalog value of LightIntensity)and
then we divided this value by (1023-30=993) as we have 10
bit ADC present in arduino. Then we multiplied this value by
100 to convert into percent. As we were getting the reverse
values weusedcomplementaryfunctiontogetcorrectvalues.
We got accurate values of temperature and humidity using
DHT library. Following Figure Fig-5 is GUI of serial monitor
showing all the sensor readings sent through serial port at
baud rate of 9600:
Fig-5: Serial Monitor Output Window
5.2. GRAPHS OBTAINED
The graph of Light Intensity on Serial Plotter is shown in
Chart-1:
Chart-1: Light Intensity Graph of LDR
The graph of temperature and humidity is also plotted using
serial plotter. It is shown in Chart-2:
Chart-2: Temperature-Humidity Graph
The final output is shown on the local webserver created
using the arduino Ethernet shield. Here we allocated the IP
address 169.254.57.24 to theEthernetshield.Whenweenter
this IP address into the web browser we get all the sensor
data on webpage created using basic HTML. The final output
is shown in the Fig-6:
Fig-6: Arduino Local Webserver
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 08 | Aug 2018 www.irjet.net p-ISSN: 2395-0072
© 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 706
6. CONCLUSION
Hence we have developed the proposed system which takes
readings from various sensors like LDR, DHT11 and
Ultrasonic Sensor HC SR-04 which real time information of
the parameters Environmental LightIntensity,Temperature,
humidity and water lever present in dam of smart city. We
also putted these real time readings onto the arduino
webserver created using HTML. The whole interface is
secured through hash tag of MD5 encryption technique
developed using PHP.
ACKNOWLEDGEMENT
Any accomplishment requires the effort of many people and
this work is no different. I find great pleasure in expressing
my deep sense of gratitude towards all those who havemade
it possible for me to complete this project successfully. I
would like to thank my Guide Mr. S.T. Valunjkar for his
inspiration, guidance & support. I am sincerely thankful to
him forprovidingresourcesinlaboratoryandIamverymuch
thankful to all teaching and non-teaching staff who were
directly and indirectly involved in my project work. I would
like to thank my project partner Ms. Pooja Band for her
continuous support while completion of this project. I also
like to thank all my friends who helpedmeforthecompletion
of the project. Lastly, I wish to thank my parents for having
raised me in such conducive and loving environment, for
teaching me to work hard and persevere which has enabled
me to come so far.
REFERENCES
[1] M. H. Asghar, A. Negi, and N. Mohammadzadeh,
“Principle application and vision in internet of things
(iot),” in International Conference on Computing,
Communication Automation, May 2015, pp. 427–431.
[2] A. Gheith, R. Rajamony, P. Bohrer, K. Agarwal, M.Kistler,
B. L. W.Eagle, C. A. Hambridge, J. B. Carter, and T.
Kaplinger, “Ibm bluemix mobile cloud services,” IBM
Journal of Research and Development, vol. 60, no. 2-3,
pp. 7:1–7:12, March 2016.
[3] S. Gangopadhyay and M. K. Mondal, “A wireless
framework for environmental monitoring and instant
response alert,” in 2016 International Conference on
Microelectronics, Computing and Communications
(MicroCom), Jan 2016, pp. 1–6.
[4] H. Saini, A. Thakur, S. Ahuja, N.Sabharwal,andN.Kumar,
“Arduino based automatic wirelessweatherstationwith
remote graphical application and alerts,” in 2016 3rd
International Conference on Signal Processing and
Integrated Networks (SPIN), Feb 2016, pp. 605–609.
[5] A. Lage and J. C. Correa, “Weather station with cellular
communication network,” in 2015 XVI Workshop on
Information Processingand Control(RPIC),Oct2015,pp.
1–5.
[6] T. Thaker, “Esp8266 based implementation of wireless
sensor network with linux based web-server,” March
2016.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 05 Issue: 08 | Aug 2018 www.irjet.net p-ISSN: 2395-0072

More Related Content

What's hot

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
 
Review paper on IoT based technology
Review paper on IoT based technologyReview paper on IoT based technology
Review paper on IoT based technologyIRJET Journal
 
Smart Water Monitoring System using Cloud Service
Smart Water Monitoring System using Cloud ServiceSmart Water Monitoring System using Cloud Service
Smart Water Monitoring System using Cloud Serviceijtsrd
 
Smart home using andriod application
Smart home using andriod applicationSmart home using andriod application
Smart home using andriod applicationeSAT Publishing House
 
Bi directional visitor counter
Bi directional visitor counter Bi directional visitor counter
Bi directional visitor counter JanhviThombre
 
Water Level Monitoring System using IOT
Water Level Monitoring System using IOTWater Level Monitoring System using IOT
Water Level Monitoring System using IOTIRJET Journal
 
IRJET- Smart Light Intensity Management System
IRJET- Smart Light Intensity Management SystemIRJET- Smart Light Intensity Management System
IRJET- Smart Light Intensity Management SystemIRJET Journal
 
WEB BASED REALTIME CONTROL AND HOME AUTOMATION SYSTEM
WEB BASED REALTIME CONTROL AND HOME AUTOMATION SYSTEMWEB BASED REALTIME CONTROL AND HOME AUTOMATION SYSTEM
WEB BASED REALTIME CONTROL AND HOME AUTOMATION SYSTEMATHUL RAJ.R
 
IRJET- Multi-Sensor based Water Quality Monitoring in IoT Environment
IRJET-  	  Multi-Sensor based Water Quality Monitoring in IoT EnvironmentIRJET-  	  Multi-Sensor based Water Quality Monitoring in IoT Environment
IRJET- Multi-Sensor based Water Quality Monitoring in IoT EnvironmentIRJET Journal
 
IRJET - Boat Shrinking Alert System using IoT
IRJET -  	  Boat Shrinking Alert System using IoTIRJET -  	  Boat Shrinking Alert System using IoT
IRJET - Boat Shrinking Alert System using IoTIRJET Journal
 
IRJET- An Intelligent Remote Controlled System for Smart Home Automation
IRJET- An Intelligent Remote Controlled System for Smart Home AutomationIRJET- An Intelligent Remote Controlled System for Smart Home Automation
IRJET- An Intelligent Remote Controlled System for Smart Home AutomationIRJET Journal
 
IRJET- Development of Data Transmission using Smart Sensing Technology for St...
IRJET- Development of Data Transmission using Smart Sensing Technology for St...IRJET- Development of Data Transmission using Smart Sensing Technology for St...
IRJET- Development of Data Transmission using Smart Sensing Technology for St...IRJET Journal
 
IRJET - Monitoring Indoor Air Quality in Industries
IRJET - Monitoring Indoor Air Quality in IndustriesIRJET - Monitoring Indoor Air Quality in Industries
IRJET - Monitoring Indoor Air Quality in IndustriesIRJET Journal
 
IRJET- Voice-Activated Home Automation using NodeMCU
IRJET- Voice-Activated Home Automation using NodeMCUIRJET- Voice-Activated Home Automation using NodeMCU
IRJET- Voice-Activated Home Automation using NodeMCUIRJET Journal
 
IRJET - Talking Plant using IoT and Machine Laerning
IRJET -  	  Talking Plant using IoT and Machine LaerningIRJET -  	  Talking Plant using IoT and Machine Laerning
IRJET - Talking Plant using IoT and Machine LaerningIRJET Journal
 
IRJET - Smart Street Light System using IoT
IRJET - Smart Street Light System using IoTIRJET - Smart Street Light System using IoT
IRJET - Smart Street Light System using IoTIRJET Journal
 
IRJET - A Cyber-Physical System for Environmental Monitoring Based on IOT
IRJET -  	  A Cyber-Physical System for Environmental Monitoring Based on IOTIRJET -  	  A Cyber-Physical System for Environmental Monitoring Based on IOT
IRJET - A Cyber-Physical System for Environmental Monitoring Based on IOTIRJET Journal
 
Implement via Smart Home blynk
Implement via Smart Home blynk Implement via Smart Home blynk
Implement via Smart Home blynk adminjeet
 
Performance Evaluation of Smart Home System using Internet of Things
Performance Evaluation of Smart Home System using   Internet of Things Performance Evaluation of Smart Home System using   Internet of Things
Performance Evaluation of Smart Home System using Internet of Things IJECEIAES
 

What's hot (20)

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
 
Review paper on IoT based technology
Review paper on IoT based technologyReview paper on IoT based technology
Review paper on IoT based technology
 
Smart Water Monitoring System using Cloud Service
Smart Water Monitoring System using Cloud ServiceSmart Water Monitoring System using Cloud Service
Smart Water Monitoring System using Cloud Service
 
Smart home using andriod application
Smart home using andriod applicationSmart home using andriod application
Smart home using andriod application
 
Bi directional visitor counter
Bi directional visitor counter Bi directional visitor counter
Bi directional visitor counter
 
Water Level Monitoring System using IOT
Water Level Monitoring System using IOTWater Level Monitoring System using IOT
Water Level Monitoring System using IOT
 
IRJET- Smart Light Intensity Management System
IRJET- Smart Light Intensity Management SystemIRJET- Smart Light Intensity Management System
IRJET- Smart Light Intensity Management System
 
WEB BASED REALTIME CONTROL AND HOME AUTOMATION SYSTEM
WEB BASED REALTIME CONTROL AND HOME AUTOMATION SYSTEMWEB BASED REALTIME CONTROL AND HOME AUTOMATION SYSTEM
WEB BASED REALTIME CONTROL AND HOME AUTOMATION SYSTEM
 
IRJET- Multi-Sensor based Water Quality Monitoring in IoT Environment
IRJET-  	  Multi-Sensor based Water Quality Monitoring in IoT EnvironmentIRJET-  	  Multi-Sensor based Water Quality Monitoring in IoT Environment
IRJET- Multi-Sensor based Water Quality Monitoring in IoT Environment
 
IRJET - Boat Shrinking Alert System using IoT
IRJET -  	  Boat Shrinking Alert System using IoTIRJET -  	  Boat Shrinking Alert System using IoT
IRJET - Boat Shrinking Alert System using IoT
 
M44096368
M44096368M44096368
M44096368
 
IRJET- An Intelligent Remote Controlled System for Smart Home Automation
IRJET- An Intelligent Remote Controlled System for Smart Home AutomationIRJET- An Intelligent Remote Controlled System for Smart Home Automation
IRJET- An Intelligent Remote Controlled System for Smart Home Automation
 
IRJET- Development of Data Transmission using Smart Sensing Technology for St...
IRJET- Development of Data Transmission using Smart Sensing Technology for St...IRJET- Development of Data Transmission using Smart Sensing Technology for St...
IRJET- Development of Data Transmission using Smart Sensing Technology for St...
 
IRJET - Monitoring Indoor Air Quality in Industries
IRJET - Monitoring Indoor Air Quality in IndustriesIRJET - Monitoring Indoor Air Quality in Industries
IRJET - Monitoring Indoor Air Quality in Industries
 
IRJET- Voice-Activated Home Automation using NodeMCU
IRJET- Voice-Activated Home Automation using NodeMCUIRJET- Voice-Activated Home Automation using NodeMCU
IRJET- Voice-Activated Home Automation using NodeMCU
 
IRJET - Talking Plant using IoT and Machine Laerning
IRJET -  	  Talking Plant using IoT and Machine LaerningIRJET -  	  Talking Plant using IoT and Machine Laerning
IRJET - Talking Plant using IoT and Machine Laerning
 
IRJET - Smart Street Light System using IoT
IRJET - Smart Street Light System using IoTIRJET - Smart Street Light System using IoT
IRJET - Smart Street Light System using IoT
 
IRJET - A Cyber-Physical System for Environmental Monitoring Based on IOT
IRJET -  	  A Cyber-Physical System for Environmental Monitoring Based on IOTIRJET -  	  A Cyber-Physical System for Environmental Monitoring Based on IOT
IRJET - A Cyber-Physical System for Environmental Monitoring Based on IOT
 
Implement via Smart Home blynk
Implement via Smart Home blynk Implement via Smart Home blynk
Implement via Smart Home blynk
 
Performance Evaluation of Smart Home System using Internet of Things
Performance Evaluation of Smart Home System using   Internet of Things Performance Evaluation of Smart Home System using   Internet of Things
Performance Evaluation of Smart Home System using Internet of Things
 

Similar to IRJET- Wireless Sensor Network(WSN) Implementation in IoT based Smart City

Smart Greenhouse using Machine Learning
Smart Greenhouse using Machine LearningSmart Greenhouse using Machine Learning
Smart Greenhouse using Machine LearningIRJET Journal
 
IRJET- Environmental Analysis in IoT using Raspberry Pi
IRJET-  	  Environmental Analysis in IoT using Raspberry PiIRJET-  	  Environmental Analysis in IoT using Raspberry Pi
IRJET- Environmental Analysis in IoT using Raspberry PiIRJET Journal
 
IRJET- Air Quality Monitoring System for City
IRJET-	 Air Quality Monitoring System for CityIRJET-	 Air Quality Monitoring System for City
IRJET- Air Quality Monitoring System for CityIRJET Journal
 
IRJET- Heartbeat Monitoring System with Temperature Sensor
IRJET- Heartbeat Monitoring System with Temperature SensorIRJET- Heartbeat Monitoring System with Temperature Sensor
IRJET- Heartbeat Monitoring System with Temperature SensorIRJET Journal
 
IRJET - oT based Poultry House Monitoring System
IRJET - oT based Poultry House Monitoring SystemIRJET - oT based Poultry House Monitoring System
IRJET - oT based Poultry House Monitoring SystemIRJET 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
 
SMART STREET LIGHTING AND MONITORING SYSTEM BASED ON SUNLIGHT INTENSITY DETEC...
SMART STREET LIGHTING AND MONITORING SYSTEM BASED ON SUNLIGHT INTENSITY DETEC...SMART STREET LIGHTING AND MONITORING SYSTEM BASED ON SUNLIGHT INTENSITY DETEC...
SMART STREET LIGHTING AND MONITORING SYSTEM BASED ON SUNLIGHT INTENSITY DETEC...IRJET Journal
 
IRJET- Machine Learning for Weather Prediction and Forecasting for Local Weat...
IRJET- Machine Learning for Weather Prediction and Forecasting for Local Weat...IRJET- Machine Learning for Weather Prediction and Forecasting for Local Weat...
IRJET- Machine Learning for Weather Prediction and Forecasting for Local Weat...IRJET Journal
 
GESTURE CONTROL FORKLIFT
GESTURE CONTROL FORKLIFTGESTURE CONTROL FORKLIFT
GESTURE CONTROL FORKLIFTIRJET 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
 
Wind Turbine Monitoring System Using IoT
Wind Turbine Monitoring System Using IoTWind Turbine Monitoring System Using IoT
Wind Turbine Monitoring System Using IoTIRJET Journal
 
AGRICULTURE ENVIRONMENT MONITORING SYSTEM USING ANDROID
AGRICULTURE ENVIRONMENT MONITORING SYSTEM USING ANDROIDAGRICULTURE ENVIRONMENT MONITORING SYSTEM USING ANDROID
AGRICULTURE ENVIRONMENT MONITORING SYSTEM USING ANDROIDIRJET Journal
 
IRJET- Sensors implementation in AGV & IoT based data visualization over clie...
IRJET- Sensors implementation in AGV & IoT based data visualization over clie...IRJET- Sensors implementation in AGV & IoT based data visualization over clie...
IRJET- Sensors implementation in AGV & IoT based data visualization over clie...IRJET Journal
 
Solar-Powered IoT-Enabled Weather Monitoring System with AJAX- Based Webserve...
Solar-Powered IoT-Enabled Weather Monitoring System with AJAX- Based Webserve...Solar-Powered IoT-Enabled Weather Monitoring System with AJAX- Based Webserve...
Solar-Powered IoT-Enabled Weather Monitoring System with AJAX- Based Webserve...IRJET Journal
 
IRJET- Earthquake Early Warning System for Android
IRJET-  	  Earthquake Early Warning System for AndroidIRJET-  	  Earthquake Early Warning System for Android
IRJET- Earthquake Early Warning System for AndroidIRJET Journal
 
IRJET- IoT based Noise and Pollution Monitoring System
IRJET- IoT based Noise and Pollution Monitoring SystemIRJET- IoT based Noise and Pollution Monitoring System
IRJET- IoT based Noise and Pollution Monitoring SystemIRJET Journal
 
IRJET- Implementation of IoT in Agriculture with Real Time Environmental, Soi...
IRJET- Implementation of IoT in Agriculture with Real Time Environmental, Soi...IRJET- Implementation of IoT in Agriculture with Real Time Environmental, Soi...
IRJET- Implementation of IoT in Agriculture with Real Time Environmental, Soi...IRJET Journal
 
IRJET- Weather Station Quadcopter using Arduino with NRF24L01 and GPS Module
IRJET-  	  Weather Station Quadcopter using Arduino with NRF24L01 and GPS ModuleIRJET-  	  Weather Station Quadcopter using Arduino with NRF24L01 and GPS Module
IRJET- Weather Station Quadcopter using Arduino with NRF24L01 and GPS ModuleIRJET Journal
 
SMART WASTE MANAGEMENT SYSTEM USING IOT
SMART WASTE MANAGEMENT SYSTEM USING IOTSMART WASTE MANAGEMENT SYSTEM USING IOT
SMART WASTE MANAGEMENT SYSTEM USING IOTIRJET Journal
 

Similar to IRJET- Wireless Sensor Network(WSN) Implementation in IoT based Smart City (20)

Smart Greenhouse using Machine Learning
Smart Greenhouse using Machine LearningSmart Greenhouse using Machine Learning
Smart Greenhouse using Machine Learning
 
IRJET- Environmental Analysis in IoT using Raspberry Pi
IRJET-  	  Environmental Analysis in IoT using Raspberry PiIRJET-  	  Environmental Analysis in IoT using Raspberry Pi
IRJET- Environmental Analysis in IoT using Raspberry Pi
 
IRJET- Air Quality Monitoring System for City
IRJET-	 Air Quality Monitoring System for CityIRJET-	 Air Quality Monitoring System for City
IRJET- Air Quality Monitoring System for City
 
IRJET- Heartbeat Monitoring System with Temperature Sensor
IRJET- Heartbeat Monitoring System with Temperature SensorIRJET- Heartbeat Monitoring System with Temperature Sensor
IRJET- Heartbeat Monitoring System with Temperature Sensor
 
IRJET - oT based Poultry House Monitoring System
IRJET - oT based Poultry House Monitoring SystemIRJET - oT based Poultry House Monitoring System
IRJET - oT based Poultry House Monitoring System
 
IOT Based Environmental Pollution Monitoring System
IOT Based Environmental Pollution Monitoring SystemIOT Based Environmental Pollution Monitoring System
IOT Based Environmental Pollution Monitoring System
 
SMART STREET LIGHTING AND MONITORING SYSTEM BASED ON SUNLIGHT INTENSITY DETEC...
SMART STREET LIGHTING AND MONITORING SYSTEM BASED ON SUNLIGHT INTENSITY DETEC...SMART STREET LIGHTING AND MONITORING SYSTEM BASED ON SUNLIGHT INTENSITY DETEC...
SMART STREET LIGHTING AND MONITORING SYSTEM BASED ON SUNLIGHT INTENSITY DETEC...
 
IRJET- Machine Learning for Weather Prediction and Forecasting for Local Weat...
IRJET- Machine Learning for Weather Prediction and Forecasting for Local Weat...IRJET- Machine Learning for Weather Prediction and Forecasting for Local Weat...
IRJET- Machine Learning for Weather Prediction and Forecasting for Local Weat...
 
GESTURE CONTROL FORKLIFT
GESTURE CONTROL FORKLIFTGESTURE CONTROL FORKLIFT
GESTURE CONTROL FORKLIFT
 
IRJET- Home Automation using IoT: Review
IRJET- Home Automation using IoT: ReviewIRJET- Home Automation using IoT: Review
IRJET- Home Automation using IoT: Review
 
Wind Turbine Monitoring System Using IoT
Wind Turbine Monitoring System Using IoTWind Turbine Monitoring System Using IoT
Wind Turbine Monitoring System Using IoT
 
Meter SCADA
Meter SCADAMeter SCADA
Meter SCADA
 
AGRICULTURE ENVIRONMENT MONITORING SYSTEM USING ANDROID
AGRICULTURE ENVIRONMENT MONITORING SYSTEM USING ANDROIDAGRICULTURE ENVIRONMENT MONITORING SYSTEM USING ANDROID
AGRICULTURE ENVIRONMENT MONITORING SYSTEM USING ANDROID
 
IRJET- Sensors implementation in AGV & IoT based data visualization over clie...
IRJET- Sensors implementation in AGV & IoT based data visualization over clie...IRJET- Sensors implementation in AGV & IoT based data visualization over clie...
IRJET- Sensors implementation in AGV & IoT based data visualization over clie...
 
Solar-Powered IoT-Enabled Weather Monitoring System with AJAX- Based Webserve...
Solar-Powered IoT-Enabled Weather Monitoring System with AJAX- Based Webserve...Solar-Powered IoT-Enabled Weather Monitoring System with AJAX- Based Webserve...
Solar-Powered IoT-Enabled Weather Monitoring System with AJAX- Based Webserve...
 
IRJET- Earthquake Early Warning System for Android
IRJET-  	  Earthquake Early Warning System for AndroidIRJET-  	  Earthquake Early Warning System for Android
IRJET- Earthquake Early Warning System for Android
 
IRJET- IoT based Noise and Pollution Monitoring System
IRJET- IoT based Noise and Pollution Monitoring SystemIRJET- IoT based Noise and Pollution Monitoring System
IRJET- IoT based Noise and Pollution Monitoring System
 
IRJET- Implementation of IoT in Agriculture with Real Time Environmental, Soi...
IRJET- Implementation of IoT in Agriculture with Real Time Environmental, Soi...IRJET- Implementation of IoT in Agriculture with Real Time Environmental, Soi...
IRJET- Implementation of IoT in Agriculture with Real Time Environmental, Soi...
 
IRJET- Weather Station Quadcopter using Arduino with NRF24L01 and GPS Module
IRJET-  	  Weather Station Quadcopter using Arduino with NRF24L01 and GPS ModuleIRJET-  	  Weather Station Quadcopter using Arduino with NRF24L01 and GPS Module
IRJET- Weather Station Quadcopter using Arduino with NRF24L01 and GPS Module
 
SMART WASTE MANAGEMENT SYSTEM USING IOT
SMART WASTE MANAGEMENT SYSTEM USING IOTSMART WASTE MANAGEMENT SYSTEM USING IOT
SMART WASTE MANAGEMENT SYSTEM USING IOT
 

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

Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
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
 
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
 
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
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
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
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learningmisbanausheenparvam
 
(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
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
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
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
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
 
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
 

Recently uploaded (20)

Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
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...
 
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
 
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
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
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)
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learning
 
(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
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
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
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
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
 
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
 

IRJET- Wireless Sensor Network(WSN) Implementation in IoT based Smart City

  • 1. © 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 703 Wireless Sensor Network (WSN) Implementation in IOT Based Smart City Vishal Lahane1, Pooja Band2, S.T. Valunjkar3 1,2M.Tech Scholar, Electronic Design and Technology, NIELIT Aurangabad, Maharashtra 3Scientist ‘E’, M.Tech (Electrical Machines and Industrial Drives), NIELIT Aurangabad, Maharashtra ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract: as the IoT (Internet of Things) has made the man machine interface a very sophisticated thing. Due to this a large number of devices got connected to the internet. The proposed system forms the network (WirelessSensorNetwork or also termed as WSN) of such devices(Sensors) which collectively sends the real time weather parameters (Temperature, Humidity, Light Intensity and Depth of water level present in Dam) of particular location to the local Web server created using Arduino platform. The system also provides the certain kind of Security. Hencesystemcanonly be accessed and monitored by authorized persons.) Key Words: IoT, WSN, Arduino, Web Server. 1. INTRODUCTION The IoT is trending concept getting popular across the globe. Due to IoT the man machine communication became too much easy. A lot of research is going in this section. In the conventional system the various weather parameters were measured by conventional methods but getting real time data wasnotpossible.Theproposedsystem collects the weather parameters such as temperature, humidity, external light intensity and water level present in dam of particular location. The whole city has network of such sensors which will collectdata andsimultaneouslysend it to the web server. Present innovations in technology mainly focus on controlling and monitoring of different activities. These are increasingly emerging to reach the human needs. Most of this technology is focused on efficient monitoring and controlling different activities. An efficient environmental monitoring system is required to monitor and assess the conditions in case of exceeding the prescribed level of parameters. When the objects like environment equipped with sensor devices, microcontroller and various software applications becomes a self-protecting and self-monitoring environment and it is also called as smart environment. The effects due to the environmental changes on animals, plants and human beings can be monitoredandcontrolledbysmart environmental monitoring system. By using Intelligent Network of Sensors and IoT across the city makes the environment interactive with other objectives, this is one of the application that smart environment targets. Human needs demands different types of monitoring systems these are depends on the type of data gathered by the sensor devices. Event Detection based and Spatial Process Estimation are the two categories to which applications are classified. Initially the sensor devices are deployed in environment to detect the parameters (e.g., Temperature, Humidity, Environmental Light Intensity etc.) whilethedata acquisition, computation and controlling action. Sensor devices are placed at different locations to collect thedata to predict the behavior of a particulararea ofinterest.Themain aim of this paper is to design and implement an efficient monitoring system through which the required parameters are monitored remotely using internet. The solution provides an intelligent remote monitoring for a particular area of interest. In this paper we also present a trending results of collected or sensed data withrespecttothenormal or specified ranges of particular parameters. The embedded system is an integration of sensor devices, wireless communication which enables the user to remotely access the various parameters. The wholesensordata will bewhich will be transferred to the server will be secured by certain algorithms. 2. Methodology For the implementationoftheproposedsystemwehaveused the Arduino Mega 2560 development board which has ATmega2560. To measurethe temperatureand humiditywe have used the DHT11 sensor which is combined module which provides temperature as well as humidity present in environment. The DHT11 provides digital values of temperature and humidity and these values are sent to the local webserver local webserver created using arduino and Ethernet shield. Theenvironmentallightintensityisdetected by the Light Dependent Resistor (LDR) sensor. Thissensoris used alongwith10kresistorinvoltagedivisionconfiguration. The light intensity is converted into the percent value by doing certain mathematical calculations and simultaneously sent to the local webserver. The water level presentindamis then measured by ultrasonic sensor HC SR-04 and it is also sent in real time to the local webserver. Ethernet Shield used is W5100 by Wiznet. The Ethernet shield is connected to arduino board by Serial Peripheral Interface (SPI) protocol. The Ethernet shield then sendsdatatorouter(DigisolDGHR- 3400). The Ethernet shield and routerareconnectedthrough TCP/IP protocol. The router assigns IP address to Ethernet shield. The data canbeaccessibleonsecuredwebsitethrough internet service provider (ISP). The whole data is secured through MD5 encryptiontechniquedevelopedusingphp.The following is the block diagram of the proposed system: International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 08 | Aug 2018 www.irjet.net p-ISSN: 2395-0072
  • 2. © 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 704 Fig- 1: Block Diagram of the proposed system 3. HADWARE DESIGN The hardware of the system is enclosed inperfectABSPlastic enclosure. The hardware setupofthesystemisshownbelow: Fig- 2: Hardware Setup The testing hardware setup is made with the help of breadboard. All the sensors i.e. LDR, DHT11 and HC SR-04 are interfaced with Arduino Mega 2560. The whole setup is shown in next image Fig-3. Fig- 3: System Setup with Network Interface 4. SOFTWARE INTERFACE The software tool used to write down the code for the proposed system is Arduino IDE. Basically this is the compiler. The code written in this compiler is dumped into the hardware through USB interface present on arduino board. The GUI (Graphic UserInterface) of the arduino IDEis shown in below figure Fig- 4: Fig-4: GUI of Arduino IDE 5. Experimentation and Results: 5.1: Formula Used: For the conversion of analog values received from LDR sensor into the percent value, we used following formula: LDR_Value = analogRead(LDR_Pin); Percent_Intensity = ((LDR_Value - 30.00) / 993) * 100; International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 08 | Aug 2018 www.irjet.net p-ISSN: 2395-0072
  • 3. © 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 705 Percent_Intensity = 100 - Percent_Intensity; The formula is developed by subtracting the minimum value that is 30.00 (we got this from observation) from LDR_value (variable giving real timeanalog value of LightIntensity)and then we divided this value by (1023-30=993) as we have 10 bit ADC present in arduino. Then we multiplied this value by 100 to convert into percent. As we were getting the reverse values weusedcomplementaryfunctiontogetcorrectvalues. We got accurate values of temperature and humidity using DHT library. Following Figure Fig-5 is GUI of serial monitor showing all the sensor readings sent through serial port at baud rate of 9600: Fig-5: Serial Monitor Output Window 5.2. GRAPHS OBTAINED The graph of Light Intensity on Serial Plotter is shown in Chart-1: Chart-1: Light Intensity Graph of LDR The graph of temperature and humidity is also plotted using serial plotter. It is shown in Chart-2: Chart-2: Temperature-Humidity Graph The final output is shown on the local webserver created using the arduino Ethernet shield. Here we allocated the IP address 169.254.57.24 to theEthernetshield.Whenweenter this IP address into the web browser we get all the sensor data on webpage created using basic HTML. The final output is shown in the Fig-6: Fig-6: Arduino Local Webserver International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 08 | Aug 2018 www.irjet.net p-ISSN: 2395-0072
  • 4. © 2018, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 706 6. CONCLUSION Hence we have developed the proposed system which takes readings from various sensors like LDR, DHT11 and Ultrasonic Sensor HC SR-04 which real time information of the parameters Environmental LightIntensity,Temperature, humidity and water lever present in dam of smart city. We also putted these real time readings onto the arduino webserver created using HTML. The whole interface is secured through hash tag of MD5 encryption technique developed using PHP. ACKNOWLEDGEMENT Any accomplishment requires the effort of many people and this work is no different. I find great pleasure in expressing my deep sense of gratitude towards all those who havemade it possible for me to complete this project successfully. I would like to thank my Guide Mr. S.T. Valunjkar for his inspiration, guidance & support. I am sincerely thankful to him forprovidingresourcesinlaboratoryandIamverymuch thankful to all teaching and non-teaching staff who were directly and indirectly involved in my project work. I would like to thank my project partner Ms. Pooja Band for her continuous support while completion of this project. I also like to thank all my friends who helpedmeforthecompletion of the project. Lastly, I wish to thank my parents for having raised me in such conducive and loving environment, for teaching me to work hard and persevere which has enabled me to come so far. REFERENCES [1] M. H. Asghar, A. Negi, and N. Mohammadzadeh, “Principle application and vision in internet of things (iot),” in International Conference on Computing, Communication Automation, May 2015, pp. 427–431. [2] A. Gheith, R. Rajamony, P. Bohrer, K. Agarwal, M.Kistler, B. L. W.Eagle, C. A. Hambridge, J. B. Carter, and T. Kaplinger, “Ibm bluemix mobile cloud services,” IBM Journal of Research and Development, vol. 60, no. 2-3, pp. 7:1–7:12, March 2016. [3] S. Gangopadhyay and M. K. Mondal, “A wireless framework for environmental monitoring and instant response alert,” in 2016 International Conference on Microelectronics, Computing and Communications (MicroCom), Jan 2016, pp. 1–6. [4] H. Saini, A. Thakur, S. Ahuja, N.Sabharwal,andN.Kumar, “Arduino based automatic wirelessweatherstationwith remote graphical application and alerts,” in 2016 3rd International Conference on Signal Processing and Integrated Networks (SPIN), Feb 2016, pp. 605–609. [5] A. Lage and J. C. Correa, “Weather station with cellular communication network,” in 2015 XVI Workshop on Information Processingand Control(RPIC),Oct2015,pp. 1–5. [6] T. Thaker, “Esp8266 based implementation of wireless sensor network with linux based web-server,” March 2016. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 05 Issue: 08 | Aug 2018 www.irjet.net p-ISSN: 2395-0072