SlideShare a Scribd company logo
1 of 5
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 10 | Oct 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 772
IOT Based Low Cost Irrigation Model
Ashish Kumar1, Pawan Kumar Patnaik2 , Sargam Gupta3
1Mtech. ScholarDepartment of Computer Science and Engineering, Bhilai Institute of Technology, Durg, India.
2Associate ProfessorDepartment of Computer Science and Engineering, Bhilai Institute of Technology, Durg India.
3Assistance Professor Department of Computer Science and Engineering, Bhilai Institute of Technology,Durg,
India.
-----------------------------------------------------------------***-----------------------------------------------------------------
Abstract - The purpose of the paper is to provide a low-cost
irrigation model for farming fields and make a system to
monitor some parameters requiredforasuccessfulinstallinga
low-cost irrigation system. This systemnotonlysolvedthecost
of the system but also provides necessary data that is required
to know about the field area of the farmer. This paper also
includes the purposed concept of irrigation systems in which
this paper publish how important to be automated irrigation
is needed to farmers can achieve theirgoalandhelpstoreduce
the burden from them.
Key Words: Irrigation, IoT (Internet Of Things), NodeMCU,
Sensor, Actuators, Cloud, Blynk Etc.
1. INTRODUCTION
For any living being, water is the second most important
material after oxygen. Water supply for plants, Trees,
Flowers, and Farming fields is called an irrigation system.
Irrigation needs continuous monitoring of the water level
and soil moisture of plants. In Modern days costing of every
item has increased due to world order, pandemic, recession,
disturbed supply chain, chip shortage [1], and these busy
schedules people don't have sufficient timetomonitorevery
single plant in the field, but there are hopes on IoT
technologies [2] that can reduce the burden that generated
due lack of time and money.
In India, the country depends on farming for a huge amount
of GDP contribution and at least 70% of people [3] depend
on farming for their living. The country not only produce
food for itself but also to export other needy countries and
donation, charities in poor countries through International
organizations but remain in this position country have to
enhance productivity with the help of technology. For high-
quality products and to reduce the burden from the farmer
needs to have a good irrigation system [4] because for high
productivity water supply is the most important thing in
farming.
Irrigation needs to start water pump on time if soil
moisture reduces this concept [5] is used to make a system
using InternetofThingstechnology.Theprojectaimstomake
a low-cost irrigation system using IoT technologies.
It is necessary to monitortheenvironmentalconditionsin
and around the fieldand soilmoisture.TheInternetofThings
(IoT) has the potential to make the device for irrigation at a
very low cost with the number of sensors [6] to collect data
from the soil, weather, light intensity, raindrop, etc.
The parameters that have to be properly monitored are
soil characteristics, weather conditions, moisture,
temperature, etc. This can be possible by using IOT
technology with sensors and actuators that can sense the
field condition and perform the certain task accordingly
sensors are usedtomonitorandcollectinformationaboutthe
field conditions, and those data are collected to make a low-
cost irrigation system.
2. PRELIMINARIES
For the implementation model,itneedstofollowsomesteps
one by one.
Step 1
Firstly one breadboard is required to arrange all the
equipment into one system. The types of equipment are
sensors like Soil moisture sensor, DHT11 sensor, LDR
sensor, Water sensor, Actuator like Relay module is needed
to perform the task, microcontroller board NodeMCU and
connecting wires with the USB cable to connect the system
to the computer and motor pump for irrigation. Connection
of all the sensors to the breadboard as per circuit diagram.
Fig 2.1
Step 2
Create a connection of sensors, and actuator, on the
breadboard to the NodeMCU with connecting wires called
model. That model is now connected to the computer
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 10 | Oct 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 773
through a cable. Open the computer start downloading and
install the Arduino IDE to write a code. On IDE create a
sketch file and write a code accordingtotheperformance we
want from the model. Before writing a code you have to
include libraries and select port and board for a controller.
Fig 2.2
Step 3
In the IDE there has a working area where we can write a
code has two parts one is void setup we have to explain the
setups like sensors, and actuators with NodeMCU's pin
address and the other is the void loop where wewritea code
if we want to run that code number of times and don't want
to write again and again this part saves the code length.
From writing a code firstly we have to include some header
files then write code in the void setup part after setup a part
of the code write to the void loop and save the code. After
saving check the connection of the USB to the computer and
also check the software tool section if the right board is
selected or not then verify and compile the code. After a
successful compile of code upload that code and check the
NodeMCU, it starts blinking which means the code is sent to
the model through NodeMCU. Then open the serial monitor
it starts receiving data and showing in the serial monitor
itself.
Step 4
In this model, we have used Blynk Cloud to monitorthedata
that we are getting from the sensors. Blynk is used for IoT
purposes to visualize thedata systematicallywiththeirtools.
But before we need to include some libraries for blynk
BlynkSimpleEsp8266.h and also need Template ID, Device
name, Auth Token, SSID, and Password to connect wifi
module of NodeMCU. Auth Token, Template ID, and Device
name are given to the Blynk web after creatinga newDevice.
It needs to create metadata for data to visualize. The SSID
and Password mentioned on the code should be the same as
the device's SSID and Password which have been used to
visualize the data that came from sensors.
Step 5
The model has to install in the area where it may collectreal-
time data from the environment like temperature,humidity,
soil moisture, and raindrop value. And those data may send
to the relay module to operate the motor pumpif moisture is
less than the predefined value through the NodeMCU
microcontroller. The microcontroller controlsandevaluates
those data into the information and also seen by the serial
monitor if reading is taken from the sensors. The actuator
performs the task given by the microcontroller.
3. ALGORITHM FOR SENSING ENVIRONMENTAL
PARAMETERS
For writing a code system has to install Arduino IDE. In this
IDE first open file select preferences then put the URL into
the Additional board manager and click OK. Select Port and
Board from Tools. Include and managelibrariesfromsketch.
In code, you have to include the libraries for sensors, and
software that you used in a particular project we need
DHT11, Blynk, and ESP8266 module libraries to include.
Fig 3.1
We are also using Blynk cloud to visualize the data from a
sensor to consumers' mobile and desktop so we have to
define the Template ID, Device name, and Auth token to
connect with Blynk cloud.
Fig 3.2
As consumers, SSID and Password mention SSID and
Password.
Fig 3.3
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 10 | Oct 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 774
In void setup code for begin all the sensors, software, wifi,
and serial monitor and also for PinMode used for sensors
and actuators.
Fig 3.4
In void loop sensors sense the environment condition
continuously in a loop.
Fig 3.5
Finally in void send sensor codes for a sensor to read data
and actuator performs when condition meets, print in serial
monitor also print into Blynk cloud.
Fig 3.6
In this project soil moisture senses the value of moisture. If
moisture level drops below the predefines valuethenittrips
the relay module which is connected to the water pumpthen
the water pump starts. The flow of water penetrates and
consume by the soil then moisture level increases and is
measured by the soil moisture. If the moisture value
decreases the predefined value then it trips the relay to stop
the water pump. This project also has DHT11 for Humidity
and Temperature, a Water sensor for Rainwater drop
sensing, an LDR sensor for sunlight intensity sensing, And a
relay module to ON/OFF the water pump.
4. RESULT AND DISCUSSION
The sensor data are observed by Serial MonitorandBlynk as
given in fig 4.1 motor pump starts if the moisture level
decreases and it detects the valueofTemperature,Humidity,
Moisture, water drop, and Light Intensity with the cost of
945₹ only. It is affordable to the poor formers.
Table 4.1: Cost estimation
Sr. No. Devices Cost
1. NodeMCU 295 ₹
2. Relay Module 120 ₹
3. DHT11 90 ₹
4. Soil Moisture 85 ₹
5. Raindrop Sensor 80 ₹
6. LDR 10 ₹
7. LED 5 ₹
8. Water Pump 110 ₹
9. Breadboard 80 ₹
10. Resistors 10 ₹
11. Connecting Wire 40 ₹
12. Misc. 20 ₹
Total 945 ₹
Below fig 4.1 and fig 4.2 are from the serial monitor has
shown the result from sensors connected to the
microcontroller, sensors named DHT11 show Humidity and
Temperature value, soil moisture sensor show moisture
value, LDR sensor shows Light intensity value, and water
sensor shows rain drop value. Here only the soil moisture
sensor is connected to the analog pin because only one
analog pin is available in the NodeMCU microcontroller,soit
shows in an analog manner. Other sensors like LDR and
water sensor are connected to the digital which have only
two output that is low and high (0 and 1023). Only the
DHT11 sensor has a capability that shows values in an
analog manner even if it is connected to a digital pin, it
shows two different parameter values which are
temperature and humidity.
Here temperature and humidity values are coming from the
environment directly. The soil moisture sensor is inserted
into the soil which measures thepermittivityofmaterial that
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 10 | Oct 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 775
is accountable for the moisture level of thesoil.Soil moisture
sensor senses moisture of soil and it operates the water
pump as ON if the moisture level is below the predefined
value and as of it moisture level is above the predefined
value. LDR sensor measures the light intensity for plants.
And a water sensor measures the rain drop like raining or
good weather.
Fig.4.1
Fig . 4.2
Below fig 4.3 shows the user interface from the Blynk cloud.
Here status for the water pump like the motor is ON or OFF
which are from the DHT11 sensor, just below it shows
temperature and humidity values. And after moisturewhich
is from the soil moisture sensor and LED values which are
from the LDR sensor which meansitmeasureslightintensity
more than the predefined value. At last, it shows the good
weather from the water sensor which measures rain water
drop value if it is raining or not.
Fig 4.3
5. CONCLUSION
Our main objective is to reduce the cost of the model for
irrigation. This type of model costs around 2000-5000 INR
this is very costly for middle-class people. This would be
unaffordable for poor farmers who wanted technology in an
irrigation system. It is a low-cost model with just 945₹ INR.
Burdon of work on farmers, gardeners, and usershaveinthe
field are to monitor all the area and irrigate the all the plants
those problems are eliminated by this model. This model
provides facilities like sensing parameters value and
operates the water pump as needed. This is an automatic
system that operates as ON when the sensed value crosses a
predefined value. It measures all requirementsrelatedto the
field as atmospheric condition, moisture, temperature, and
light intensity which could help set up an irrigation model it
means the farmers or user who has this device can measure
all the above values about their plants and around the
farming fields area. IoT has the potential to do itself and
increased the growth of productivity. Technologies used in
irrigation can enhance productivity by giving information
about water needed and starting automatic supply ON
according to what data machine collected throughout the
monitoring process and it provides data for the water
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 10 | Oct 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 776
requirement of the particular plant. It saves time for users it
reduces human involvementinirrigation.Itdoesn'tneedany
technician or operator to operate this device it overcomes
the problem of human resource requirements.Itchangesthe
way of irrigation. It increases the quality and quantity of
production.
ACKNOWLEDGEMENT
We would like to acknowledge the BIT Durganddepartment
of computer science who make it possible. We would like to
thank our teachers, professors, seniors, juniors, colleagues
and our parents that are made motivated us. We would like
to thank Google scholar for used to searching related
journals and articles. We acknowledge each andeverysingle
person who comes across us and being helped with us.
Special thanks to Blynk Cloud.
REFERENCES
[1] Xiling Wu, Caihua Zhang, Wei Du. (2021). An
Analysis on the Crisis of Chips shortage in
Automobile Industry. Journal of Physics:
Conference Series 1971 (2021) 012100
[2] Jena K. K., Bhoi S. K., Nayak M. K., Baral C. K.,D. Patro
M. K. and Mohanty S. S. (2019). A Smart Watering
System Using IoT. Pramana ResearchJournal.9(3):
527-535
[3] Singla B., Mishra S., Singh A. and Yadav S. (2019). A
study on smart irrigation system using IoT.
IJARIIT. 5(2):1416-1418.
[4] Kponyo J. J., Opare K. A., Rahman A. A. and Justice
Agyemang O. (2019). An Intelligent Irrigation
System for Rural Agriculture. International
Journal of Applied Agricultural Sciences. 5(3): 75-
81.
[5] Dr. Velmurugan S., Balaji V., Bharathi T. M. and
Saravanan K. (2020). An IOT based Smart
Irrigation System using Soil Moisture and
Weather Prediction. IJERT. 8, (07):1-4.
[6] Pokala S. S. K. and Bini A.A. (2021). A Low Cost IoT
Enabled Device for MonitoringAgricultureField
and Smart Irrigation System. DOI: 10.1007/978-
981-15-7345-3_78.
[7] Jamroen C., Komkum P., Fongkerd C. and Krongpha
W. (2020). An Intelligent Irrigation Scheduling
System Using Low-Cost Wireless Sensor
Network Toward Sustainable and Precision
Agriculture. IEEE ACCESS. 8():172756-172769.
[8] Hassan O. A., Nordin N., Norjali R., Yin L. H., Yi S. S.
and Zambri N. A. (2020). Iot Based Smart
Irrigation Control And Monitoring System.
Advances in Computing and Intelligent System.
2(2):1-7.
[9] Talekar P. S., Kumar A., Kumar A., Kumar M.,andMd
Hashmi I. (2021). Smart Irrigation Monitoring
System Using Blynk App. International Journal of
Innovative Science and Research Technology. 6(7):
1353-1355.
[10] Thakur D., Kumar Y. and Singh V. (2020). Smart
Irrigation and Intrusions Detection in
Agricultural Fields Using I.o.T. International
Conference on Computational IntelligenceandData
Science. Procedia Computer Science167():154–162

