Automatic Watering System using Soil Moisture Sensor and RTC Timer with Arduino

Overview

Automatic Watering System using Soil Moisture Sensor and RTC Timer with Arduino

Technical Answers to Real-World Problems

Know the plant, Grow the plant!

Contents

  1. What is Automatic Watering System (AWS)?
  2. What is AWS using Soil moisture Sensor?
  3. What is AWS using Real Time Clock - DS3231?
  4. How to build an AWS using Soil Moisture Sensor and RTC DS3231?
  5. Where to get help?
  6. Contribution

1. What is Automatic Watering System (AWS)?

We all know that plants are very beneficial to all human beings in many aspects. Plants helps in keeping the environment healthy by cleaning air naturally and producing oxygen. Many people love to have plants in their backyard. But due to civilization and insufficiency of place many people used to grow plants in mould or dirt, pot, and placed on the windowsill. These plants are dependent on conventional breeding - watering, and provide the right amount of sun to sustain life and growth. In busy schedule of day-to-day life, many time people forget to water their plants and due to this plants suffers many disorders and ultimately died. In addition, the world's biggest problem in modem society is the shortage of water resources, agriculture is a demanding job to consume large amounts of water. It is very essential to utilize the water resources in proper way.

Plants in our backyard/indoor are to be taken care of even in our absence, this is what we achieved through our work. Our Solution approach is entirely to change watering Manually to watering Automatically.

2. What is AWS using Soil moisture Sensor?

Soil moisture sensor is a novel device which senses the moisture content in the soil, and with suitable mechanism allows water to be watered depending on the moisture content of the soil. This allows flow of water or stoppage of water to the plants by using an automated watering system.
It helps you in watering at times when your plant is too dry and needs water. All the plants are not same, they need different amount of water. If it's too wet and doesn't need water, it helps you know that.
Soil moisture sensor & Arduino: It measures the moisture content in soil and checks if the plant needs water or not, pump waters the plant accordingly.

3. What is AWS using Real Time Clock - DS3231?

Real Time Clock keep track of current time. The RTC maintains seconds, minutes, hours, day, date, month, and year information. The date at the end of the month is automatically adjusted for months with fewer than 31 days, including corrections for leap year. The clock operates in either the 24-hour or 12-hour format with an AM/PM indicator. Once the time is uploaded and it synchronizes to the real world time.
It helps you in watering at times when your not in home/place for long time. You are gone but you can count on this to water on time as you needed, know when to water.
RTC DS3231 & Arduino: RTC helps you in keeping track of the current time and water the plant exactly when you need it and pump waters the plant accordingly.

4. How to build an AWS using Soil Moisture Sensor and RTC DS3231?

Requirements

  • Arduino UNO – Microchip ATmega328P (Operating Voltage: 5 Volts, Input Voltage: 7 to 20 Volts, Digital I/O Pins: 14)
  • Soil moisture sensor module– 3.3v - 5v, Operating Voltage (VDC) - 3.3 ~ 5, PCB Dimension - Approx.3cm x 1.5cm, Soil Probe Dimension - Approx. 6cm x 3cm, Cable Length (cm) – 20
  • Submersible Pump - 180V-230V, 1.85 M, 18W and an attachable pipe of 32mm – 110mm with required length
  • Relay – (1 or many channel), 5V DC, 100ma, Load - 250v 10a AC or 30v 10a dc
  • Power supply – AC socket 220V
  • RTC DS3231 - AT24C32 IIC Precision RTC (Operating voltage - 3.3 - 5 .5 V, Clock chip: High-precision clock chip DS3231, Clock Accuracy: 0 - 40 centigrade range, the accuracy 2ppm, the error was about 1 minute) with a lithium coin battery of 3v – 5v
  • D type USB cable
  • Breadboard & Jumper wires - Male-to-Female, Male-to-Male, Female-to-Female.
  • Arduino IDE – 1.8.16 (recommended) - The open-source Arduino Software (IDE) makes it easy to write code and upload it to the board. This software can be used with any Arduino board.

Module / Component Description

  • Arduino UNO:
    Arduino Uno is a microcontroller board based on the ATmega328. It has 14 digital input / output pins (of which 6 can be used as PWM outputs), 6 analog inputs, 16 MHz ceramic resonator, USB connection, power jack, ICSP plug, and a reset button. It contains everything needed to support the microcontroller; simply use the USB cable or power it with a AC-to-DC adapter or battery is connected to a computer begins.
  • Relay:
    Relay is an electrically operated switch. Many relays for switching solenoid mechanism mechanically operated, but can also be used for other principles of operation. Relays are widely used in early computers to telephones and perform logical operations.
    The Relay module is a switch that controlled by an electromagnet. It is used to control the on and off of the DC watering pump by opening or closing the electric path that passes to the watering pump. It is controlled by the code from the Arduino.
  • Soil Moisture Sensor:
    A moisture sensor is used to sense the level of moisture content present in the irrigation field. It has a level detection module in which we can set a reference value. This circuit can be used with analog probes that produce a voltage proportional to soil moisture. The moisture content of the soil is found by using the soil moisture sensor which produces an equivalent output voltage proportional to the conductivity between the two probes. The module has a built-in potentiometer for sensitivity adjustment of the digital output (DO).
    You can set a threshold by using a potentiometer; So that when the moisture level exceeds the threshold value, the module will output LOW otherwise HIGH.
  • Real Time Clock (RTC) - DS3231:
    The working in this RTC module is as follows, Firstly the condition of timer from when the watering has to happen is being given in loop through Arduino and the rtc is set to current time, when the relay is connected to an external power supply, the loop executes and checks if the current time of conditioned time. If the time matches, power supply is on and the watering happens and similarly the relay will be triggered off, if the loop checks for the stop time and matches and thus, watering does stops.

Architecture / Workflows

  • AWS using Soil moisture Sensor Architecture for AWS using Soil moisture Sensor

  • AWS using Real Time Clock - DS3231 Architecture for AWS using Real Time Clock - DS3231

Schematic Diagrams

  • AWS using Soil moisture Sensor Schematic diagram for AWS using Soil moisture Sensor
  • AWS using Real Time Clock - DS3231 Schematic diagram for AWS using Real Time Clock - DS3231

Code and Upload

  • Uploading time into RTC DS3231 for the first time (Only for AWS using Timer)

    1. Open Arduino IDE, go to File and select Examples in menu bar.
    2. Then select DS3231, choose Arduino and select DS3231_Serial_Easy.
    3. Now, Do changes in Void Setup().
    4. You can see the following and change Day, Time, Date to your current ones.
    //The following lines can be uncommented to set the date and time
    rtc.setDOW(WEDNESDAY);     // Set Day-of-Week to SUNDAY
    rtc.setTime(12, 0, 0);     // Set the time to 12:00:00 (24hr format)
    rtc.setDate(1, 1, 2014);   // Set the date to January 1st, 2014
    
    1. Now upload it to Arduino which is connected to RTC alone. (No changes in connections, just connect RTC alone to Arduino)
    2. After Successful Upload, follow the below steps.

    Upload time for first time in DS3231

  • AWS using Soil moisture Sensor and Real Time Clock - DS3231

    1. Open Arduino IDE and open code files (.ino file) i.e., AWS-sensor.ino or AWS-timer.ino, whichever you wanted to build.
    2. Make sure you selected the port and board type from Tools menu before uploading.
    3. Now, Upload it to the Arduino UNO connecting to the pc using D-type cable.
    4. After Successfully uploading, Connect the Power supply to relay and the AWS starts working as per the written code.
  • AWS - Software part (ADDITIONAL)

    1. Open Google colab / Jupyter notebook and open the code file AWS-software.ipynb in that.
    2. This Software part is all about to check which is the best machine learning model to predict whether to water the plant or not.
    3. 4 ML models were trained and the best accuracy model is used to predict the manually collected values of temperature and moisture values.
    4. Datasets are also added in repo.

5. Where to get help?

Few video links were attached, which Demonstrates how this Automatic watering System works.

6. Contribution

This is work done by a team of 5 students from Vellore Institute of Technology, Chennai

You might also like...
It is a serial communicator(controller, receiver...), communicate with sensor LP20 which is a laser ranger.

Intro It is a serial communicator(controller, receiver...), communicate with sensor LP20 which is a laser ranger. Its datasheet is contained in this r

A Home Assistant sensor that tells you what holiday is next
A Home Assistant sensor that tells you what holiday is next

Next Holiday Sensor This sensor tells you what holiday is coming up next. You can use it to set holiday light colors or other scenes. The state of the

BMP180 sensor driver for Home Assistant used in Raspberry Pi

BMP180 sensor driver for Home Assistant used in Raspberry Pi Custom component BMP180 sensor for Home Assistant. Copy the content of this directory to

