Arduino Based Automatic Plant Watering System
Arduino Based Automatic Plant Watering System
• Whenever we go out of town for few days, we always used to worry about our plants as they need water on regular basis. So here we
are making Automatic Plant Irrigation System using Arduino, which automatically provides water to your plants and keep you updated
• In This Plant Watering System, Soil Moisture Sensor checks the moisture level in the soil and if moisture level is low then Arduino
switches On a water pump to provide water to the plant. Water pump gets automatically off when system finds enough moisture in the
soil. Whenever system switched On or off the pump, a message is sent to the user via GSM module, updating the status of water pump
and soil moisture. This system is very useful in Farms, gardens, home etc. This system is completely automated and there is no need for
• We wanted to create a system using Arduino to measure the moisture levels of multiple plants and to
effeciently deliver water to them.
REQUIRED PARTS
• Arduino
• Soil Moisture Sensor x4
• Single channel relay module
• Dc water motor
• 9v Battery
• Connecting wires
WHAT IS ARDUINO?
• The Arduino board can be programmed to do anything by simply programming the microcontroller on
board using a set of instructions for which, the Arduino board consists of a USB plug to communicate with
your computer and a bunch of connection sockets that can be wired to external devices like motors, LEDs
etc.
• The aim of Arduino is to introduce the world of electronics to people who have small to no experience in
electronics like hobbyists, designers, artists etc.
• Arduino is based on open source electronics project i.e. all the design specifications, schematics, software
are available openly to all the users. Hence, Arduino boards can bought from vendors as they are
commercially available or else you can make your own board by if you wish i.e. you can download the
schematic from Arduino’s official website, buy all the components as per the design specification,
assemble all the components, and make your own board.
MOISTURE SENSOR
****
{ pinMode(soil, INPUT);
pinMode(10, OUTPUT);
lcd.begin(16, 2);
lcd.setCursor(0,1);
lcd.print("IRRIGATION SYSTEM");
delay(2000);
}void loop()
if(digitalRead(soil)==HIGH)
{ digitalWrite(10,HIGH);
// delay(200);
lcd.clear();
lcd.print(" MOTOR");
lcd.setCursor(0, 1);
lcd.print(" ON ");
delay(300); }
else
digitalWrite(10, LOW);
//DIGITALWRITE(FIRE,LOW);
LCD.CLEAR();
LCD.PRINT(“MOTOR”);
LCD.SETCURSOR(0,1);
LCD.PRINY(“OFF”);
DELAY(200);
}
}
ADVANTAGES AND
DISADVANTAGES
• Saves you water and time: Both sprinkler and dribble water system
frameworks can be set to day by day or week by week watering, just as
coordinated for explicit hours during day or night.
•
• Cost: There are costs in buying, introducing and maintaining automatic
Reduces weed development: By introducing a water system framework
explicitly intended for your landscape, just zones that really need water equipment.
will get it. In this manner constraining your potential weed development • Reliability: Can the irrigator trust a programmed framework to work
precisely. Dribble water system frameworks are especially effective at accurately without fail? Here and there disappointments will happen.
this: the framework coordinates water explicitly to each plant's Frequently these disappointments are a result of human mistake in
underlying foundations, as opposed to sprinkling over the complete setting and keeping up the frameworks.
land.
• Increased channel maintenance: There is a need to expand support of
• Improves plant development: Plants will rise quicker and greener when
channels and tools to guarantee the arrangement works accurately.
watered with littler measures of water over a more extended period,
which is actually what water system frameworks are intended to do. Channels ought to be fenced to shield the programmed units from
Introducing a water system framework will improve your plant stock damage.
development considerably.
• Preserves soil supplements: Watering by hand frequently prompts
abundance water saturating the soil. Water overflow saturates the dirt
and diverts valuable supplements from your plants. Utilizing a water
system framework will save your dirt structure and keep your plants
retaining supp
RESULT
Automated irrigation system optimizes the usage of water by reducing wastage of water.
This project can able to contribute towards socio-economic development of the nation. It has
fast response and system is user friendly. The primary application of this project is for formers
and gardeners who do not have sufficient time to water their crops or plants regularly. This
project also covers an application for formers who are wasting water unknowingly during
irrigation. The main objective of this smart irrigation system is to make it more innovative, user
friendly, time saving and more efficient than the existing system.
FUTURE SCOPE
• This smart irrigation system extends watering time for plants, and provides ideal growth condition. It
saves time and timer delay as per the environmental condition can be added for automatic watering.
This smart irrigation system can be adjusted and modified according to the changing environment.
• This automated Smart Irrigation System using arduino is found to be cost-effective for enhancing the
techniques to preserve water resources and to optimize them for agriculture production. This system
helps the farmer by working automatically and smartly. With placing multiple sensors in the soil, water
can be only provided to the required piece of land. This system requires less maintenance so it is easily
affordable by all farmers. This system helps to reduce water consumption.
• With using this system the crop production increases to a great extent. As per future perspective, this
system can be the more intelligent system which predicts user actions, nutrient level of the plants, time
to harvest, etc. With using Machine Learning algorithms more advancements can be done in the future
which will help farmer a lot and water consumption can also be reduced in agriculture.
THANKYOU