SlideShare a Scribd company logo
International Journal of Trend in Scientific Research and Development (IJTSRD)
Volume 4 Issue 4, June 2020 Available Online: www.ijtsrd.com e-ISSN: 2456 – 6470
@ IJTSRD | Unique Paper ID – IJTSRD30968 | Volume – 4 | Issue – 4 | May-June 2020 Page 367
IoT Based Autonomous Irrigation System
Omkar Sadwilkar, Ayush Shah, Bhumik Shah, Tina Maru
Department of Computer Engineering, Shah & Anchor
Kutchhi Engineering College, Mumbai, Maharashtra, India
ABSTRACT
The earth’s most important aspect responsible for supporting life is water.
Although there is plenty of water available on the earth, wecannotfullyutilize
it as most of it is in the form of oceans. It seems fascinating that only 3 percent
of the earth’s water is fresh, out of which most of it is frozen in ice caps.
Humans have developed methods for cultivation of crops and production of
livestock called as agriculture. As agriculture revolves around water usage in
order for the plants to grow, there comes the need to utilize the available
water effectively. The ever-increasing enhancements in technology over the
years have made significant changes on howthingsaredone.Theintroduction
of Internet of Things has made it possible for different devicestowork insync,
gather and exchange information that can either be monitored real-time or
logged for further use. Hence, using this technology in irrigation may not only
reduce the manual labor of farmers but also help in saving water by
controlling the usage.
KEYWORDS: agriculture, farmers, water, technology, internet of things
How to cite this paper: Omkar Sadwilkar
| Ayush Shah | Bhumik Shah | Tina Maru
"IoT Based Autonomous Irrigation
System" Publishedin
International Journal
of Trend in Scientific
Research and
Development
(ijtsrd), ISSN: 2456-
6470, Volume-4 |
Issue-4, June 2020,
pp.367-370, URL:
www.ijtsrd.com/papers/ijtsrd30968.pdf
Copyright © 2020 by author(s) and
International Journal ofTrendinScientific
Research and Development Journal. This
is an Open Access article distributed
under the terms of
the Creative
CommonsAttribution
License (CC BY 4.0)
(http://creativecommons.org/licenses/by
/4.0)
INTRODUCTION
Agriculture has been into practice since a long time; it has
been an important method for production of food. Water is
mainly used for irrigation in the agriculturepracticeandthus
it needs to be saved as much as possible to prevent water
scarcity. Irrigation must be controlled in order for a better
yield. Various sensors and micro-controllers make it easy to
supply water in a controlledmanner,andinformationrelated
to the real-world environment can be perceived and acted
upon. The schedule for watering the cropsontheagricultural
field or a controlled environment can be set-up and
implemented with little to no human effort. This gives
another option for implementing the system in a small
garden with a few plants and monitoring soil moisture
content. For the system to be remotely accessible,
information related to the entirefieldorgardencanbestored
into a database in the back-end as well as a web portal in the
front-end. Sensors, micro-controllers and other devices are
linked successfully to the web portal, thereby enabling the
user to easily monitor the environment.Whetheritisusedon
an agricultural field or a controlled environment like garden,
autonomous irrigation will be a great help in planning the
irrigation activity and controlling water usage promptly.The
internet is a medium from where all the information related
to water usage is accessed by the user.Awebsiteallowingthe
user to plan the irrigation schedule, monitor the flow of
water, display the status of soil is built. This web portal also
includes aspects like setting up user profiles, selecting
schedules for different types crops/plants and
creating/modifyingroutinesasrequiredforirrigation.Hence,
demand for this system will increase in the coming years as
the population is increasing rapidly.
I. Proposed System
A. Architecture
For the purpose of integrating sensors and other devices
necessary to build the system that may function probably
without any manual assistance,adesignandlayoutshouldbe
built, by which there is a clear understanding of what should
be done. The general idea behind incorporating sensorswith
a micro-controller is that there is a proper co-operation
between devices that are actually taking the real-world
environment as an input and performing several operations
upon the data that is acquired.
Fig. 1 Hardware Layout
IJTSRD30968
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID – IJTSRD30968 | Volume – 4 | Issue – 4 | May-June 2020 Page 368
Fig. 2 Architecture
The system includes Arduino UNO with the ATMEGA328P IC
along with soil moisture sensor for gathering data regarding
moisture content in the soil, a rain sensor for detecting
rainfall intensity (required when implemented in an open
environment), a water pump for supplying water whenever
required, and finally an ultrasonic range finder to keep track
of the availability of water in the tank. The ultrasonic sensor
uses sound waves to detect the distance; it can be used to
detect water level without the need to submerge it inside
water. This gives an edge over other water level sensors that
are required to be submerged inside of water, thereby
making it easy to keep track of water usage.
B. Interfacing Sensors and Micro-controller
The main aimofinterfacingsensorswiththemicro-controller
is to make sure that the sensors are utilized effectively as per
the need. The Arduino UNO in this case is programmableand
thus provides support for fetchingthesensorreadings.These
readings will then be transferred over the internet in the
database as well as displayed on the web portal in real-time.
Once the micro-controller is interfaced with sensors, thereis
a need for a Wi-Fi module in order to transmit the fetched
data. The ESP-01 8266 is responsible for this.
The Setup function for Wi-Fi Module:
void setup() {
Serial.begin(115200);
espSerial.begin(115200);
espSerial.println("AT+RST");
showResponse(1000);
espSerial.println("AT+CWMODE=1");
showResponse(1000);
espSerial.println("AT+CWJAP=""+ssid+"”,
""+password+""");
showResponse(5000);
Serial.println("Setup completed");
}
Function for fetching readings form Sensors:
void loop()
{
int soilmoisture = analogRead(A0);
int rainsensor = analogRead(A1);
Serial.println(soilmoisture);
Serial.println(rainsensor);
}
Transmitting data fetched from sensors:
GET /insert.php?id=1&s=2&r=2&m=1 HTTP/1.1rn
The Arduino UNO along with the 8266 supports GET; It is
used to transmit readings directly to the web portal over the
internet to the specific website while makingentriesontothe
database.
C. Database Design & Web Portal
As data fetched from the sensors becomes ready to be
transmitted over the internet, it should be sent to an
appropriate website and must be stored in a properly
designed database.
Database can be created using MYSQL as per the need.
However, a schematic should be created for the database to
be correctly designed based on the requirement.
Fig. 3 Database Design
Furthermore, the need for designing a UI (User Interface) at
the front end will enable the user to monitor the fetched and
stored data with ease. The GUI (Graphical User Interface)
would be a website accessible from a desktop computer or
any other mobile device that supports internet connectivity.
This is essential as there are a variety of internet connected
devices today and the user experience should not be
compromised.
Fig. 4 User Registration & Login Page
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID – IJTSRD30968 | Volume – 4 | Issue – 4 | May-June 2020 Page 369
Lastly, allowing the user to view data obtained from the
hardware unit in an easiest way is to display it in the form of
graph. Web design technologies such as HTML, CSS and
JavaScript are used for making the front end easilyaccessible
and attractive for the end user. The hypertext pre-processor
(PHP) helps in building logic at the back end. The portal will
not only allow the user to monitor in real-time but also
control the pump motor. The pump motor can be in AUTO
state for automatic operation and OFF state while switched
off. The ultrasonic sensor will be active when the pump is in
either of the states in order to monitor the water level of the
tank and keep track of water being used.
Fig. 5 Real-time Monitoring
For mobile devices, a progressive web app makes accessing
the portal easy. Due to this one can view the status of the
garden or a field on the preferred mobile device without any
compatibility issue. Progressive web app makes it easy for
the user to directlyaccess theportal from the home screenof
the mobile device.
Fig. 6 Progressive app viewed on mobile device
Fig. 7 Real-time view on mobile device
II. Related Works
Sr.
No
Author/Year Concept Remarks
1
Shweta B.
Saraf,
Dhanashri H.
Gawali
/2017
IoT Based
Smart
Irrigation
Monitoring
and
Controlling
System
The concept
behind this work
is is focus on
making irrigation
a smart process
by monitoring.
2
Dweepayan
Mishra,
Arzeena Khan,
Rajeev Tiwari,
Shuchi
Upadhyay
/2018
Automated
Irrigation
System-IoT
Based
Approach
This paper
focuses on the
concept behind
reducing manual
labour required
for irrigation.
III. Summary
The proposed implementation will be useful forsmallaswell
aslarge areas giving the users e.g. farmers,gardeners,etc.the
luxury of monitoring their fields as well as controlling the
environment associated with them, either it is few acres
agricultural field or a small garden. Upon having controlover
the irrigation process, one can save water to a great extent.
The data obtained by sensors can further be used for
predicting the yield on a particular soil, thereby suggesting
the crops that can be grown. Overall, this system may also be
used to schedule watering of plants/crops on a daily or
weekly basis.
IV. Conclusion
Thus, the implemented system solves different real-world
problems by incorporating hardware devices which are in
sync with each other, partially manging and controlling the
environment they are associated with. A user-friendly GUI
makes it easier by displaying the necessary functionalities
and allowing users to interact with the hardware unit.
Ultimately, the manual labour is reduced with added
precision as the micro-controller operates based on fixed
constraints in order to balance the responses needed to
control interfaced sensors and deliver prompt service to the
end user.
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID – IJTSRD30968 | Volume – 4 | Issue – 4 | May-June 2020 Page 370
ACKNOWLEDGMENT
We would like to thank Mrs. Tina Maru for guiding us with
information about severalconceptsintheprocess,alongwith
useful critics that made our project reach a good standard.
Also, would like to appreciate the co-operation displayed by
the fellow team members in the making of this system.
REFERENCES
[1] Sayali Wedekar, Vinayak Wakhare, “Smart Water
Management using IoT,” 5th International Conference
on Wireless Networks and Embedded Systems
(WECON), October 2016.
[2] R. Nandhini, Priyanja Jose, “Arduino Based Smart
Irrigation System”, 3rd National Conference on IICT,
2017.
[3] Shweta B. Saraf and Dhanashri H. Gawali, “IoT based
Smart Irrigation Monitoring and Controlling,” 2nd IEEE
International Conference on Recent Trends in
Electronics, Information & Technology (RTEICT), May
2017.
[4] Dweepayan Mishra, Arzeena Khan, Rajeev Tiwari,
Shushi Upadhyay, “Automated Irrigation System-IoT
Based Approach”, 3rd International Conference On
Internet of Things: Smart Innovation and Usages (IoT-
SIU), November 2018.

More Related Content

What's hot

IRJET- Farmer’s friend: Utilization of IoT and Web Application in Agricul...
IRJET-  	  Farmer’s friend: Utilization of IoT and Web Application in Agricul...IRJET-  	  Farmer’s friend: Utilization of IoT and Web Application in Agricul...
IRJET- Farmer’s friend: Utilization of IoT and Web Application in Agricul...
IRJET Journal
 
An internet of things ecosystem for planting of coriander (Coriandrum sativum...
An internet of things ecosystem for planting of coriander (Coriandrum sativum...An internet of things ecosystem for planting of coriander (Coriandrum sativum...
An internet of things ecosystem for planting of coriander (Coriandrum sativum...
IJECEIAES
 
Analyzing Smart Agriculture in Terms of IoT
Analyzing Smart Agriculture in Terms of IoTAnalyzing Smart Agriculture in Terms of IoT
Analyzing Smart Agriculture in Terms of IoT
ijtsrd
 
How iot mobile apps are transforming the workflow in diverse sectors!
How iot mobile apps are transforming the workflow in diverse sectors!How iot mobile apps are transforming the workflow in diverse sectors!
How iot mobile apps are transforming the workflow in diverse sectors!
Shelly Megan
 
Thought Leadership Series: Precision Agriculture June 2018
Thought Leadership Series: Precision Agriculture June 2018Thought Leadership Series: Precision Agriculture June 2018
Thought Leadership Series: Precision Agriculture June 2018
Pieter De Jager
 
Smart digital farming
Smart digital farmingSmart digital farming
Smart digital farming
ClusteriX20
 
A Survey: Modernizing Agriculture in India
A Survey: Modernizing Agriculture in IndiaA Survey: Modernizing Agriculture in India
A Survey: Modernizing Agriculture in India
ijtsrd
 
SMART TECHNOLOGY IN FARMING DEVELOPMENT
SMART TECHNOLOGY IN FARMING DEVELOPMENT SMART TECHNOLOGY IN FARMING DEVELOPMENT
SMART TECHNOLOGY IN FARMING DEVELOPMENT
IAEME Publication
 
IoT applications in rural and agriculture in pdf
IoT applications in rural and agriculture in pdfIoT applications in rural and agriculture in pdf
IoT applications in rural and agriculture in pdf
WorldResourcesWebina
 
IoT based Digital Agriculture Monitoring System and Their Impact on Optimal U...
IoT based Digital Agriculture Monitoring System and Their Impact on Optimal U...IoT based Digital Agriculture Monitoring System and Their Impact on Optimal U...
IoT based Digital Agriculture Monitoring System and Their Impact on Optimal U...
Journal For Research
 
Iot in agriculture
Iot in agricultureIot in agriculture
Iot in agriculture
haranadhreddy2
 
IoT Applications in Agriculture
IoT Applications in AgricultureIoT Applications in Agriculture
IoT Applications in Agriculture
Dr. Mazlan Abbas
 
Green IoT Agriculture and HealthcareApplication (GAHA)
Green IoT Agriculture and HealthcareApplication (GAHA)Green IoT Agriculture and HealthcareApplication (GAHA)
Green IoT Agriculture and HealthcareApplication (GAHA)
aswathy v
 
10 hot IoT applications
10 hot IoT applications10 hot IoT applications
10 hot IoT applications
Antenna Manufacturer Coco
 
Application of IOT in Smart Agriculture
Application of IOT in Smart AgricultureApplication of IOT in Smart Agriculture
Application of IOT in Smart Agriculture
nazimshaikh29
 
Data Analytics for IoT - BrightTalk Webinar
Data Analytics for IoT - BrightTalk WebinarData Analytics for IoT - BrightTalk Webinar
Data Analytics for IoT - BrightTalk Webinar
Muralidhar Somisetty
 
The Potential of IoT in Agriculture
The Potential of IoT in Agriculture The Potential of IoT in Agriculture
The Potential of IoT in Agriculture
Dr. Mazlan Abbas
 
The use of Drones in precision agriculture, by Erick Njuri
The use of Drones in precision agriculture, by Erick NjuriThe use of Drones in precision agriculture, by Erick Njuri
The use of Drones in precision agriculture, by Erick Njuri
Erick Njuri
 
IoT based water saving technique for Green Farming
IoT based water saving technique for Green FarmingIoT based water saving technique for Green Farming
IoT based water saving technique for Green Farming
ijtsrd
 
An iot based smart garden with weather station system
An iot based smart garden with weather station systemAn iot based smart garden with weather station system
An iot based smart garden with weather station system
CloudTechnologies
 

What's hot (20)

IRJET- Farmer’s friend: Utilization of IoT and Web Application in Agricul...
IRJET-  	  Farmer’s friend: Utilization of IoT and Web Application in Agricul...IRJET-  	  Farmer’s friend: Utilization of IoT and Web Application in Agricul...
IRJET- Farmer’s friend: Utilization of IoT and Web Application in Agricul...
 
An internet of things ecosystem for planting of coriander (Coriandrum sativum...
An internet of things ecosystem for planting of coriander (Coriandrum sativum...An internet of things ecosystem for planting of coriander (Coriandrum sativum...
An internet of things ecosystem for planting of coriander (Coriandrum sativum...
 
Analyzing Smart Agriculture in Terms of IoT
Analyzing Smart Agriculture in Terms of IoTAnalyzing Smart Agriculture in Terms of IoT
Analyzing Smart Agriculture in Terms of IoT
 
How iot mobile apps are transforming the workflow in diverse sectors!
How iot mobile apps are transforming the workflow in diverse sectors!How iot mobile apps are transforming the workflow in diverse sectors!
How iot mobile apps are transforming the workflow in diverse sectors!
 
Thought Leadership Series: Precision Agriculture June 2018
Thought Leadership Series: Precision Agriculture June 2018Thought Leadership Series: Precision Agriculture June 2018
Thought Leadership Series: Precision Agriculture June 2018
 
Smart digital farming
Smart digital farmingSmart digital farming
Smart digital farming
 
A Survey: Modernizing Agriculture in India
A Survey: Modernizing Agriculture in IndiaA Survey: Modernizing Agriculture in India
A Survey: Modernizing Agriculture in India
 
SMART TECHNOLOGY IN FARMING DEVELOPMENT
SMART TECHNOLOGY IN FARMING DEVELOPMENT SMART TECHNOLOGY IN FARMING DEVELOPMENT
SMART TECHNOLOGY IN FARMING DEVELOPMENT
 
IoT applications in rural and agriculture in pdf
IoT applications in rural and agriculture in pdfIoT applications in rural and agriculture in pdf
IoT applications in rural and agriculture in pdf
 
IoT based Digital Agriculture Monitoring System and Their Impact on Optimal U...
IoT based Digital Agriculture Monitoring System and Their Impact on Optimal U...IoT based Digital Agriculture Monitoring System and Their Impact on Optimal U...
IoT based Digital Agriculture Monitoring System and Their Impact on Optimal U...
 
Iot in agriculture
Iot in agricultureIot in agriculture
Iot in agriculture
 
IoT Applications in Agriculture
IoT Applications in AgricultureIoT Applications in Agriculture
IoT Applications in Agriculture
 
Green IoT Agriculture and HealthcareApplication (GAHA)
Green IoT Agriculture and HealthcareApplication (GAHA)Green IoT Agriculture and HealthcareApplication (GAHA)
Green IoT Agriculture and HealthcareApplication (GAHA)
 
10 hot IoT applications
10 hot IoT applications10 hot IoT applications
10 hot IoT applications
 
Application of IOT in Smart Agriculture
Application of IOT in Smart AgricultureApplication of IOT in Smart Agriculture
Application of IOT in Smart Agriculture
 
Data Analytics for IoT - BrightTalk Webinar
Data Analytics for IoT - BrightTalk WebinarData Analytics for IoT - BrightTalk Webinar
Data Analytics for IoT - BrightTalk Webinar
 
The Potential of IoT in Agriculture
The Potential of IoT in Agriculture The Potential of IoT in Agriculture
The Potential of IoT in Agriculture
 
The use of Drones in precision agriculture, by Erick Njuri
The use of Drones in precision agriculture, by Erick NjuriThe use of Drones in precision agriculture, by Erick Njuri
The use of Drones in precision agriculture, by Erick Njuri
 
IoT based water saving technique for Green Farming
IoT based water saving technique for Green FarmingIoT based water saving technique for Green Farming
IoT based water saving technique for Green Farming
 
An iot based smart garden with weather station system
An iot based smart garden with weather station systemAn iot based smart garden with weather station system
An iot based smart garden with weather station system
 

Similar to IoT Based Autonomous Irrigation System

IRJET- Advanced Water Quality Monitoring with IoT
IRJET-  	  Advanced Water Quality Monitoring with IoTIRJET-  	  Advanced Water Quality Monitoring with IoT
IRJET- Advanced Water Quality Monitoring with IoT
IRJET Journal
 
IOT AND ARTIFICIAL INTELLIGENCE BASED SMART GARDENING AND IRRIGATION SYSTEM.pdf
IOT AND ARTIFICIAL INTELLIGENCE BASED SMART GARDENING AND IRRIGATION SYSTEM.pdfIOT AND ARTIFICIAL INTELLIGENCE BASED SMART GARDENING AND IRRIGATION SYSTEM.pdf
IOT AND ARTIFICIAL INTELLIGENCE BASED SMART GARDENING AND IRRIGATION SYSTEM.pdf
Samira Akter Tumpa
 
Design and Development of IoT and Cloud Based Smart Farming System for Optimu...
Design and Development of IoT and Cloud Based Smart Farming System for Optimu...Design and Development of IoT and Cloud Based Smart Farming System for Optimu...
Design and Development of IoT and Cloud Based Smart Farming System for Optimu...
ijtsrd
 
IRJET - Farm Field Monitoring Using IoT-A Survey Paper
IRJET - Farm Field Monitoring Using IoT-A Survey PaperIRJET - Farm Field Monitoring Using IoT-A Survey Paper
IRJET - Farm Field Monitoring Using IoT-A Survey Paper
IRJET Journal
 
IoT Based Remote Monitoring and Controlling for Shutter Systems
IoT Based Remote Monitoring and Controlling for Shutter SystemsIoT Based Remote Monitoring and Controlling for Shutter Systems
IoT Based Remote Monitoring and Controlling for Shutter Systems
ijtsrd
 
A Survey on Solar Based Smart Antibiotic Sprinkler System Using Internet of T...
A Survey on Solar Based Smart Antibiotic Sprinkler System Using Internet of T...A Survey on Solar Based Smart Antibiotic Sprinkler System Using Internet of T...
A Survey on Solar Based Smart Antibiotic Sprinkler System Using Internet of T...
IRJET Journal
 
Smart irrigation ppt
Smart irrigation pptSmart irrigation ppt
Smart irrigation ppt
kuncham penchalanarasaiah
 
Real Time Monitoring of Self Propelled Center Pivot Irrigation System using M...
Real Time Monitoring of Self Propelled Center Pivot Irrigation System using M...Real Time Monitoring of Self Propelled Center Pivot Irrigation System using M...
Real Time Monitoring of Self Propelled Center Pivot Irrigation System using M...
ijtsrd
 
An IOT Based Smart Irrigation System Using Soil Moisture And Weather Prediction
An IOT Based Smart Irrigation System Using Soil Moisture And Weather PredictionAn IOT Based Smart Irrigation System Using Soil Moisture And Weather Prediction
An IOT Based Smart Irrigation System Using Soil Moisture And Weather Prediction
Jose Katab
 
IRJET- An Effective Automated Irrigation Control and Monitoring System us...
IRJET-  	  An Effective Automated Irrigation Control and Monitoring System us...IRJET-  	  An Effective Automated Irrigation Control and Monitoring System us...
IRJET- An Effective Automated Irrigation Control and Monitoring System us...
IRJET Journal
 
IRJET- Smart Farming using IoT
IRJET- Smart Farming using IoTIRJET- Smart Farming using IoT
IRJET- Smart Farming using IoT
IRJET Journal
 
IRJET- A Review on E- Health Agricultural Monitoring System through WSN
IRJET- A Review on E- Health Agricultural Monitoring System through WSNIRJET- A Review on E- Health Agricultural Monitoring System through WSN
IRJET- A Review on E- Health Agricultural Monitoring System through WSN
IRJET Journal
 
Precision Agriculture for Water Management Using IOT
Precision Agriculture for Water Management Using IOTPrecision Agriculture for Water Management Using IOT
Precision Agriculture for Water Management Using IOT
rahulmonikasharma
 
IRJET - Live and Smart Agriculture
IRJET - Live and Smart AgricultureIRJET - Live and Smart Agriculture
IRJET - Live and Smart Agriculture
IRJET Journal
 
IRJET- Smart Agricultural System
IRJET-  	  Smart Agricultural SystemIRJET-  	  Smart Agricultural System
IRJET- Smart Agricultural System
IRJET Journal
 
IRJET- Smart Water Monitoring System using IoT
IRJET- Smart Water Monitoring System using IoTIRJET- Smart Water Monitoring System using IoT
IRJET- Smart Water Monitoring System using IoT
IRJET Journal
 
IRJET- Soilless Cultivation using IoT
IRJET- Soilless Cultivation using IoTIRJET- Soilless Cultivation using IoT
IRJET- Soilless Cultivation using IoT
IRJET Journal
 
IRJET- IoT based Smart Greenhouse Automation System
IRJET-  	  IoT based Smart Greenhouse Automation SystemIRJET-  	  IoT based Smart Greenhouse Automation System
IRJET- IoT based Smart Greenhouse Automation System
IRJET Journal
 
IoT Based Intelligent Management System for Agricultural Application
IoT Based Intelligent Management System for Agricultural ApplicationIoT Based Intelligent Management System for Agricultural Application
IoT Based Intelligent Management System for Agricultural Application
ijtsrd
 
Smart Drip Irrigation System
Smart Drip Irrigation SystemSmart Drip Irrigation System
Smart Drip Irrigation System
ijtsrd
 

Similar to IoT Based Autonomous Irrigation System (20)

IRJET- Advanced Water Quality Monitoring with IoT
IRJET-  	  Advanced Water Quality Monitoring with IoTIRJET-  	  Advanced Water Quality Monitoring with IoT
IRJET- Advanced Water Quality Monitoring with IoT
 
IOT AND ARTIFICIAL INTELLIGENCE BASED SMART GARDENING AND IRRIGATION SYSTEM.pdf
IOT AND ARTIFICIAL INTELLIGENCE BASED SMART GARDENING AND IRRIGATION SYSTEM.pdfIOT AND ARTIFICIAL INTELLIGENCE BASED SMART GARDENING AND IRRIGATION SYSTEM.pdf
IOT AND ARTIFICIAL INTELLIGENCE BASED SMART GARDENING AND IRRIGATION SYSTEM.pdf
 
Design and Development of IoT and Cloud Based Smart Farming System for Optimu...
Design and Development of IoT and Cloud Based Smart Farming System for Optimu...Design and Development of IoT and Cloud Based Smart Farming System for Optimu...
Design and Development of IoT and Cloud Based Smart Farming System for Optimu...
 
IRJET - Farm Field Monitoring Using IoT-A Survey Paper
IRJET - Farm Field Monitoring Using IoT-A Survey PaperIRJET - Farm Field Monitoring Using IoT-A Survey Paper
IRJET - Farm Field Monitoring Using IoT-A Survey Paper
 
IoT Based Remote Monitoring and Controlling for Shutter Systems
IoT Based Remote Monitoring and Controlling for Shutter SystemsIoT Based Remote Monitoring and Controlling for Shutter Systems
IoT Based Remote Monitoring and Controlling for Shutter Systems
 
A Survey on Solar Based Smart Antibiotic Sprinkler System Using Internet of T...
A Survey on Solar Based Smart Antibiotic Sprinkler System Using Internet of T...A Survey on Solar Based Smart Antibiotic Sprinkler System Using Internet of T...
A Survey on Solar Based Smart Antibiotic Sprinkler System Using Internet of T...
 
Smart irrigation ppt
Smart irrigation pptSmart irrigation ppt
Smart irrigation ppt
 
Real Time Monitoring of Self Propelled Center Pivot Irrigation System using M...
Real Time Monitoring of Self Propelled Center Pivot Irrigation System using M...Real Time Monitoring of Self Propelled Center Pivot Irrigation System using M...
Real Time Monitoring of Self Propelled Center Pivot Irrigation System using M...
 
An IOT Based Smart Irrigation System Using Soil Moisture And Weather Prediction
An IOT Based Smart Irrigation System Using Soil Moisture And Weather PredictionAn IOT Based Smart Irrigation System Using Soil Moisture And Weather Prediction
An IOT Based Smart Irrigation System Using Soil Moisture And Weather Prediction
 
IRJET- An Effective Automated Irrigation Control and Monitoring System us...
IRJET-  	  An Effective Automated Irrigation Control and Monitoring System us...IRJET-  	  An Effective Automated Irrigation Control and Monitoring System us...
IRJET- An Effective Automated Irrigation Control and Monitoring System us...
 
IRJET- Smart Farming using IoT
IRJET- Smart Farming using IoTIRJET- Smart Farming using IoT
IRJET- Smart Farming using IoT
 
IRJET- A Review on E- Health Agricultural Monitoring System through WSN
IRJET- A Review on E- Health Agricultural Monitoring System through WSNIRJET- A Review on E- Health Agricultural Monitoring System through WSN
IRJET- A Review on E- Health Agricultural Monitoring System through WSN
 
Precision Agriculture for Water Management Using IOT
Precision Agriculture for Water Management Using IOTPrecision Agriculture for Water Management Using IOT
Precision Agriculture for Water Management Using IOT
 
IRJET - Live and Smart Agriculture
IRJET - Live and Smart AgricultureIRJET - Live and Smart Agriculture
IRJET - Live and Smart Agriculture
 
IRJET- Smart Agricultural System
IRJET-  	  Smart Agricultural SystemIRJET-  	  Smart Agricultural System
IRJET- Smart Agricultural System
 
IRJET- Smart Water Monitoring System using IoT
IRJET- Smart Water Monitoring System using IoTIRJET- Smart Water Monitoring System using IoT
IRJET- Smart Water Monitoring System using IoT
 
IRJET- Soilless Cultivation using IoT
IRJET- Soilless Cultivation using IoTIRJET- Soilless Cultivation using IoT
IRJET- Soilless Cultivation using IoT
 
IRJET- IoT based Smart Greenhouse Automation System
IRJET-  	  IoT based Smart Greenhouse Automation SystemIRJET-  	  IoT based Smart Greenhouse Automation System
IRJET- IoT based Smart Greenhouse Automation System
 
IoT Based Intelligent Management System for Agricultural Application
IoT Based Intelligent Management System for Agricultural ApplicationIoT Based Intelligent Management System for Agricultural Application
IoT Based Intelligent Management System for Agricultural Application
 
Smart Drip Irrigation System
Smart Drip Irrigation SystemSmart Drip Irrigation System
Smart Drip Irrigation System
 

More from ijtsrd

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

More from ijtsrd (20)

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

Recently uploaded

How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
Celine George
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
RaedMohamed3
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
Tamralipta Mahavidyalaya
 
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup   New Member Orientation and Q&A (May 2024).pdfWelcome to TechSoup   New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
TechSoup
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
GeoBlogs
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
beazzy04
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
heathfieldcps1
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
Jean Carlos Nunes Paixão
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
Vivekanand Anglo Vedic Academy
 
678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf
CarlosHernanMontoyab2
 
Acetabularia Information For Class 9 .docx
Acetabularia Information For Class 9  .docxAcetabularia Information For Class 9  .docx
Acetabularia Information For Class 9 .docx
vaibhavrinwa19
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
EverAndrsGuerraGuerr
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
Atul Kumar Singh
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
kaushalkr1407
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
Embracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic ImperativeEmbracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic Imperative
Peter Windle
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
timhan337
 
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
Nguyen Thanh Tu Collection
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
MIRIAMSALINAS13
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
Pavel ( NSTU)
 

Recently uploaded (20)

How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17How to Make a Field invisible in Odoo 17
How to Make a Field invisible in Odoo 17
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
 
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup   New Member Orientation and Q&A (May 2024).pdfWelcome to TechSoup   New Member Orientation and Q&A (May 2024).pdf
Welcome to TechSoup New Member Orientation and Q&A (May 2024).pdf
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
 
678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf
 
Acetabularia Information For Class 9 .docx
Acetabularia Information For Class 9  .docxAcetabularia Information For Class 9  .docx
Acetabularia Information For Class 9 .docx
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
 
Embracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic ImperativeEmbracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic Imperative
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
 
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
 

IoT Based Autonomous Irrigation System

  • 1. International Journal of Trend in Scientific Research and Development (IJTSRD) Volume 4 Issue 4, June 2020 Available Online: www.ijtsrd.com e-ISSN: 2456 – 6470 @ IJTSRD | Unique Paper ID – IJTSRD30968 | Volume – 4 | Issue – 4 | May-June 2020 Page 367 IoT Based Autonomous Irrigation System Omkar Sadwilkar, Ayush Shah, Bhumik Shah, Tina Maru Department of Computer Engineering, Shah & Anchor Kutchhi Engineering College, Mumbai, Maharashtra, India ABSTRACT The earth’s most important aspect responsible for supporting life is water. Although there is plenty of water available on the earth, wecannotfullyutilize it as most of it is in the form of oceans. It seems fascinating that only 3 percent of the earth’s water is fresh, out of which most of it is frozen in ice caps. Humans have developed methods for cultivation of crops and production of livestock called as agriculture. As agriculture revolves around water usage in order for the plants to grow, there comes the need to utilize the available water effectively. The ever-increasing enhancements in technology over the years have made significant changes on howthingsaredone.Theintroduction of Internet of Things has made it possible for different devicestowork insync, gather and exchange information that can either be monitored real-time or logged for further use. Hence, using this technology in irrigation may not only reduce the manual labor of farmers but also help in saving water by controlling the usage. KEYWORDS: agriculture, farmers, water, technology, internet of things How to cite this paper: Omkar Sadwilkar | Ayush Shah | Bhumik Shah | Tina Maru "IoT Based Autonomous Irrigation System" Publishedin International Journal of Trend in Scientific Research and Development (ijtsrd), ISSN: 2456- 6470, Volume-4 | Issue-4, June 2020, pp.367-370, URL: www.ijtsrd.com/papers/ijtsrd30968.pdf Copyright © 2020 by author(s) and International Journal ofTrendinScientific Research and Development Journal. This is an Open Access article distributed under the terms of the Creative CommonsAttribution License (CC BY 4.0) (http://creativecommons.org/licenses/by /4.0) INTRODUCTION Agriculture has been into practice since a long time; it has been an important method for production of food. Water is mainly used for irrigation in the agriculturepracticeandthus it needs to be saved as much as possible to prevent water scarcity. Irrigation must be controlled in order for a better yield. Various sensors and micro-controllers make it easy to supply water in a controlledmanner,andinformationrelated to the real-world environment can be perceived and acted upon. The schedule for watering the cropsontheagricultural field or a controlled environment can be set-up and implemented with little to no human effort. This gives another option for implementing the system in a small garden with a few plants and monitoring soil moisture content. For the system to be remotely accessible, information related to the entirefieldorgardencanbestored into a database in the back-end as well as a web portal in the front-end. Sensors, micro-controllers and other devices are linked successfully to the web portal, thereby enabling the user to easily monitor the environment.Whetheritisusedon an agricultural field or a controlled environment like garden, autonomous irrigation will be a great help in planning the irrigation activity and controlling water usage promptly.The internet is a medium from where all the information related to water usage is accessed by the user.Awebsiteallowingthe user to plan the irrigation schedule, monitor the flow of water, display the status of soil is built. This web portal also includes aspects like setting up user profiles, selecting schedules for different types crops/plants and creating/modifyingroutinesasrequiredforirrigation.Hence, demand for this system will increase in the coming years as the population is increasing rapidly. I. Proposed System A. Architecture For the purpose of integrating sensors and other devices necessary to build the system that may function probably without any manual assistance,adesignandlayoutshouldbe built, by which there is a clear understanding of what should be done. The general idea behind incorporating sensorswith a micro-controller is that there is a proper co-operation between devices that are actually taking the real-world environment as an input and performing several operations upon the data that is acquired. Fig. 1 Hardware Layout IJTSRD30968
  • 2. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID – IJTSRD30968 | Volume – 4 | Issue – 4 | May-June 2020 Page 368 Fig. 2 Architecture The system includes Arduino UNO with the ATMEGA328P IC along with soil moisture sensor for gathering data regarding moisture content in the soil, a rain sensor for detecting rainfall intensity (required when implemented in an open environment), a water pump for supplying water whenever required, and finally an ultrasonic range finder to keep track of the availability of water in the tank. The ultrasonic sensor uses sound waves to detect the distance; it can be used to detect water level without the need to submerge it inside water. This gives an edge over other water level sensors that are required to be submerged inside of water, thereby making it easy to keep track of water usage. B. Interfacing Sensors and Micro-controller The main aimofinterfacingsensorswiththemicro-controller is to make sure that the sensors are utilized effectively as per the need. The Arduino UNO in this case is programmableand thus provides support for fetchingthesensorreadings.These readings will then be transferred over the internet in the database as well as displayed on the web portal in real-time. Once the micro-controller is interfaced with sensors, thereis a need for a Wi-Fi module in order to transmit the fetched data. The ESP-01 8266 is responsible for this. The Setup function for Wi-Fi Module: void setup() { Serial.begin(115200); espSerial.begin(115200); espSerial.println("AT+RST"); showResponse(1000); espSerial.println("AT+CWMODE=1"); showResponse(1000); espSerial.println("AT+CWJAP=""+ssid+"”, ""+password+"""); showResponse(5000); Serial.println("Setup completed"); } Function for fetching readings form Sensors: void loop() { int soilmoisture = analogRead(A0); int rainsensor = analogRead(A1); Serial.println(soilmoisture); Serial.println(rainsensor); } Transmitting data fetched from sensors: GET /insert.php?id=1&s=2&r=2&m=1 HTTP/1.1rn The Arduino UNO along with the 8266 supports GET; It is used to transmit readings directly to the web portal over the internet to the specific website while makingentriesontothe database. C. Database Design & Web Portal As data fetched from the sensors becomes ready to be transmitted over the internet, it should be sent to an appropriate website and must be stored in a properly designed database. Database can be created using MYSQL as per the need. However, a schematic should be created for the database to be correctly designed based on the requirement. Fig. 3 Database Design Furthermore, the need for designing a UI (User Interface) at the front end will enable the user to monitor the fetched and stored data with ease. The GUI (Graphical User Interface) would be a website accessible from a desktop computer or any other mobile device that supports internet connectivity. This is essential as there are a variety of internet connected devices today and the user experience should not be compromised. Fig. 4 User Registration & Login Page
  • 3. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID – IJTSRD30968 | Volume – 4 | Issue – 4 | May-June 2020 Page 369 Lastly, allowing the user to view data obtained from the hardware unit in an easiest way is to display it in the form of graph. Web design technologies such as HTML, CSS and JavaScript are used for making the front end easilyaccessible and attractive for the end user. The hypertext pre-processor (PHP) helps in building logic at the back end. The portal will not only allow the user to monitor in real-time but also control the pump motor. The pump motor can be in AUTO state for automatic operation and OFF state while switched off. The ultrasonic sensor will be active when the pump is in either of the states in order to monitor the water level of the tank and keep track of water being used. Fig. 5 Real-time Monitoring For mobile devices, a progressive web app makes accessing the portal easy. Due to this one can view the status of the garden or a field on the preferred mobile device without any compatibility issue. Progressive web app makes it easy for the user to directlyaccess theportal from the home screenof the mobile device. Fig. 6 Progressive app viewed on mobile device Fig. 7 Real-time view on mobile device II. Related Works Sr. No Author/Year Concept Remarks 1 Shweta B. Saraf, Dhanashri H. Gawali /2017 IoT Based Smart Irrigation Monitoring and Controlling System The concept behind this work is is focus on making irrigation a smart process by monitoring. 2 Dweepayan Mishra, Arzeena Khan, Rajeev Tiwari, Shuchi Upadhyay /2018 Automated Irrigation System-IoT Based Approach This paper focuses on the concept behind reducing manual labour required for irrigation. III. Summary The proposed implementation will be useful forsmallaswell aslarge areas giving the users e.g. farmers,gardeners,etc.the luxury of monitoring their fields as well as controlling the environment associated with them, either it is few acres agricultural field or a small garden. Upon having controlover the irrigation process, one can save water to a great extent. The data obtained by sensors can further be used for predicting the yield on a particular soil, thereby suggesting the crops that can be grown. Overall, this system may also be used to schedule watering of plants/crops on a daily or weekly basis. IV. Conclusion Thus, the implemented system solves different real-world problems by incorporating hardware devices which are in sync with each other, partially manging and controlling the environment they are associated with. A user-friendly GUI makes it easier by displaying the necessary functionalities and allowing users to interact with the hardware unit. Ultimately, the manual labour is reduced with added precision as the micro-controller operates based on fixed constraints in order to balance the responses needed to control interfaced sensors and deliver prompt service to the end user.
  • 4. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID – IJTSRD30968 | Volume – 4 | Issue – 4 | May-June 2020 Page 370 ACKNOWLEDGMENT We would like to thank Mrs. Tina Maru for guiding us with information about severalconceptsintheprocess,alongwith useful critics that made our project reach a good standard. Also, would like to appreciate the co-operation displayed by the fellow team members in the making of this system. REFERENCES [1] Sayali Wedekar, Vinayak Wakhare, “Smart Water Management using IoT,” 5th International Conference on Wireless Networks and Embedded Systems (WECON), October 2016. [2] R. Nandhini, Priyanja Jose, “Arduino Based Smart Irrigation System”, 3rd National Conference on IICT, 2017. [3] Shweta B. Saraf and Dhanashri H. Gawali, “IoT based Smart Irrigation Monitoring and Controlling,” 2nd IEEE International Conference on Recent Trends in Electronics, Information & Technology (RTEICT), May 2017. [4] Dweepayan Mishra, Arzeena Khan, Rajeev Tiwari, Shushi Upadhyay, “Automated Irrigation System-IoT Based Approach”, 3rd International Conference On Internet of Things: Smart Innovation and Usages (IoT- SIU), November 2018.