AutoWaterFlora: The Self Watering Plant

AutoWaterFlora: The Self Watering Plant



Materials needed:
    Electronics:
    • Arduino Uno
    • Motor Driver shield 
    • Hobby water pump
    • 12 volt 2 amp  adapter 
    Other materials:
    • An old plastic container for water
    • Potted plant (any size)
    Tools:
    • Hot glue gun
    • Philips Screwdriver
    Working:
    The project works on the simple timer of Arduino Uno board and will initiate the pump to work for specific time at specific intervals. I have taken the pump working time as 2 seconds and interval as 6 hours.

    Code:
    The code is quiet simple and easy to understand.

    #include <AFMotor.h>  // Add the AFMotor Library to the IDE
    AF_DCMotor motor(2); // Make a motor object on the second motor output
    void setup() {
      motor.run(RELEASE);
    }
    void loop() {
      motor.run(FORWARD); //Start the motor
      delay(2000); //Time for the pump to work = 2 seconds, can be changed as per needs
      motor.run(RELEASE); // Stop the motor
      delay(21600000); //Pump interval = 6 hours, can be changed as per needs
      motor.setSpeed(100); // Set the speed of the motor

    Circuit Diagram:


    Important Steps:
    1. Add the AFMotor library:
    2. Download the Attached compressed folder.
    3. To add the library go to Sketch tab > Include Library> Add .ZIP library> Select the compressed folder of this file.
    Go to https://www.instructables.com/id/AutoWaterFlora-the-Self-Watering-Plant/ and find the .ZIP file and also Comment and follow there.


    Connection:
    Motor to be connected on M2 terminal and the power source as per negative positive.
    The Shield to be on top of Arduino Uno.

    Links for the materials:



    Comments

    1. Very nice. Can this be used as a drip irrigation tool as well. If so, what will be the estimated cost of set-up for one acre land parcel

      ReplyDelete
      Replies
      1. The cost of drip irrigation varies from crop-to-crop but the average cost will be about Rs 47,500‬ per acre of land.

        Delete
    2. Very good Animesh.... keep it up 👍👏👏👏

      ReplyDelete
    3. Really Cool....waiting for more innovations!!!!

      ReplyDelete
    4. Very good. I would love to see more projects soon

      ReplyDelete

    Post a Comment

    Popular Posts