Arduino Automated Watering Plant
ABOUT THIS PROJECT
OBJECTIVES:
1)Making watering system automated.
2) Ensure enough moisture essential for plant growth .
3) Cool the soil to provide a suitable surrounding.
4)Soften the tillage pan.
5) To reduce the cost of labor.
6)Saving time is one of the major purpose of this project.
7) To save the plan being rotten because of water.
INTRODUCTION:
In this project, we are talking about an automated system that includes whole
watering system.
An automated watering system is such a system that starts watering to plants
by measuring soil moisture through soil moisture sensor. In this project we
will have some extra benefits. We don’t need to control this watering,
because the device will make this automatically when it will need it.
SCHEMATICS
Circuit Diagram
CODE
#include <AFMotor.h>
// DC motor on M2
AF_DCMotor motor(2);
void setup() {
[Link](9600);
[Link](1000);
[Link](RELEASE);
}
void loop()
{int sensorValue = analogRead(A0);
[Link](sensorValue);
delay(1);
if(sensorValue>300)
{
[Link](FORWARD);
}
else
[Link](RELEASE);
}