SlideShare ist ein Scribd-Unternehmen logo
1 von 24
ADVANCED IRRIGATION SYSTEM
USING SOIL MOISTURE SENSOR
PROJECT GUIDE
Dr S AKHILA
(P16)
L Kajikho
Bikram Pukhrambam Singh
Sameep Karki
Manish K Sah
• Today, India ranks second in the world
in farm output with 64% of cultivated land dependent on
monsoons.
• Irrigation accounts for 55-70% of
water usage in India.
• Nearly 60% of the water used in
irrigation is wasted.
• In this project water is conserved
by using microcontroller-based
system
• ‘Smart Orchid soil moisture monitoring system based on wireless communication
technology’ by Ye Na & Liu Junfeng’
 Isight on the system cored with a low-power microprocessor
 Insight on achieving a wide range of influence on soil moisture and intelligent control of
data in fixed memory.
 Insight on achieving a 24hr uninterrupted monitoring.
 Insight on serial non-volatile data memory chip for storage and display device, that is
based on I2C bus, in turn using multifunctional memory chip of the ferroelectric
technology which contains RTC.
• ‘Precision Agriculture’ By-Hemanth Gowda C V, Kaveen Kumar M K, Nikhil D G, Prathap J
-Knowledge on the design maily consisting of Wireless Master device and wireless
Slave device information unit that’s based on Zigbee technology and is realized using
GMS module and concentrated on low power consumption.
- Knowledge on achieving low power consumption using ARM
Cortex M0.
-Knowledge on sensor network powered by solar panel with
rechargeable battery that works for long time.
• Automatic Plant irrigation System’ By- Amit Yadav, Rahul Dev,
Ravinder Kumar, Shwetank Singh.
-Knowledge of automatic system designed with low cost microcontroller.
-Knowledge on designed soil moisture sensor designing using comparator
-Knowledge on interfacing RTC and LCD.
• ‘Water Saving irrigation automatic water control sytem based on internet
of thing’ By-Zhang Feng
-Knowledge on water conserving sytem by controlling irrigation water .
-Knowledge on design on wireless sensor network and internet technology
of farmland automatic irrigation control.
-Knowledge on use of Mobile or PDA can easily used soil moisture content
online monitor and controlling to realize the irrigation automation.
User sets the threshold value
Moisture sensor reads the moisture contained in the soil
and feeds to the microcontroller
Microcontroller compare the sensor input and the
threshold value
If the sensor input value is less than 30%,plants get
watered or else it continues to read the moisture value
The watering stops till the moisture contain reaches the
threshold value
#include <LiquidCrystal.h> //library to interface LCD
#include <Wire.h>
#include "RTClib.h“ //library to interface RTC
LiquidCrystal lcd(12,11,5,4,3,2);
RTC_DS1307 rtc;
const int moisture_sensor=A3; //Analog input pin A3 is declare to read soil sensor value
const int relay_out=8; //output pin to control relay
int MAX; //variable to hold threshold value
void setup ()
{
Serial.begin(57600);
#ifdef AVR
Wire.begin();
#else
Wire1.begin(); // Shield I2C pins connect to alt I2C bus on Arduino uno
#endif
rtc.begin(); //Initialized RTC
lcd.begin(16,2); // Initialized LCD to 16X2
pinMode(relay_out,OUTPUT); //define relay_out pin as output pin
pinMode(6,INPUT); //define pin no. 6
lcd.print(" Welcome "); //instruction to display to LCD
lcd.setCursor(0,1); //instruction to move cursor
lcd.print(" P16 ");
delay(1000); //delay of 1sec
lcd.clear(); //clear LCD
}
void loop ()
{
int m=(-analogRead(moisture_sensor)+1023)/10;
lcd.clear();
if(digitalRead(6)==LOW)
{
lcd.clear();
DateTime now = rtc.now();
lcd.print(now.year(), DEC); //get year
lcd.print('/');
lcd.print(now.month(), DEC); //get month
lcd.print('/');
lcd.print(now.day(), DEC); //get day
lcd.setCursor(0,1);
lcd.print(now.hour(), DEC); //get hour
lcd.print(':');
lcd.print(now.minute(), DEC); //get minute
lcd.print(':');
lcd.print(now.second(), DEC); //get second
delay(1000); //display for 1 second
lcd.clear();
lcd.print("Moisture Content");
lcd.setCursor(0,1);
lcd.print(m);
lcd.print('%');
delay(1000);
lcd.clear();
if(m==30) //instruction to control relay
digitalWrite(relay_out,HIGH);
else if(m>=MAX)
digitalWrite(relay_out,LOW);
else
digitalWrite(relay_out,HIGH);
lcd.print("threshold value");
lcd.setCursor(0,1);
lcd.print(MAX);
lcd.print('%');
delay(1000);
lcd.clear();
}
else
{
lcd.clear(); //instructions to setup threshold value
MAX=m;
lcd.print("new value");
lcd.setCursor(0,1);
lcd.print(MAX);
lcd.print('%');
delay(1000);
lcd.clear();
}
}
• The farmers working in the farm lands
are solely dependent on the rains and bore wells for
irrigation of land.
• Even if the farm land has a water-pump, manual
intervention by farmers is required to turn the pump
on/off whenever needed.
• Our project will help the farmers by removing manual
intervention controlled by microcontroller using
moisture sensor and giving highly
efficient in conservation of water

