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

Enhanced Automatic Watering Plant System Project

Automatic watering plant system formet

Uploaded by

Deepak Chauhan
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)
5 views4 pages

Enhanced Automatic Watering Plant System Project

Automatic watering plant system formet

Uploaded by

Deepak Chauhan
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

Automatic Watering Plant System

Submitted By: Deepak Chauhan

MCA, GNIOT Greater Noida

Supervisor: [Supervisor's Name]

Acknowledgment

I would like to express my heartfelt gratitude to my supervisor for their invaluable guidance and

support throughout the project. I am also deeply grateful to my family and friends for their

encouragement and motivation during the development of this project.

Abstract

The Automatic Watering Plant System is an innovative project designed to automate irrigation

processes by using soil moisture sensors and microcontrollers. The system helps conserve water,

improves plant health, and minimizes human intervention. This document outlines the design,

implementation, and results of the system.

Introduction

Efficient water management is a major challenge in agriculture. Manual irrigation often leads to

water wastage and inconsistent watering. The Automatic Watering Plant System aims to address

these challenges by using a smart solution that automates the irrigation process. This system

utilizes soil moisture sensors to monitor the soil's condition and activates a water pump when

needed.
System Design

The Automatic Watering Plant System consists of the following key components:

- **Microcontroller**: Arduino Uno, which processes the input from sensors and controls the water

pump.

- **Soil Moisture Sensor**: Detects the soil's moisture level and sends data to the microcontroller.

- **Relay Module**: Acts as a switch to control the water pump.

- **Water Pump**: Pumps water to the plant as instructed by the microcontroller.

- **Power Supply**: Provides power to the entire system.

Code

// Arduino Code for Automatic Watering Plant System

#include <Arduino.h>

#define sensorPin A0 // Soil moisture sensor pin

#define relayPin 7 // Relay module pin

void setup() {

pinMode(relayPin, OUTPUT);

digitalWrite(relayPin, HIGH); // Initially turn off the pump

Serial.begin(9600);

void loop() {

int moistureLevel = analogRead(sensorPin);


Serial.print("Soil Moisture Level: ");

Serial.println(moistureLevel);

if (moistureLevel < 500) { // Threshold value for dry soil

digitalWrite(relayPin, LOW); // Turn on the pump

Serial.println("Water Pump ON");

} else {

digitalWrite(relayPin, HIGH); // Turn off the pump

Serial.println("Water Pump OFF");

delay(1000); // 1-second delay

Diagrams and Results

Refer to the diagrams (DFD and circuit diagram) included in this document.

Conclusion

The Automatic Watering Plant System successfully automates the irrigation process, reducing water

wastage and ensuring optimal plant health. This system is scalable and can be integrated with IoT
for remote monitoring.

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy