0% found this document useful (0 votes)
2 views

Automatic Irrigation System

The document outlines the development of an automatic irrigation system using soil moisture sensors to measure water content in soil, emphasizing the importance of sustainable land management. It includes instructions for connecting components like Arduino, LEDs, and buzzers, as well as programming code for operation. Additionally, it provides resources for further reading and video tutorials to aid in project preparation.

Uploaded by

Vinayak Sharma
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views

Automatic Irrigation System

The document outlines the development of an automatic irrigation system using soil moisture sensors to measure water content in soil, emphasizing the importance of sustainable land management. It includes instructions for connecting components like Arduino, LEDs, and buzzers, as well as programming code for operation. Additionally, it provides resources for further reading and video tutorials to aid in project preparation.

Uploaded by

Vinayak Sharma
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 9

Imbue Education

Automatic Irrigation system

Creativity

Leadership

Problem Solving
SDG Imbue Education

“Decent work is at the heart of the search for dignity


for the individual , stability for the family and peace
in the community”
DECENT WORK AND ECONOMIC GROWTH
SDG Imbue Education

‘ Look after the land and the land will look after
you , destroy the land and it will destroy you”
Life On LAND
Soil Moisture Sensor Imbue Education

● Soil moisture sensors measure the volumetric water content in soil


● Soil moisture sensors are designed to estimate soil volumetric water content based on the
dielectric constant of the soil.
● Measurement of the dielectric constant gives a predictable estimation of water content.
Components Imbue Education

Moisture Sensor Arduino UNO Jumper Wire/Breadboard Wire

Leds Breadboard
Connections Imbue Education

Step 1- Connect Moisture l sensor with Arduino


Vcc- 5V
GND-GND
D0= Digital

Step 2 - Connect led with Arduino


Cathode - GND
Anode - 13

Step 3- Connect Buzzer with Arduino


Cathode - GND
Anode - 8
Imbue Education
Program 3.Instructions to run in loop
1. Define the Pins
void loop() {
int sensor=8; if (digitalRead(sensor)==HIGH){
int led=13; digitalWrite(13,HIGH);
int buzzer=11; digitalWrite(11,HIGH);}

else{
digitalWrite(13,LOW);
digitalWrite(11,LOW);
}
2. Instructions to run once
}
void setup() {
pinMode (8,INPUT);
pinMode(13, OUTPUT);
pinMode(11,OUTPUT);
}

7
Imbue Education

Articles
1. https://www.nature.com/articles/s41598-018-35731-7
2. https://www.mdpi.com/journal/sensors/special_issues/soil_moisture_sensors

YouTube
1. https://www.youtube.com/watch?v=lp2S_7ygabo
2. https://www.youtube.com/watch?v=Ta4eHHiX4-s&t=92s
Imbue Education
HOMEWORK

Prepare 10 min presentation about your project

Read articles and watch videos

Design Automatic Irrigation System

You might also like