Weitere ähnliche Inhalte

Was ist angesagt?

Automated irrigation system
Automated irrigation systemAutomated irrigation system
Automated irrigation systemnarendra019
 
automatic irrigation system by sensing soil moisture content
automatic irrigation system by sensing soil moisture contentautomatic irrigation system by sensing soil moisture content
automatic irrigation system by sensing soil moisture contentPAMULA MURALI
 
Smart irrigation system using internet of things
Smart irrigation system using internet of thingsSmart irrigation system using internet of things
Smart irrigation system using internet of thingsBasavaraj Galagi
 
Smart irrigation system
Smart irrigation systemSmart irrigation system
Smart irrigation systemAyesha Sajjad
 
Smart Irrigation System Using IoT
Smart Irrigation System Using IoTSmart Irrigation System Using IoT
Smart Irrigation System Using IoTLokesh Parihar
 
microcontroller based automation of drip irrigation system
microcontroller based automation of drip irrigation systemmicrocontroller based automation of drip irrigation system
microcontroller based automation of drip irrigation systemChitrachedu Dada Kalandar
 
Automatic irrigation 1st review(ieee project ece dept)
Automatic irrigation 1st review(ieee project ece dept)Automatic irrigation 1st review(ieee project ece dept)
Automatic irrigation 1st review(ieee project ece dept)Siddappa Dollin
 
Ppt for automatic plant irrigation system
Ppt for automatic plant irrigation systemPpt for automatic plant irrigation system
Ppt for automatic plant irrigation systemstk25
 
arduino based automatic irrigation system
arduino based automatic irrigation systemarduino based automatic irrigation system
arduino based automatic irrigation systemMiJanurSimon
 
Automated Plant Watering System
Automated Plant Watering SystemAutomated Plant Watering System
Automated Plant Watering SystemSoumyadeep Kal
 
Automated water planting system
Automated water planting systemAutomated water planting system
Automated water planting systemMayank Kumbhaj
 
Automatic plant watering using arduinos
Automatic plant watering using arduinosAutomatic plant watering using arduinos
Automatic plant watering using arduinosMuhammadFazilMemon
 
Irrigation Controller System
Irrigation Controller SystemIrrigation Controller System
Irrigation Controller SystemRajasekar .M.K.
 
GSM Based Automatic Irrigation System
GSM Based Automatic Irrigation SystemGSM Based Automatic Irrigation System
GSM Based Automatic Irrigation SystemRadha Mahalle
 
Smart Garden IOT Project
Smart Garden IOT ProjectSmart Garden IOT Project
Smart Garden IOT ProjectAntar975
 
AUTOMATIC PLANT WATERING SYSTEM USING ARDUINO BASED PPT
AUTOMATIC PLANT WATERING SYSTEM USING ARDUINO BASED PPTAUTOMATIC PLANT WATERING SYSTEM USING ARDUINO BASED PPT
AUTOMATIC PLANT WATERING SYSTEM USING ARDUINO BASED PPTrishav164
 

Was ist angesagt? (20)

Automated irrigation system
Automated irrigation systemAutomated irrigation system
Automated irrigation system
 
automatic irrigation system by sensing soil moisture content
automatic irrigation system by sensing soil moisture contentautomatic irrigation system by sensing soil moisture content
automatic irrigation system by sensing soil moisture content
 
Smart irrigation system using internet of things
Smart irrigation system using internet of thingsSmart irrigation system using internet of things
Smart irrigation system using internet of things
 
Smart irrigation system
Smart irrigation systemSmart irrigation system
Smart irrigation system
 