More Related Content

Similar to IOT Based Low Cost Irrigation Model

SMART WASTE MANAGEMENT SYSTEM USING IOT
SMART WASTE MANAGEMENT SYSTEM USING IOTSMART WASTE MANAGEMENT SYSTEM USING IOT
SMART WASTE MANAGEMENT SYSTEM USING IOTIRJET Journal
 
IOT Personal Weather Station
IOT Personal Weather StationIOT Personal Weather Station
IOT Personal Weather StationIRJET Journal
 
Internet of Things (IOT) Application for Determination of Soil Moisture Conte...
Internet of Things (IOT) Application for Determination of Soil Moisture Conte...Internet of Things (IOT) Application for Determination of Soil Moisture Conte...
Internet of Things (IOT) Application for Determination of Soil Moisture Conte...IRJET Journal
 
IRJET- Smart Irrigation System and Crop Prediction
IRJET-  	  Smart Irrigation System and Crop PredictionIRJET-  	  Smart Irrigation System and Crop Prediction
IRJET- Smart Irrigation System and Crop PredictionIRJET Journal
 
A Comparative Study of Internet of Things Based Home Automation System
A Comparative Study of Internet of Things Based Home Automation SystemA Comparative Study of Internet of Things Based Home Automation System
A Comparative Study of Internet of Things Based Home Automation SystemIRJET Journal
 
IRJET- Raspberry Pi and NodeMCU based Home Automation System
IRJET- Raspberry Pi and NodeMCU based Home Automation SystemIRJET- Raspberry Pi and NodeMCU based Home Automation System
IRJET- Raspberry Pi and NodeMCU based Home Automation SystemIRJET 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- 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
 
Smart Greenhouse using Machine Learning
Smart Greenhouse using Machine LearningSmart Greenhouse using Machine Learning
Smart Greenhouse using Machine LearningIRJET Journal
 
IRJET- Water Management System using IoT with WSN
IRJET- Water Management System using IoT with WSNIRJET- Water Management System using IoT with WSN
IRJET- Water Management System using IoT with WSNIRJET Journal
 
IRJET- Measurement of Temperature and Humidity by using Arduino Tool and DHT11
IRJET- Measurement of Temperature and Humidity by using Arduino Tool and DHT11IRJET- Measurement of Temperature and Humidity by using Arduino Tool and DHT11
IRJET- Measurement of Temperature and Humidity by using Arduino Tool and DHT11IRJET Journal
 
A RESEARCH PAPER ON SMART AGRICULTURE SYSTEM USING IOT
A RESEARCH PAPER ON SMART AGRICULTURE SYSTEM USING IOTA RESEARCH PAPER ON SMART AGRICULTURE SYSTEM USING IOT
A RESEARCH PAPER ON SMART AGRICULTURE SYSTEM USING IOTIRJET Journal
 