Designed a system that can efficiently sort recyclables and transfer them to corresponding bins using Python, a Raspberry Pi, and Quanser Labs.
Designed a system that can efficiently sort recyclables and transfer them to corresponding bins using Python, a Raspberry Pi, and Quanser Labs.

System for Sorting and Recycling Containers - Project 3 Table of contents Overview The challenge Screenshot My process Built with Code snippets What I

Homeautomation system created with Raspberry Pi 3 and Firebase.
Homeautomation system created with Raspberry Pi 3 and Firebase.

Homeautomation System - Raspberry Pi 3 Desenvolvido com Python, Flask com AJAX e Firebase permite o controle local e remoto Itens necessários Raspberr

ArucoFollow - A script for Robot Operating System and it is a part of a project Robot
ArucoFollow - A script for Robot Operating System and it is a part of a project Robot

ArucoFollow ArucoFollow is a script for Robot Operating System and it is a part

An open source operating system designed primarily for the Raspberry Pi Pico, written entirely in MicroPython
An open source operating system designed primarily for the Raspberry Pi Pico, written entirely in MicroPython

PycOS An open source operating system designed primarily for the Raspberry Pi Pico, written entirely in MicroPython. "PycOS" is an combination of the

Jarvis: a personal assistant which can help you to manage your system

Jarvis Jarvis is personal AI based assistant which can help you to manage stuff in your computer. This is demo but I decided to make it more better so

ok-system-helper是一个简单的系统硬件的实时信息收集工具,使用python3.x开发

ok-system-helper ok-system-helper是一个简单的系统硬件的实时信息收集工具,使用python3.x开发,支持哪些硬件:CPU、内存、SWAP、磁盘、网卡流量。用户可在自己的项目中直接引入、开箱即用,或者结合flask等web框架轻松做成http接口供前端调用,亦可通过注

Owner
Vaishnavi Pothugunta
Tech enthusiastic.
Vaishnavi Pothugunta
ArduinoWaterHeaterIOT - IoT Probe of a solar PV water heating system - Arduino, Python, MQTT, MySQL

ArduinoWaterHeaterIOT IoT Probe of a solar PV water heating system - Arduino, Raspberry Pi, Python, MQTT, MySQL The Arduino sends the AC and DC watts

Jacques Fourie 1 Jan 11, 2022
This application works with serial communication. Use a simple gui to send and receive serial data from arduino and control leds and motor direction

This application works with serial communication. Use a simple gui to send and receive serial data from arduino and control leds and motor direction

ThyagoKZKR 2 Jul 18, 2022
A script and GUI for controlling stepper motors from an arduino

A script and GUI for controlling stepper motors from an arduino (nema 23 in my case but should work for others in general)

Pip 2 Aug 1, 2022
Designed and coded a password manager in Python with Arduino integration

Designed and coded a password manager in Python with Arduino integration. The Program uses a master user to login, and stores account data such as usernames and passwords to the master user. While logging into the program with the master user the Arduino was used as a two-factor authentication key. The program detects a connection to the Arduino and checks if certain parameters are met before completing the login procedure.

Noah Colbourne 1 Jan 16, 2022
A IC scan test interface for Arduino

ICSCAN_ARDUINO Prerequisites Python 3.6 or higher arduino uno or nano what is this It is a bitstream tranceiver to test IC chip It sends bitstream to

Nifty Chips Laboratory 0 Sep 15, 2022
Doughskript interpreter for converting simple command sequences into executable Arduino C++ code.

Doughskript interpreter for converting simple command sequences into executable Arduino C++ code.

Svjatoslav 2 Jan 11, 2022
An arduino/ESP project that can play back G-Force data previously recorded

An arduino/ESP project that can play back G-Force data previously recorded

null 7 Apr 12, 2022
Python module for controlling Broadlink RM2/3 (Pro) remote controls, A1 sensor platforms and SP2/3 smartplugs

Python module for controlling Broadlink RM2/3 (Pro) remote controls, A1 sensor platforms and SP2/3 smartplugs

Matthew Garrett 1.2k Jan 4, 2023
Sensor of Temperature Feels Like for Home Assistant.

Please ⭐ this repo if you find it useful Sensor of Temperature Feels Like for Home Assistant Installation Install from HACS (recommended) Have HACS in

Andrey 60 Dec 25, 2022
A Raspberry Pi Pico plant sensor hub coded in Micropython

plantsensor A Raspberry Pi Pico plant sensor hub coded in Micropython I used: 1x Raspberry Pi Pico - microcontroller 1x Waveshare Pico OLED 1.3 - scre

null 78 Sep 20, 2022