Smart irrigation system
Smart irrigation systemSmart irrigation system
Smart irrigation system
 
Smart Irrigation System Using IoT
Smart Irrigation System Using IoTSmart Irrigation System Using IoT
Smart Irrigation System Using IoT
 
microcontroller based automation of drip irrigation system
microcontroller based automation of drip irrigation systemmicrocontroller based automation of drip irrigation system
microcontroller based automation of drip irrigation system
 
Automatic irrigation 1st review(ieee project ece dept)
Automatic irrigation 1st review(ieee project ece dept)Automatic irrigation 1st review(ieee project ece dept)
Automatic irrigation 1st review(ieee project ece dept)
 
Smart Irrigation System
Smart Irrigation SystemSmart Irrigation System
Smart Irrigation System
 
Ppt for automatic plant irrigation system
Ppt for automatic plant irrigation systemPpt for automatic plant irrigation system
Ppt for automatic plant irrigation system
 
Automatic irrigation system ppt
Automatic irrigation system pptAutomatic irrigation system ppt
Automatic irrigation system ppt
 
arduino based automatic irrigation system
arduino based automatic irrigation systemarduino based automatic irrigation system
arduino based automatic irrigation system
 
Automated Plant Watering System
Automated Plant Watering SystemAutomated Plant Watering System
Automated Plant Watering System
 
Automated water planting system
Automated water planting systemAutomated water planting system
Automated water planting system
 
Automatic plant watering using arduinos
Automatic plant watering using arduinosAutomatic plant watering using arduinos
Automatic plant watering using arduinos
 
Smart irrigation system
Smart irrigation systemSmart irrigation system
Smart irrigation system
 
Irrigation Controller System
Irrigation Controller SystemIrrigation Controller System
Irrigation Controller System
 
GSM Based Automatic Irrigation System
GSM Based Automatic Irrigation SystemGSM Based Automatic Irrigation System
GSM Based Automatic Irrigation System
 
Smart Garden IOT Project
Smart Garden IOT ProjectSmart Garden IOT Project
Smart Garden IOT Project
 
AUTOMATIC PLANT WATERING SYSTEM USING ARDUINO BASED PPT
AUTOMATIC PLANT WATERING SYSTEM USING ARDUINO BASED PPTAUTOMATIC PLANT WATERING SYSTEM USING ARDUINO BASED PPT
AUTOMATIC PLANT WATERING SYSTEM USING ARDUINO BASED PPT
 

Ähnlich wie Microcontroller based irrigation

Irrigation IoT G22222.ppt
Irrigation IoT G22222.pptIrrigation IoT G22222.ppt
Irrigation IoT G22222.pptWajdi Bellil
 
EVAPOTRANSPIRIATION CON TROLLER PPT.pptx
EVAPOTRANSPIRIATION CON TROLLER PPT.pptxEVAPOTRANSPIRIATION CON TROLLER PPT.pptx
EVAPOTRANSPIRIATION CON TROLLER PPT.pptxsrajece
 
Electronic DIY project book
Electronic DIY project book Electronic DIY project book
Electronic DIY project book Raghav Shetty
 
Smart Agriculture and Farming
Smart Agriculture and FarmingSmart Agriculture and Farming
Smart Agriculture and FarmingSUVIKRAM PRADHAN
 
Welcome to International Journal of Engineering Research and Development (IJERD)
Welcome to International Journal of Engineering Research and Development (IJERD)Welcome to International Journal of Engineering Research and Development (IJERD)
Welcome to International Journal of Engineering Research and Development (IJERD)IJERD Editor
 
Review on crop monitoring system using GSM technology
Review on crop monitoring system using GSM technologyReview on crop monitoring system using GSM technology
Review on crop monitoring system using GSM technologyIRJET Journal
 
Automated irrigation system based on soil moisture using arduino
Automated irrigation system based on soil moisture using arduinoAutomated irrigation system based on soil moisture using arduino
Automated irrigation system based on soil moisture using arduinoVishal Nagar
 
B03710609
B03710609B03710609
B03710609theijes
 
Automation in agriculture field using arm 7 based robot
Automation in agriculture field using arm 7 based robotAutomation in agriculture field using arm 7 based robot
Automation in agriculture field using arm 7 based roboteSAT Journals
 
Intelligent Farmer Friendly System
Intelligent Farmer Friendly SystemIntelligent Farmer Friendly System
Intelligent Farmer Friendly SystemIJMTST Journal
 
