Welcome to Hackster!
Hackster is a community dedicated to learning hardware, from beginner to pro. Join us, it's free!
phoenixzx200
Published

AutoWaterFlora : Self Watering Plant

An apparatus by which a plant will get watered for some time and after regular intervals.

BeginnerFull instructions provided606
AutoWaterFlora : Self Watering Plant

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
Motor Shield
×1
Hobby DC 12 volt Pump
×1
Adapter 12 volt 2 amp
×1

Software apps and online services

Arduino IDE
Arduino IDE

Hand tools and fabrication machines

Hot glue gun (generic)
Hot glue gun (generic)
Multitool, Screwdriver
Multitool, Screwdriver

Story

Read more

Schematics

Circuit Diagram

Put the shield on top of Arduino Uno and then do the same wiring with the components.

Code

Coding

C/C++
#include <AFMotor.h>

AF_DCMotor motor(2);

void setup() {

  // turn on motor #2
  motor.setSpeed(100);
  motor.run(RELEASE);
}

void loop() {
  motor.run(FORWARD);
  delay(1000);
  motor.run(RELEASE);
  delay(10800000);
}

Credits

phoenixzx200
2 projects • 0 followers
Contact

Comments

Please log in or sign up to comment.