IRJET- Smart Home using Google Assistant (IFTTT)
IRJET-  	  Smart Home using Google Assistant (IFTTT)IRJET-  	  Smart Home using Google Assistant (IFTTT)
IRJET- Smart Home using Google Assistant (IFTTT)IRJET Journal
 
GOOGLE ASSISTANCE BASED HOME AUTOMATION
GOOGLE ASSISTANCE BASED HOME AUTOMATIONGOOGLE ASSISTANCE BASED HOME AUTOMATION
GOOGLE ASSISTANCE BASED HOME AUTOMATIONIRJET Journal
 
IRJET - Hybrid Model of Smart Energy Consumption Monitoring System
IRJET - Hybrid Model of Smart Energy Consumption Monitoring SystemIRJET - Hybrid Model of Smart Energy Consumption Monitoring System
IRJET - Hybrid Model of Smart Energy Consumption Monitoring SystemIRJET Journal
 
IRJET - Home Appliance Controlling and Monitoring by Mobile Application based...
IRJET - Home Appliance Controlling and Monitoring by Mobile Application based...IRJET - Home Appliance Controlling and Monitoring by Mobile Application based...
IRJET - Home Appliance Controlling and Monitoring by Mobile Application based...IRJET Journal
 
IRJET- Smart & Intelligent Field Irrigation System using IoT
IRJET- Smart & Intelligent Field Irrigation System using IoTIRJET- Smart & Intelligent Field Irrigation System using IoT
IRJET- Smart & Intelligent Field Irrigation System using IoTIRJET Journal
 
Monitoring and Controlling Device for Smart Greenhouse by using Thinger.io Io...
Monitoring and Controlling Device for Smart Greenhouse by using Thinger.io Io...Monitoring and Controlling Device for Smart Greenhouse by using Thinger.io Io...
Monitoring and Controlling Device for Smart Greenhouse by using Thinger.io Io...ijtsrd
 

Similar to IOT Based Low Cost Irrigation Model (20)

SMART WASTE MANAGEMENT SYSTEM USING IOT
SMART WASTE MANAGEMENT SYSTEM USING IOTSMART WASTE MANAGEMENT SYSTEM USING IOT
SMART WASTE MANAGEMENT SYSTEM USING IOT
 
IOT Personal Weather Station
IOT Personal Weather StationIOT Personal Weather Station
IOT Personal Weather Station
 
Internet of Things (IOT) Application for Determination of Soil Moisture Conte...
Internet of Things (IOT) Application for Determination of Soil Moisture Conte...Internet of Things (IOT) Application for Determination of Soil Moisture Conte...
Internet of Things (IOT) Application for Determination of Soil Moisture Conte...
 
IRJET- Smart Irrigation System and Crop Prediction
IRJET-  	  Smart Irrigation System and Crop PredictionIRJET-  	  Smart Irrigation System and Crop Prediction
IRJET- Smart Irrigation System and Crop Prediction
 
A Comparative Study of Internet of Things Based Home Automation System
A Comparative Study of Internet of Things Based Home Automation SystemA Comparative Study of Internet of Things Based Home Automation System
A Comparative Study of Internet of Things Based Home Automation System
 
IRJET- Raspberry Pi and NodeMCU based Home Automation System
IRJET- Raspberry Pi and NodeMCU based Home Automation SystemIRJET- Raspberry Pi and NodeMCU based Home Automation System
IRJET- Raspberry Pi and NodeMCU based Home Automation System
 
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- 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...
 
Smart Greenhouse using Machine Learning
Smart Greenhouse using Machine LearningSmart Greenhouse using Machine Learning
Smart Greenhouse using Machine Learning
 
IRJET- Water Management System using IoT with WSN
IRJET- Water Management System using IoT with WSNIRJET- Water Management System using IoT with WSN
IRJET- Water Management System using IoT with WSN
 
IRJET- Measurement of Temperature and Humidity by using Arduino Tool and DHT11
IRJET- Measurement of Temperature and Humidity by using Arduino Tool and DHT11IRJET- Measurement of Temperature and Humidity by using Arduino Tool and DHT11
IRJET- Measurement of Temperature and Humidity by using Arduino Tool and DHT11
 
IOT based Industrial Automation using Raspberry Pi
IOT based Industrial Automation using  Raspberry PiIOT based Industrial Automation using  Raspberry Pi
IOT based Industrial Automation using Raspberry Pi
 
SMART LATHE MACHINE
SMART LATHE MACHINESMART LATHE MACHINE
SMART LATHE MACHINE
 
A RESEARCH PAPER ON SMART AGRICULTURE SYSTEM USING IOT
A RESEARCH PAPER ON SMART AGRICULTURE SYSTEM USING IOTA RESEARCH PAPER ON SMART AGRICULTURE SYSTEM USING IOT
A RESEARCH PAPER ON SMART AGRICULTURE SYSTEM USING IOT
 
IRJET- Smart Home using Google Assistant (IFTTT)
IRJET-  	  Smart Home using Google Assistant (IFTTT)IRJET-  	  Smart Home using Google Assistant (IFTTT)
IRJET- Smart Home using Google Assistant (IFTTT)
 
GOOGLE ASSISTANCE BASED HOME AUTOMATION
GOOGLE ASSISTANCE BASED HOME AUTOMATIONGOOGLE ASSISTANCE BASED HOME AUTOMATION
GOOGLE ASSISTANCE BASED HOME AUTOMATION
 
IRJET - Hybrid Model of Smart Energy Consumption Monitoring System
IRJET - Hybrid Model of Smart Energy Consumption Monitoring SystemIRJET - Hybrid Model of Smart Energy Consumption Monitoring System
IRJET - Hybrid Model of Smart Energy Consumption Monitoring System
 
IRJET - Home Appliance Controlling and Monitoring by Mobile Application based...
IRJET - Home Appliance Controlling and Monitoring by Mobile Application based...IRJET - Home Appliance Controlling and Monitoring by Mobile Application based...
IRJET - Home Appliance Controlling and Monitoring by Mobile Application based...
 
IRJET- Smart & Intelligent Field Irrigation System using IoT
IRJET- Smart & Intelligent Field Irrigation System using IoTIRJET- Smart & Intelligent Field Irrigation System using IoT
IRJET- Smart & Intelligent Field Irrigation System using IoT
 
Monitoring and Controlling Device for Smart Greenhouse by using Thinger.io Io...
Monitoring and Controlling Device for Smart Greenhouse by using Thinger.io Io...Monitoring and Controlling Device for Smart Greenhouse by using Thinger.io Io...
Monitoring and Controlling Device for Smart Greenhouse by using Thinger.io Io...
 

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

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
 
Glass Ceramics: Processing and Properties
Glass Ceramics: Processing and PropertiesGlass Ceramics: Processing and Properties
Glass Ceramics: Processing and PropertiesPrabhanshu Chaturvedi
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
 
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
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlysanyuktamishra911
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...Call Girls in Nagpur High Profile
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxBSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxfenichawla
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdfankushspencer015
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSISrknatarajan
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur EscortsRussian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 