ARDUINO IOT-BASED MAJOR PROJECT.pptx
ARDUINO IOT-BASED MAJOR PROJECT.pptxARDUINO IOT-BASED MAJOR PROJECT.pptx
ARDUINO IOT-BASED MAJOR PROJECT.pptxsamyadeep17
 
Rwh control system poster
Rwh control system posterRwh control system poster
Rwh control system posterDeval Dixit
 
IRJET- Smart Aqua Meter with Live Usage Monitoring and Automatic Leakage Dete...
IRJET- Smart Aqua Meter with Live Usage Monitoring and Automatic Leakage Dete...IRJET- Smart Aqua Meter with Live Usage Monitoring and Automatic Leakage Dete...
IRJET- Smart Aqua Meter with Live Usage Monitoring and Automatic Leakage Dete...IRJET Journal
 
moisture sensor ppt.pptx
moisture sensor ppt.pptxmoisture sensor ppt.pptx
moisture sensor ppt.pptxsinghakhil952
 
moisture sensor ppt.pptx
moisture sensor ppt.pptxmoisture sensor ppt.pptx
moisture sensor ppt.pptxsinghakhil952
 
Advanced irrigation system using Arduino
Advanced irrigation system using ArduinoAdvanced irrigation system using Arduino
Advanced irrigation system using ArduinoHimanshuSingh1351
 
IOT based smart agriculture monitoring.pptx
IOT based smart agriculture monitoring.pptxIOT based smart agriculture monitoring.pptx
IOT based smart agriculture monitoring.pptxKaRtHiCkR859827
 
madhu pptx.pptx
madhu pptx.pptxmadhu pptx.pptx
madhu pptx.pptxDivyaU22
 
Automated Irrigation System using WSN and Wi-Fi Module
Automated Irrigation System using WSN and Wi-Fi ModuleAutomated Irrigation System using WSN and Wi-Fi Module
Automated Irrigation System using WSN and Wi-Fi ModuleIJERA Editor
 
GSM based agriculture monitoring system
GSM based agriculture monitoring systemGSM based agriculture monitoring system
GSM based agriculture monitoring systemIRJET Journal
 

Ähnlich wie Microcontroller based irrigation (20)

Irrigation IoT G22222.ppt
Irrigation IoT G22222.pptIrrigation IoT G22222.ppt
Irrigation IoT G22222.ppt
 
EVAPOTRANSPIRIATION CON TROLLER PPT.pptx
EVAPOTRANSPIRIATION CON TROLLER PPT.pptxEVAPOTRANSPIRIATION CON TROLLER PPT.pptx
EVAPOTRANSPIRIATION CON TROLLER PPT.pptx
 
Electronic DIY project book
Electronic DIY project book Electronic DIY project book
Electronic DIY project book
 
Smart Agriculture and Farming
Smart Agriculture and FarmingSmart Agriculture and Farming
Smart Agriculture and Farming
 
Welcome to International Journal of Engineering Research and Development (IJERD)
Welcome to International Journal of Engineering Research and Development (IJERD)Welcome to International Journal of Engineering Research and Development (IJERD)
Welcome to International Journal of Engineering Research and Development (IJERD)
 
Review on crop monitoring system using GSM technology
Review on crop monitoring system using GSM technologyReview on crop monitoring system using GSM technology
Review on crop monitoring system using GSM technology
 
Automated irrigation system based on soil moisture using arduino
Automated irrigation system based on soil moisture using arduinoAutomated irrigation system based on soil moisture using arduino
Automated irrigation system based on soil moisture using arduino
 
B03710609
B03710609B03710609
B03710609
 
Automation in agriculture field using arm 7 based robot
Automation in agriculture field using arm 7 based robotAutomation in agriculture field using arm 7 based robot
Automation in agriculture field using arm 7 based robot
 
Intelligent Farmer Friendly System
Intelligent Farmer Friendly SystemIntelligent Farmer Friendly System
Intelligent Farmer Friendly System
 
ARDUINO IOT-BASED MAJOR PROJECT.pptx
ARDUINO IOT-BASED MAJOR PROJECT.pptxARDUINO IOT-BASED MAJOR PROJECT.pptx
ARDUINO IOT-BASED MAJOR PROJECT.pptx
 
Rwh control system poster
Rwh control system posterRwh control system poster
Rwh control system poster
 
