0% found this document useful (0 votes)
21 views4 pages

Arduino Automated Watering Plan - Elif AVCU

Uploaded by

Joel Santos Jr.
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)
21 views4 pages

Arduino Automated Watering Plan - Elif AVCU

Uploaded by

Joel Santos Jr.
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/ 4

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() {
Serial.begin(9600);
motor.setSpeed(1000);
motor.run(RELEASE);
}
void loop()
{int sensorValue = analogRead(A0);
Serial.println(sensorValue);
delay(1);
if(sensorValue>300)
{
motor.run(FORWARD);
}
else
motor.run(RELEASE);
}

You might also like