Parts and materials
Buzzer
Arduino Wireless Proto Shield
5 mm LED: Red
9V battery (generic)
Arduino UNO
Breadboard (generic)
Jumper wires (generic)
Spark Fun Soil Moisture Sensor
12V DC Water Pump
Online services and applications
Arduino IDE
This project’s details
OBJECTIVES:
1) Automating the irrigation system.
2) Provide adequate moisture for plant development.
3) Cool the soil to create a comfortable environment.
4)Soak the tillage pan in water.
5) To lower the labour cost.
6)One of the main goals of this project is to save time.
7) To prevent the plan from rotting due to water.
INTRODUCTION:
We’re talking about an automated system that encompasses the entire irrigation system in this project.
An automated watering system is one that begins watering plants after determining soil moisture using a soil moisture sensor.
We will have some additional benefits in this project.
We don’t have to worry about this watering because the gadget will do it on its own when it’s needed.
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);
}
Speak Less, Listen More, React Less, Observe More
KP
“Respect everyone’s time, If you want yours to be respected” – KP
Helping Hands.
أنا أحب هذا المشروع شكرا لتقاسم