IRJET- Smart Aqua Meter with Live Usage Monitoring and Automatic Leakage Dete...
IRJET- Smart Aqua Meter with Live Usage Monitoring and Automatic Leakage Dete...IRJET- Smart Aqua Meter with Live Usage Monitoring and Automatic Leakage Dete...
IRJET- Smart Aqua Meter with Live Usage Monitoring and Automatic Leakage Dete...
 
moisture sensor ppt.pptx
moisture sensor ppt.pptxmoisture sensor ppt.pptx
moisture sensor ppt.pptx
 
moisture sensor ppt.pptx
moisture sensor ppt.pptxmoisture sensor ppt.pptx
moisture sensor ppt.pptx
 
Advanced irrigation system using Arduino
Advanced irrigation system using ArduinoAdvanced irrigation system using Arduino
Advanced irrigation system using Arduino
 
IOT based smart agriculture monitoring.pptx
IOT based smart agriculture monitoring.pptxIOT based smart agriculture monitoring.pptx
IOT based smart agriculture monitoring.pptx
 
madhu pptx.pptx
madhu pptx.pptxmadhu pptx.pptx
madhu pptx.pptx
 
Automated Irrigation System using WSN and Wi-Fi Module
Automated Irrigation System using WSN and Wi-Fi ModuleAutomated Irrigation System using WSN and Wi-Fi Module
Automated Irrigation System using WSN and Wi-Fi Module
 
GSM based agriculture monitoring system
GSM based agriculture monitoring systemGSM based agriculture monitoring system
GSM based agriculture monitoring system
 

Kürzlich hochgeladen

Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort servicejennyeacort
 
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfCCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfAsst.prof M.Gokilavani
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AIabhishek36461
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girlsssuser7cb4ff
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...asadnawaz62
 
An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...Chandu841456
 
