SlideShare a Scribd company logo
1 of 21
CONFIGURING TIMERS FOR AUTOMATIC
SWITCHING
“ON AND OFF” OF IRRIGATION SYSTEMS
- ICT FOR AGRICULTURE ENGINEERS
PRESENTED BY
Mr.S.Arul B.E(Agri).,M.Tech(AT)
MRT22PGMAT001
Department of Agriculture Technology
Shobhit Institute of Engineering and Technology
Merut,UP.
INTRODUCTION
o This paper proposes an automated irrigation using Arduino microcontroller system which is
cost effective and can be used in a farm or in an average home garden.
o The proposed system is developed to be automatically watering the plants when the soil
moisture sensor detected water insufficiency in the soil by using the Arduino as the center
core.
o The automated irrigation system is a fully functional prototype which consists of a soil
moisture sensor; an LCD display to show the moisture percentage and pump status; a relay
module which is used to control the on and off switch of the water pump; and a water pump.
o When the soil moisture sensor senses the dry soil, it will show the moisture percentage on the
LCD display, and the relay module will switch on the water pump automatically to start the
watering process or vice versa.
o Hardware testing is conducted to ensure the proposed system is fully functional.
COMPONENTS NEEDED
1.Arduino UNO development board
2. Motor (or) LED
3. USB cable
4. Breadboard
5. Connecting wires
ARDUINO UNO DEVELOPMENT BOARD
The Arduino UNO is the best board
to get started with electronics and
coding. If this is your first experience
tinkering with the platform, the UNO
is the most robust board you can start
playing with. The UNO is the most
used and documented board of the
whole Arduino family.
LED
LEDs are small, powerful lights that
are used in many different
applications. To start, we will work
on blinking an LED, the Hello World
of microcontrollers. It is as simple as
turning a light on and off.
Establishing this important baseline
will give you a solid foundation as
we work towards experiments that
are more complex.
USB CABLE
Use it to connect Arduino Uno,
Arduino Mega 2560, Arduino 101 or
any board with the USB female A
port of your computer.
Cable length is approximately
100cm. Cable color and shape may
vary slightly from image as our stock
rotates. If you want to have a closer
look to USB cables and standers
check the USB cable pinouts
referral page on pinouts.ru
USB cable type A/B Standard USB
2.0 cable.
BREADBOARD
Breadboards are one of the most
fundamental pieces when learning
how to build circuits. In this tutorial,
you will learn a little bit about what
breadboards are, why they are called
breadboards, and how to use one.
Once you are done you should have a
basic understanding of how
breadboards work and be able to
build a basic circuit on a breadboard.
CONNECTING WIRES
Connecting wires are used for
making connections between
items on your breadboard and
your Arduino’s header pins. Use
them to wire up all your circuits.
TECHNICAL SPECIFICATIONS OF
ARDUINO UNO
MICROCONTROLLER - ATMEGA328
OPERATING VOLTAGE - 5V
SUPPLY VOLTAGE (RECOMMENDED) - 7-12V
MAXIMUM SUPPLY VOLTAGE (NOT RECOMMENDED) - 20V
DIGITAL I/O PINS - 14(OF WHICH 6 PROVIDE PWM O/P)
ANALOG INPUT PINS - 6
DC CURRENT PER I/O PIN - 40 MA
DC CURRENT FOR 3.3V PIN - 50 MA
FLASH MEMORY - 32 KB (ATMEGA328) OF WHICH 0.5KB USED BY
BOOTLOADER
SRAM - 2 KB (ATMEGA328)
EEPROM - 1 KB (ATMEGA328)
CLOCK SPEED - 16 MHZ
PROGRAMMING
void setup() {
// put your setup code here, to run once:
pinMode(7,OUTPUT);
pinMode(10,OUTPUT);
pinMode(12,OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(7,HIGH);
delay(1000);
digitalWrite(7,LOW);
digitalWrite(10,HIGH);
delay(1000);
digitalWrite(10,LOW);
digitalWrite(12,HIGH);
delay(1000);
digitalWrite(12,LOW);
}
PROCEDURE
1.Arduino development board is connected to PC through USB cable
2. Open “Arduino” icon from the computer desktop
3. Select tools menu→ choose Arduino board type
4. Select tools menu→ choose Arduino board COM port
5. Select file menu→ choose new and type program
6. Click Verify icon→ once compilation done to upload the program to
Arduino controller by clicking Upload icon
7. The circuit connections were given as shown in connection diagram.
8. When the given the LEDs are glows one by one sequentially.
CONNECTION DIAGRAM
MODEL GRAPH
TUTTORIAL VIDEO
CONCLUSION
The main purpose of this paper is to propose an automated irrigation system
that water the plant without any human control. The implemented automated
irrigation system is found to be feasible and cost effective after optimizing
the water resources for the agricultural production. Besides the automated
irrigation system, the proposed system also provides the monitoring function
where users are able to check the soil moisture based on the reading displayed
on the LCD. The proposed system has been designed and tested to function
automatically. For future works, the automated irrigation system can be
configured to measure the moisture level (water content) according to the
moisture requirement of the different plants.
CONFIGURING TIMERS FOR AUTOMATIC SWITCHING “ON AND OFF” OF IRRIGATION SYSTEMS S.ARUL.pptx

More Related Content

Similar to CONFIGURING TIMERS FOR AUTOMATIC SWITCHING “ON AND OFF” OF IRRIGATION SYSTEMS S.ARUL.pptx

Arduino PAPER ABOUT INTRODUCTION
Arduino PAPER ABOUT INTRODUCTION  Arduino PAPER ABOUT INTRODUCTION
Arduino PAPER ABOUT INTRODUCTION NAGASAI547
 
Arduino Slides With Neopixels
Arduino Slides With NeopixelsArduino Slides With Neopixels
Arduino Slides With Neopixelssdcharle
 
introduction of arduino and node mcu
introduction of arduino and node mcuintroduction of arduino and node mcu
introduction of arduino and node mcu6305HASANBASARI
 
Digital home automation with arduino bluetooth
Digital home automation with arduino bluetoothDigital home automation with arduino bluetooth
Digital home automation with arduino bluetoothShishupal03012015
 
Report 171115175724
Report 171115175724Report 171115175724
Report 171115175724PAVINRAJ5
 
Project report on home automation using Arduino
Project report on home automation using Arduino Project report on home automation using Arduino
Project report on home automation using Arduino AMIT SANPUI
 
IoT Based Solar Water Pump Controller
IoT Based Solar Water Pump ControllerIoT Based Solar Water Pump Controller
IoT Based Solar Water Pump ControllerIJSRED
 
SKAD Electronics Training Manual.pdf
SKAD Electronics Training Manual.pdfSKAD Electronics Training Manual.pdf
SKAD Electronics Training Manual.pdfKadiriIbrahim2
 
Arduino اردوينو
Arduino اردوينوArduino اردوينو
Arduino اردوينوsalih mahmod
 
Introduction to Arduino.pptx
Introduction to Arduino.pptxIntroduction to Arduino.pptx
Introduction to Arduino.pptxAkshat Bijronia
 
Interface stepper motor through Arduino using LABVIEW.
Interface stepper motor through Arduino using LABVIEW.Interface stepper motor through Arduino using LABVIEW.
Interface stepper motor through Arduino using LABVIEW.Ankita Tiwari
 
Arduino Workshop (3).pptx
Arduino Workshop (3).pptxArduino Workshop (3).pptx
Arduino Workshop (3).pptxHebaEng
 
Arduino and Circuits.docx
Arduino and Circuits.docxArduino and Circuits.docx
Arduino and Circuits.docxAjay578679
 

Similar to CONFIGURING TIMERS FOR AUTOMATIC SWITCHING “ON AND OFF” OF IRRIGATION SYSTEMS S.ARUL.pptx (20)

Arduino PAPER ABOUT INTRODUCTION
Arduino PAPER ABOUT INTRODUCTION  Arduino PAPER ABOUT INTRODUCTION
Arduino PAPER ABOUT INTRODUCTION
 
Arduino Slides With Neopixels
Arduino Slides With NeopixelsArduino Slides With Neopixels
Arduino Slides With Neopixels
 
introduction of arduino and node mcu
introduction of arduino and node mcuintroduction of arduino and node mcu
introduction of arduino and node mcu
 
Digital home automation with arduino bluetooth
Digital home automation with arduino bluetoothDigital home automation with arduino bluetooth
Digital home automation with arduino bluetooth
 
Report 171115175724
Report 171115175724Report 171115175724
Report 171115175724
 
Project report on home automation using Arduino
Project report on home automation using Arduino Project report on home automation using Arduino
Project report on home automation using Arduino
 
IoT Based Solar Water Pump Controller
IoT Based Solar Water Pump ControllerIoT Based Solar Water Pump Controller
IoT Based Solar Water Pump Controller
 
SKAD Electronics Training Manual.pdf
SKAD Electronics Training Manual.pdfSKAD Electronics Training Manual.pdf
SKAD Electronics Training Manual.pdf
 
water level edit.docx
water level edit.docxwater level edit.docx
water level edit.docx
 
Arduino اردوينو
Arduino اردوينوArduino اردوينو
Arduino اردوينو
 
Arduino Programming Basic
Arduino Programming BasicArduino Programming Basic
Arduino Programming Basic
 
Introduction to Arduino.pptx
Introduction to Arduino.pptxIntroduction to Arduino.pptx
Introduction to Arduino.pptx
 
Interface stepper motor through Arduino using LABVIEW.
Interface stepper motor through Arduino using LABVIEW.Interface stepper motor through Arduino using LABVIEW.
Interface stepper motor through Arduino using LABVIEW.
 
Arduino Workshop (3).pptx
Arduino Workshop (3).pptxArduino Workshop (3).pptx
Arduino Workshop (3).pptx
 
Ardunio
ArdunioArdunio
Ardunio
 
publish manual
publish manualpublish manual
publish manual
 
New Microsoft Office Word Document
New Microsoft Office Word DocumentNew Microsoft Office Word Document
New Microsoft Office Word Document
 
Arduino and Circuits.docx
Arduino and Circuits.docxArduino and Circuits.docx
Arduino and Circuits.docx
 
PPT ON Arduino
PPT ON Arduino PPT ON Arduino
PPT ON Arduino
 
P.Akshaya reddy.pptx
P.Akshaya reddy.pptxP.Akshaya reddy.pptx
P.Akshaya reddy.pptx
 

More from ARUL S

CLEANING AND GRADING POST HARVEST TECHNOLOGY
CLEANING AND GRADING POST HARVEST TECHNOLOGYCLEANING AND GRADING POST HARVEST TECHNOLOGY
CLEANING AND GRADING POST HARVEST TECHNOLOGYARUL S
 
TYPES OF GRAIN DRYER IN POST HARVEST TECHNOLOGY.pptx
TYPES OF GRAIN DRYER IN POST HARVEST TECHNOLOGY.pptxTYPES OF GRAIN DRYER IN POST HARVEST TECHNOLOGY.pptx
TYPES OF GRAIN DRYER IN POST HARVEST TECHNOLOGY.pptxARUL S
 
PSYCHROMETRY AND DRYING POST HARVEST TECHNOLOGY UNIT 2.pptx
PSYCHROMETRY AND DRYING POST HARVEST TECHNOLOGY UNIT 2.pptxPSYCHROMETRY AND DRYING POST HARVEST TECHNOLOGY UNIT 2.pptx
PSYCHROMETRY AND DRYING POST HARVEST TECHNOLOGY UNIT 2.pptxARUL S
 
POST HARVEST Threshing equipment PPT 2.pptx
POST HARVEST Threshing equipment PPT 2.pptxPOST HARVEST Threshing equipment PPT 2.pptx
POST HARVEST Threshing equipment PPT 2.pptxARUL S
 
POST HARVEST TECHNOLOGY.pptx
POST HARVEST TECHNOLOGY.pptxPOST HARVEST TECHNOLOGY.pptx
POST HARVEST TECHNOLOGY.pptxARUL S
 
DESIGN AND FABRICATION OF SOLAR POWERED WATER PUMPING SYSTEM WITH AUTO TRACKI...
DESIGN AND FABRICATION OF SOLAR POWERED WATER PUMPING SYSTEM WITH AUTO TRACKI...DESIGN AND FABRICATION OF SOLAR POWERED WATER PUMPING SYSTEM WITH AUTO TRACKI...
DESIGN AND FABRICATION OF SOLAR POWERED WATER PUMPING SYSTEM WITH AUTO TRACKI...ARUL S
 
PROTECTED CULTIVATION 4TH UNIT.pptx
PROTECTED CULTIVATION 4TH UNIT.pptxPROTECTED CULTIVATION 4TH UNIT.pptx
PROTECTED CULTIVATION 4TH UNIT.pptxARUL S
 
SPECIAL PACKAGING TECHNIQUES UNIT 5.pptx
SPECIAL PACKAGING TECHNIQUES UNIT 5.pptxSPECIAL PACKAGING TECHNIQUES UNIT 5.pptx
SPECIAL PACKAGING TECHNIQUES UNIT 5.pptxARUL S
 
FUNCTIONS OF PACKAGING MATERIALS spt 3rd Unit.pptx
FUNCTIONS OF PACKAGING MATERIALS spt 3rd Unit.pptxFUNCTIONS OF PACKAGING MATERIALS spt 3rd Unit.pptx
FUNCTIONS OF PACKAGING MATERIALS spt 3rd Unit.pptxARUL S
 
PROTECTED CULTIVATION OF FLOWER CROPS protected cultivation.pptx
PROTECTED CULTIVATION OF FLOWER CROPS protected cultivation.pptxPROTECTED CULTIVATION OF FLOWER CROPS protected cultivation.pptx
PROTECTED CULTIVATION OF FLOWER CROPS protected cultivation.pptxARUL S
 

More from ARUL S (10)

CLEANING AND GRADING POST HARVEST TECHNOLOGY
CLEANING AND GRADING POST HARVEST TECHNOLOGYCLEANING AND GRADING POST HARVEST TECHNOLOGY
CLEANING AND GRADING POST HARVEST TECHNOLOGY
 
TYPES OF GRAIN DRYER IN POST HARVEST TECHNOLOGY.pptx
TYPES OF GRAIN DRYER IN POST HARVEST TECHNOLOGY.pptxTYPES OF GRAIN DRYER IN POST HARVEST TECHNOLOGY.pptx
TYPES OF GRAIN DRYER IN POST HARVEST TECHNOLOGY.pptx
 
PSYCHROMETRY AND DRYING POST HARVEST TECHNOLOGY UNIT 2.pptx
PSYCHROMETRY AND DRYING POST HARVEST TECHNOLOGY UNIT 2.pptxPSYCHROMETRY AND DRYING POST HARVEST TECHNOLOGY UNIT 2.pptx
PSYCHROMETRY AND DRYING POST HARVEST TECHNOLOGY UNIT 2.pptx
 
POST HARVEST Threshing equipment PPT 2.pptx
POST HARVEST Threshing equipment PPT 2.pptxPOST HARVEST Threshing equipment PPT 2.pptx
POST HARVEST Threshing equipment PPT 2.pptx
 
POST HARVEST TECHNOLOGY.pptx
POST HARVEST TECHNOLOGY.pptxPOST HARVEST TECHNOLOGY.pptx
POST HARVEST TECHNOLOGY.pptx
 
DESIGN AND FABRICATION OF SOLAR POWERED WATER PUMPING SYSTEM WITH AUTO TRACKI...
DESIGN AND FABRICATION OF SOLAR POWERED WATER PUMPING SYSTEM WITH AUTO TRACKI...DESIGN AND FABRICATION OF SOLAR POWERED WATER PUMPING SYSTEM WITH AUTO TRACKI...
DESIGN AND FABRICATION OF SOLAR POWERED WATER PUMPING SYSTEM WITH AUTO TRACKI...
 
PROTECTED CULTIVATION 4TH UNIT.pptx
PROTECTED CULTIVATION 4TH UNIT.pptxPROTECTED CULTIVATION 4TH UNIT.pptx
PROTECTED CULTIVATION 4TH UNIT.pptx
 
SPECIAL PACKAGING TECHNIQUES UNIT 5.pptx
SPECIAL PACKAGING TECHNIQUES UNIT 5.pptxSPECIAL PACKAGING TECHNIQUES UNIT 5.pptx
SPECIAL PACKAGING TECHNIQUES UNIT 5.pptx
 
FUNCTIONS OF PACKAGING MATERIALS spt 3rd Unit.pptx
FUNCTIONS OF PACKAGING MATERIALS spt 3rd Unit.pptxFUNCTIONS OF PACKAGING MATERIALS spt 3rd Unit.pptx
FUNCTIONS OF PACKAGING MATERIALS spt 3rd Unit.pptx
 
PROTECTED CULTIVATION OF FLOWER CROPS protected cultivation.pptx
PROTECTED CULTIVATION OF FLOWER CROPS protected cultivation.pptxPROTECTED CULTIVATION OF FLOWER CROPS protected cultivation.pptx
PROTECTED CULTIVATION OF FLOWER CROPS protected cultivation.pptx
 

Recently uploaded

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
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performancesivaprakash250
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...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
 
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
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordAsst.prof M.Gokilavani
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
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
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
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
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingrknatarajan
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college projectTonystark477637
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 

Recently uploaded (20)

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, ...
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
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...
 
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
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
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...
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
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
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and workingUNIT-V FMM.HYDRAULIC TURBINE - Construction and working
UNIT-V FMM.HYDRAULIC TURBINE - Construction and working
 
result management system report for college project
result management system report for college projectresult management system report for college project
result management system report for college project
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 

CONFIGURING TIMERS FOR AUTOMATIC SWITCHING “ON AND OFF” OF IRRIGATION SYSTEMS S.ARUL.pptx

  • 1. CONFIGURING TIMERS FOR AUTOMATIC SWITCHING “ON AND OFF” OF IRRIGATION SYSTEMS - ICT FOR AGRICULTURE ENGINEERS
  • 2. PRESENTED BY Mr.S.Arul B.E(Agri).,M.Tech(AT) MRT22PGMAT001 Department of Agriculture Technology Shobhit Institute of Engineering and Technology Merut,UP.
  • 3. INTRODUCTION o This paper proposes an automated irrigation using Arduino microcontroller system which is cost effective and can be used in a farm or in an average home garden. o The proposed system is developed to be automatically watering the plants when the soil moisture sensor detected water insufficiency in the soil by using the Arduino as the center core. o The automated irrigation system is a fully functional prototype which consists of a soil moisture sensor; an LCD display to show the moisture percentage and pump status; a relay module which is used to control the on and off switch of the water pump; and a water pump. o When the soil moisture sensor senses the dry soil, it will show the moisture percentage on the LCD display, and the relay module will switch on the water pump automatically to start the watering process or vice versa. o Hardware testing is conducted to ensure the proposed system is fully functional.
  • 5. 1.Arduino UNO development board 2. Motor (or) LED 3. USB cable 4. Breadboard 5. Connecting wires
  • 6. ARDUINO UNO DEVELOPMENT BOARD The Arduino UNO is the best board to get started with electronics and coding. If this is your first experience tinkering with the platform, the UNO is the most robust board you can start playing with. The UNO is the most used and documented board of the whole Arduino family.
  • 7. LED LEDs are small, powerful lights that are used in many different applications. To start, we will work on blinking an LED, the Hello World of microcontrollers. It is as simple as turning a light on and off. Establishing this important baseline will give you a solid foundation as we work towards experiments that are more complex.
  • 8. USB CABLE Use it to connect Arduino Uno, Arduino Mega 2560, Arduino 101 or any board with the USB female A port of your computer. Cable length is approximately 100cm. Cable color and shape may vary slightly from image as our stock rotates. If you want to have a closer look to USB cables and standers check the USB cable pinouts referral page on pinouts.ru USB cable type A/B Standard USB 2.0 cable.
  • 9. BREADBOARD Breadboards are one of the most fundamental pieces when learning how to build circuits. In this tutorial, you will learn a little bit about what breadboards are, why they are called breadboards, and how to use one. Once you are done you should have a basic understanding of how breadboards work and be able to build a basic circuit on a breadboard.
  • 10. CONNECTING WIRES Connecting wires are used for making connections between items on your breadboard and your Arduino’s header pins. Use them to wire up all your circuits.
  • 12. MICROCONTROLLER - ATMEGA328 OPERATING VOLTAGE - 5V SUPPLY VOLTAGE (RECOMMENDED) - 7-12V MAXIMUM SUPPLY VOLTAGE (NOT RECOMMENDED) - 20V DIGITAL I/O PINS - 14(OF WHICH 6 PROVIDE PWM O/P) ANALOG INPUT PINS - 6
  • 13. DC CURRENT PER I/O PIN - 40 MA DC CURRENT FOR 3.3V PIN - 50 MA FLASH MEMORY - 32 KB (ATMEGA328) OF WHICH 0.5KB USED BY BOOTLOADER SRAM - 2 KB (ATMEGA328) EEPROM - 1 KB (ATMEGA328) CLOCK SPEED - 16 MHZ
  • 14. PROGRAMMING void setup() { // put your setup code here, to run once: pinMode(7,OUTPUT); pinMode(10,OUTPUT); pinMode(12,OUTPUT); } void loop() { // put your main code here, to run repeatedly: digitalWrite(7,HIGH); delay(1000); digitalWrite(7,LOW); digitalWrite(10,HIGH); delay(1000); digitalWrite(10,LOW); digitalWrite(12,HIGH); delay(1000); digitalWrite(12,LOW); }
  • 15. PROCEDURE 1.Arduino development board is connected to PC through USB cable 2. Open “Arduino” icon from the computer desktop 3. Select tools menu→ choose Arduino board type 4. Select tools menu→ choose Arduino board COM port 5. Select file menu→ choose new and type program 6. Click Verify icon→ once compilation done to upload the program to Arduino controller by clicking Upload icon 7. The circuit connections were given as shown in connection diagram. 8. When the given the LEDs are glows one by one sequentially.
  • 19.
  • 20. CONCLUSION The main purpose of this paper is to propose an automated irrigation system that water the plant without any human control. The implemented automated irrigation system is found to be feasible and cost effective after optimizing the water resources for the agricultural production. Besides the automated irrigation system, the proposed system also provides the monitoring function where users are able to check the soil moisture based on the reading displayed on the LCD. The proposed system has been designed and tested to function automatically. For future works, the automated irrigation system can be configured to measure the moisture level (water content) according to the moisture requirement of the different plants.