Recently uploaded (20)

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
 
Glass Ceramics: Processing and Properties
Glass Ceramics: Processing and PropertiesGlass Ceramics: Processing and Properties
Glass Ceramics: Processing and Properties
 
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
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, ...
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...Booking open Available Pune Call Girls Pargaon  6297143586 Call Hot Indian Gi...
Booking open Available Pune Call Girls Pargaon 6297143586 Call Hot Indian Gi...
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptxBSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
BSides Seattle 2024 - Stopping Ethan Hunt From Taking Your Data.pptx
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSIS
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
 
Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
(INDIRA) Call Girl Aurangabad Call Now 8617697112 Aurangabad Escorts 24x7
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur EscortsRussian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
Russian Call Girls in Nagpur Grishma Call 7001035870 Meet With Nagpur Escorts
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 

IOT Based Low Cost Irrigation Model

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 10 | Oct 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 772 IOT Based Low Cost Irrigation Model Ashish Kumar1, Pawan Kumar Patnaik2 , Sargam Gupta3 1Mtech. ScholarDepartment of Computer Science and Engineering, Bhilai Institute of Technology, Durg, India. 2Associate ProfessorDepartment of Computer Science and Engineering, Bhilai Institute of Technology, Durg India. 3Assistance Professor Department of Computer Science and Engineering, Bhilai Institute of Technology,Durg, India. -----------------------------------------------------------------***----------------------------------------------------------------- Abstract - The purpose of the paper is to provide a low-cost irrigation model for farming fields and make a system to monitor some parameters requiredforasuccessfulinstallinga low-cost irrigation system. This systemnotonlysolvedthecost of the system but also provides necessary data that is required to know about the field area of the farmer. This paper also includes the purposed concept of irrigation systems in which this paper publish how important to be automated irrigation is needed to farmers can achieve theirgoalandhelpstoreduce the burden from them. Key Words: Irrigation, IoT (Internet Of Things), NodeMCU, Sensor, Actuators, Cloud, Blynk Etc. 1. INTRODUCTION For any living being, water is the second most important material after oxygen. Water supply for plants, Trees, Flowers, and Farming fields is called an irrigation system. Irrigation needs continuous monitoring of the water level and soil moisture of plants. In Modern days costing of every item has increased due to world order, pandemic, recession, disturbed supply chain, chip shortage [1], and these busy schedules people don't have sufficient timetomonitorevery single plant in the field, but there are hopes on IoT technologies [2] that can reduce the burden that generated due lack of time and money. In India, the country depends on farming for a huge amount of GDP contribution and at least 70% of people [3] depend on farming for their living. The country not only produce food for itself but also to export other needy countries and donation, charities in poor countries through International organizations but remain in this position country have to enhance productivity with the help of technology. For high- quality products and to reduce the burden from the farmer needs to have a good irrigation system [4] because for high productivity water supply is the most important thing in farming. Irrigation needs to start water pump on time if soil moisture reduces this concept [5] is used to make a system using InternetofThingstechnology.Theprojectaimstomake a low-cost irrigation system using IoT technologies. It is necessary to monitortheenvironmentalconditionsin and around the fieldand soilmoisture.TheInternetofThings (IoT) has the potential to make the device for irrigation at a very low cost with the number of sensors [6] to collect data from the soil, weather, light intensity, raindrop, etc. The parameters that have to be properly monitored are soil characteristics, weather conditions, moisture, temperature, etc. This can be possible by using IOT technology with sensors and actuators that can sense the field condition and perform the certain task accordingly sensors are usedtomonitorandcollectinformationaboutthe field conditions, and those data are collected to make a low- cost irrigation system. 2. PRELIMINARIES For the implementation model,itneedstofollowsomesteps one by one. Step 1 Firstly one breadboard is required to arrange all the equipment into one system. The types of equipment are sensors like Soil moisture sensor, DHT11 sensor, LDR sensor, Water sensor, Actuator like Relay module is needed to perform the task, microcontroller board NodeMCU and connecting wires with the USB cable to connect the system to the computer and motor pump for irrigation. Connection of all the sensors to the breadboard as per circuit diagram. Fig 2.1 Step 2 Create a connection of sensors, and actuator, on the breadboard to the NodeMCU with connecting wires called model. That model is now connected to the computer
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 10 | Oct 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 773 through a cable. Open the computer start downloading and install the Arduino IDE to write a code. On IDE create a sketch file and write a code accordingtotheperformance we want from the model. Before writing a code you have to include libraries and select port and board for a controller. Fig 2.2 Step 3 In the IDE there has a working area where we can write a code has two parts one is void setup we have to explain the setups like sensors, and actuators with NodeMCU's pin address and the other is the void loop where wewritea code if we want to run that code number of times and don't want to write again and again this part saves the code length. From writing a code firstly we have to include some header files then write code in the void setup part after setup a part of the code write to the void loop and save the code. After saving check the connection of the USB to the computer and also check the software tool section if the right board is selected or not then verify and compile the code. After a successful compile of code upload that code and check the NodeMCU, it starts blinking which means the code is sent to the model through NodeMCU. Then open the serial monitor it starts receiving data and showing in the serial monitor itself. Step 4 In this model, we have used Blynk Cloud to monitorthedata that we are getting from the sensors. Blynk is used for IoT purposes to visualize thedata systematicallywiththeirtools. But before we need to include some libraries for blynk BlynkSimpleEsp8266.h and also need Template ID, Device name, Auth Token, SSID, and Password to connect wifi module of NodeMCU. Auth Token, Template ID, and Device name are given to the Blynk web after creatinga newDevice. It needs to create metadata for data to visualize. The SSID and Password mentioned on the code should be the same as the device's SSID and Password which have been used to visualize the data that came from sensors. Step 5 The model has to install in the area where it may collectreal- time data from the environment like temperature,humidity, soil moisture, and raindrop value. And those data may send to the relay module to operate the motor pumpif moisture is less than the predefined value through the NodeMCU microcontroller. The microcontroller controlsandevaluates those data into the information and also seen by the serial monitor if reading is taken from the sensors. The actuator performs the task given by the microcontroller. 3. ALGORITHM FOR SENSING ENVIRONMENTAL PARAMETERS For writing a code system has to install Arduino IDE. In this IDE first open file select preferences then put the URL into the Additional board manager and click OK. Select Port and Board from Tools. Include and managelibrariesfromsketch. In code, you have to include the libraries for sensors, and software that you used in a particular project we need DHT11, Blynk, and ESP8266 module libraries to include. Fig 3.1 We are also using Blynk cloud to visualize the data from a sensor to consumers' mobile and desktop so we have to define the Template ID, Device name, and Auth token to connect with Blynk cloud. Fig 3.2 As consumers, SSID and Password mention SSID and Password. Fig 3.3
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 10 | Oct 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 774 In void setup code for begin all the sensors, software, wifi, and serial monitor and also for PinMode used for sensors and actuators. Fig 3.4 In void loop sensors sense the environment condition continuously in a loop. Fig 3.5 Finally in void send sensor codes for a sensor to read data and actuator performs when condition meets, print in serial monitor also print into Blynk cloud. Fig 3.6 In this project soil moisture senses the value of moisture. If moisture level drops below the predefines valuethenittrips the relay module which is connected to the water pumpthen the water pump starts. The flow of water penetrates and consume by the soil then moisture level increases and is measured by the soil moisture. If the moisture value decreases the predefined value then it trips the relay to stop the water pump. This project also has DHT11 for Humidity and Temperature, a Water sensor for Rainwater drop sensing, an LDR sensor for sunlight intensity sensing, And a relay module to ON/OFF the water pump. 4. RESULT AND DISCUSSION The sensor data are observed by Serial MonitorandBlynk as given in fig 4.1 motor pump starts if the moisture level decreases and it detects the valueofTemperature,Humidity, Moisture, water drop, and Light Intensity with the cost of 945₹ only. It is affordable to the poor formers. Table 4.1: Cost estimation Sr. No. Devices Cost 1. NodeMCU 295 ₹ 2. Relay Module 120 ₹ 3. DHT11 90 ₹ 4. Soil Moisture 85 ₹ 5. Raindrop Sensor 80 ₹ 6. LDR 10 ₹ 7. LED 5 ₹ 8. Water Pump 110 ₹ 9. Breadboard 80 ₹ 10. Resistors 10 ₹ 11. Connecting Wire 40 ₹ 12. Misc. 20 ₹ Total 945 ₹ Below fig 4.1 and fig 4.2 are from the serial monitor has shown the result from sensors connected to the microcontroller, sensors named DHT11 show Humidity and Temperature value, soil moisture sensor show moisture value, LDR sensor shows Light intensity value, and water sensor shows rain drop value. Here only the soil moisture sensor is connected to the analog pin because only one analog pin is available in the NodeMCU microcontroller,soit shows in an analog manner. Other sensors like LDR and water sensor are connected to the digital which have only two output that is low and high (0 and 1023). Only the DHT11 sensor has a capability that shows values in an analog manner even if it is connected to a digital pin, it shows two different parameter values which are temperature and humidity. Here temperature and humidity values are coming from the environment directly. The soil moisture sensor is inserted into the soil which measures thepermittivityofmaterial that
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 10 | Oct 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 775 is accountable for the moisture level of thesoil.Soil moisture sensor senses moisture of soil and it operates the water pump as ON if the moisture level is below the predefined value and as of it moisture level is above the predefined value. LDR sensor measures the light intensity for plants. And a water sensor measures the rain drop like raining or good weather. Fig.4.1 Fig . 4.2 Below fig 4.3 shows the user interface from the Blynk cloud. Here status for the water pump like the motor is ON or OFF which are from the DHT11 sensor, just below it shows temperature and humidity values. And after moisturewhich is from the soil moisture sensor and LED values which are from the LDR sensor which meansitmeasureslightintensity more than the predefined value. At last, it shows the good weather from the water sensor which measures rain water drop value if it is raining or not. Fig 4.3 5. CONCLUSION Our main objective is to reduce the cost of the model for irrigation. This type of model costs around 2000-5000 INR this is very costly for middle-class people. This would be unaffordable for poor farmers who wanted technology in an irrigation system. It is a low-cost model with just 945₹ INR. Burdon of work on farmers, gardeners, and usershaveinthe field are to monitor all the area and irrigate the all the plants those problems are eliminated by this model. This model provides facilities like sensing parameters value and operates the water pump as needed. This is an automatic system that operates as ON when the sensed value crosses a predefined value. It measures all requirementsrelatedto the field as atmospheric condition, moisture, temperature, and light intensity which could help set up an irrigation model it means the farmers or user who has this device can measure all the above values about their plants and around the farming fields area. IoT has the potential to do itself and increased the growth of productivity. Technologies used in irrigation can enhance productivity by giving information about water needed and starting automatic supply ON according to what data machine collected throughout the monitoring process and it provides data for the water
  • 5. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 10 | Oct 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 776 requirement of the particular plant. It saves time for users it reduces human involvementinirrigation.Itdoesn'tneedany technician or operator to operate this device it overcomes the problem of human resource requirements.Itchangesthe way of irrigation. It increases the quality and quantity of production. ACKNOWLEDGEMENT We would like to acknowledge the BIT Durganddepartment of computer science who make it possible. We would like to thank our teachers, professors, seniors, juniors, colleagues and our parents that are made motivated us. We would like to thank Google scholar for used to searching related journals and articles. We acknowledge each andeverysingle person who comes across us and being helped with us. Special thanks to Blynk Cloud. REFERENCES [1] Xiling Wu, Caihua Zhang, Wei Du. (2021). An Analysis on the Crisis of Chips shortage in Automobile Industry. Journal of Physics: Conference Series 1971 (2021) 012100 [2] Jena K. K., Bhoi S. K., Nayak M. K., Baral C. K.,D. Patro M. K. and Mohanty S. S. (2019). A Smart Watering System Using IoT. Pramana ResearchJournal.9(3): 527-535 [3] Singla B., Mishra S., Singh A. and Yadav S. (2019). A study on smart irrigation system using IoT. IJARIIT. 5(2):1416-1418. [4] Kponyo J. J., Opare K. A., Rahman A. A. and Justice Agyemang O. (2019). An Intelligent Irrigation System for Rural Agriculture. International Journal of Applied Agricultural Sciences. 5(3): 75- 81. [5] Dr. Velmurugan S., Balaji V., Bharathi T. M. and Saravanan K. (2020). An IOT based Smart Irrigation System using Soil Moisture and Weather Prediction. IJERT. 8, (07):1-4. [6] Pokala S. S. K. and Bini A.A. (2021). A Low Cost IoT Enabled Device for MonitoringAgricultureField and Smart Irrigation System. DOI: 10.1007/978- 981-15-7345-3_78. [7] Jamroen C., Komkum P., Fongkerd C. and Krongpha W. (2020). An Intelligent Irrigation Scheduling System Using Low-Cost Wireless Sensor Network Toward Sustainable and Precision Agriculture. IEEE ACCESS. 8():172756-172769. [8] Hassan O. A., Nordin N., Norjali R., Yin L. H., Yi S. S. and Zambri N. A. (2020). Iot Based Smart Irrigation Control And Monitoring System. Advances in Computing and Intelligent System. 2(2):1-7. [9] Talekar P. S., Kumar A., Kumar A., Kumar M.,andMd Hashmi I. (2021). Smart Irrigation Monitoring System Using Blynk App. International Journal of Innovative Science and Research Technology. 6(7): 1353-1355. [10] Thakur D., Kumar Y. and Singh V. (2020). Smart Irrigation and Intrusions Detection in Agricultural Fields Using I.o.T. International Conference on Computational IntelligenceandData Science. Procedia Computer Science167():154–162