Instrumentation, measurement and control of bio process parameters ( Temperat...
Instrumentation, measurement and control of bio process parameters ( Temperat...Instrumentation, measurement and control of bio process parameters ( Temperat...
Instrumentation, measurement and control of bio process parameters ( Temperat...121011101441
 
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)Dr SOUNDIRARAJ N
 
Arduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptArduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptSAURABHKUMAR892774
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfme23b1001
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionDr.Costas Sachpazis
 
Why does (not) Kafka need fsync: Eliminating tail latency spikes caused by fsync
Why does (not) Kafka need fsync: Eliminating tail latency spikes caused by fsyncWhy does (not) Kafka need fsync: Eliminating tail latency spikes caused by fsync
Why does (not) Kafka need fsync: Eliminating tail latency spikes caused by fsyncssuser2ae721
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 
Work Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvWork Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvLewisJB
 
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEINFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEroselinkalist12
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 

Kürzlich hochgeladen (20)

Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
 
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfCCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AI
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girls
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...
 
An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...
 
Instrumentation, measurement and control of bio process parameters ( Temperat...
Instrumentation, measurement and control of bio process parameters ( Temperat...Instrumentation, measurement and control of bio process parameters ( Temperat...
Instrumentation, measurement and control of bio process parameters ( Temperat...
 
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
 
POWER SYSTEMS-1 Complete notes examples
POWER SYSTEMS-1 Complete notes  examplesPOWER SYSTEMS-1 Complete notes  examples
POWER SYSTEMS-1 Complete notes examples
 
Arduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptArduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.ppt
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdf
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
 
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
 
Why does (not) Kafka need fsync: Eliminating tail latency spikes caused by fsync
Why does (not) Kafka need fsync: Eliminating tail latency spikes caused by fsyncWhy does (not) Kafka need fsync: Eliminating tail latency spikes caused by fsync
Why does (not) Kafka need fsync: Eliminating tail latency spikes caused by fsync
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 
Work Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvWork Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvv
 
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETEINFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
INFLUENCE OF NANOSILICA ON THE PROPERTIES OF CONCRETE
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 

Microcontroller based irrigation

  • 1. ADVANCED IRRIGATION SYSTEM USING SOIL MOISTURE SENSOR PROJECT GUIDE Dr S AKHILA (P16) L Kajikho Bikram Pukhrambam Singh Sameep Karki Manish K Sah
  • 2. • Today, India ranks second in the world in farm output with 64% of cultivated land dependent on monsoons. • Irrigation accounts for 55-70% of water usage in India. • Nearly 60% of the water used in irrigation is wasted. • In this project water is conserved by using microcontroller-based system
  • 3. • ‘Smart Orchid soil moisture monitoring system based on wireless communication technology’ by Ye Na & Liu Junfeng’  Isight on the system cored with a low-power microprocessor  Insight on achieving a wide range of influence on soil moisture and intelligent control of data in fixed memory.  Insight on achieving a 24hr uninterrupted monitoring.  Insight on serial non-volatile data memory chip for storage and display device, that is based on I2C bus, in turn using multifunctional memory chip of the ferroelectric technology which contains RTC. • ‘Precision Agriculture’ By-Hemanth Gowda C V, Kaveen Kumar M K, Nikhil D G, Prathap J -Knowledge on the design maily consisting of Wireless Master device and wireless Slave device information unit that’s based on Zigbee technology and is realized using GMS module and concentrated on low power consumption. - Knowledge on achieving low power consumption using ARM Cortex M0. -Knowledge on sensor network powered by solar panel with rechargeable battery that works for long time.
  • 4. • Automatic Plant irrigation System’ By- Amit Yadav, Rahul Dev, Ravinder Kumar, Shwetank Singh. -Knowledge of automatic system designed with low cost microcontroller. -Knowledge on designed soil moisture sensor designing using comparator -Knowledge on interfacing RTC and LCD. • ‘Water Saving irrigation automatic water control sytem based on internet of thing’ By-Zhang Feng -Knowledge on water conserving sytem by controlling irrigation water . -Knowledge on design on wireless sensor network and internet technology of farmland automatic irrigation control. -Knowledge on use of Mobile or PDA can easily used soil moisture content online monitor and controlling to realize the irrigation automation.
  • 5.
  • 6.
  • 7. User sets the threshold value Moisture sensor reads the moisture contained in the soil and feeds to the microcontroller Microcontroller compare the sensor input and the threshold value If the sensor input value is less than 30%,plants get watered or else it continues to read the moisture value The watering stops till the moisture contain reaches the threshold value
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21. #include <LiquidCrystal.h> //library to interface LCD #include <Wire.h> #include "RTClib.h“ //library to interface RTC LiquidCrystal lcd(12,11,5,4,3,2); RTC_DS1307 rtc; const int moisture_sensor=A3; //Analog input pin A3 is declare to read soil sensor value const int relay_out=8; //output pin to control relay int MAX; //variable to hold threshold value void setup () { Serial.begin(57600); #ifdef AVR Wire.begin(); #else Wire1.begin(); // Shield I2C pins connect to alt I2C bus on Arduino uno #endif rtc.begin(); //Initialized RTC lcd.begin(16,2); // Initialized LCD to 16X2 pinMode(relay_out,OUTPUT); //define relay_out pin as output pin pinMode(6,INPUT); //define pin no. 6 lcd.print(" Welcome "); //instruction to display to LCD lcd.setCursor(0,1); //instruction to move cursor lcd.print(" P16 "); delay(1000); //delay of 1sec lcd.clear(); //clear LCD }
  • 22. void loop () { int m=(-analogRead(moisture_sensor)+1023)/10; lcd.clear(); if(digitalRead(6)==LOW) { lcd.clear(); DateTime now = rtc.now(); lcd.print(now.year(), DEC); //get year lcd.print('/'); lcd.print(now.month(), DEC); //get month lcd.print('/'); lcd.print(now.day(), DEC); //get day lcd.setCursor(0,1); lcd.print(now.hour(), DEC); //get hour lcd.print(':'); lcd.print(now.minute(), DEC); //get minute lcd.print(':'); lcd.print(now.second(), DEC); //get second delay(1000); //display for 1 second lcd.clear(); lcd.print("Moisture Content"); lcd.setCursor(0,1); lcd.print(m); lcd.print('%'); delay(1000); lcd.clear();
  • 23. if(m==30) //instruction to control relay digitalWrite(relay_out,HIGH); else if(m>=MAX) digitalWrite(relay_out,LOW); else digitalWrite(relay_out,HIGH); lcd.print("threshold value"); lcd.setCursor(0,1); lcd.print(MAX); lcd.print('%'); delay(1000); lcd.clear(); } else { lcd.clear(); //instructions to setup threshold value MAX=m; lcd.print("new value"); lcd.setCursor(0,1); lcd.print(MAX); lcd.print('%'); delay(1000); lcd.clear(); } }
  • 24. • The farmers working in the farm lands are solely dependent on the rains and bore wells for irrigation of land. • Even if the farm land has a water-pump, manual intervention by farmers is required to turn the pump on/off whenever needed. • Our project will help the farmers by removing manual intervention controlled by microcontroller using moisture sensor and giving highly efficient in conservation of water