mapostolov
Published © MIT

SImple fishfeeder

A simple project for automated feeding of fish with option to run it manually.

BeginnerShowcase (no instructions)144
SImple fishfeeder

Things used in this project

Hardware components

Arduino Nano R3
Arduino Nano R3
×1
Flora RGB Neopixel LEDs- Pack of 4
Adafruit Flora RGB Neopixel LEDs- Pack of 4
×1
SG90 Micro-servo motor
SG90 Micro-servo motor
It should be continuous rotating servo
×1
Pi RTC (DS1307)
Seeed Studio Pi RTC (DS1307)
×1
Pushbutton Switch, Push-Pull
Pushbutton Switch, Push-Pull
×1

Hand tools and fabrication machines

3D Printer (generic)
3D Printer (generic)

Story

Read more

Custom parts and enclosures

Box

Main enclosure for the project

Box lid

The lid for the main enclosure

Food storage

The body for the food storage/dispenser. It should be printed with 102% scale.

Food storage lid

The lid for the food storage/dispenser should be printed with 102% scale

Funnel

Funnel for easier food insertion.

Schematics

Basic schema

The led is not correct but the tool that I'm using does not have the correct one. How ever the pin is correct and the led should be addressable one

Code

Fishfeeder code

C/C++
The entire routine for feeding fish once a day, every day.
#include "RTClib.h"
#include <Servo.h>
#include <Adafruit_NeoPixel.h>
#ifdef __AVR__
 #include <avr/power.h>     // Required for 16 MHz Adafruit Trinket
#endif


#define LOOP_DELAY                10000
#define FEEDING_DELAY             1400   
#define BUTTON_PIN                3          // Pin for RGB 
#define LED_COUNT                 1          // Pin for RGB LED
#define LED_PIN                   2          // Pin for RGB LED
#define BRIGHTNESS                100        // Pin for RGB LEDu
#define SERVO_MOVEMENT_SPEED      2400
#define SERVO_PIN                 8


Servo myservo;
Adafruit_NeoPixel led(LED_COUNT, LED_PIN, NEO_GRBW + NEO_KHZ800);
RTC_DS1307 rtc;


int nextDayForFeeding =-1;
bool foodWasGiven = false;
const int HOUR_TO_FEED = 10;


void setup () {    
  while (!Serial); // for Leonardo/Micro/Zero
  pinMode(LED_PIN, OUTPUT);  
  pinMode(BUTTON_PIN, INPUT); 
  led.begin();
  led.setBrightness(BRIGHTNESS);
  setLed(255,255,255);
  Serial.begin(57600);
  if (! rtc.begin()) {  
    Serial.println("Couldn't find RTC");
    setLed(255,0,0);
    while (1);
  }
  if (! rtc.isrunning()) {
    Serial.println("RTC is NOT running!");
    setLed(255,0,0);
    rtc.adjust(DateTime(F(__DATE__), F(__TIME__)));
  }
  versionView();
}

// LED Routine for version 1.0.0 - White (255,255,255), Purple (255, 0, 255), Aquamarine (0, 255, 255)
void versionView(){
  setLed(255,255,255);
  delay(1000);
  setLed(255,0,255);
  delay(1000);
  setLed(0,255,255);
  delay(1000);
}

void setLed(int r, int g, int b){
  led.clear();                                    // Reset all pixels  
  led.setPixelColor(0, led.Color(r, g, b));       // pixels.Color() takes RGB values, from 0,0,0 up to 255,255,255
  led.show(); 
}


void feedTheFish(int currDay){  
  setLed(0,0,255);
  myservo.attach(SERVO_PIN);
  myservo.writeMicroseconds(SERVO_MOVEMENT_SPEED); //SPEED AND DIRECTION
  delay(FEEDING_DELAY);
  myservo.detach();
  foodWasGiven = true;
  nextDayForFeeding = nextDayForFeeding+1;
}

void loop () {
   setLed(0,255,0);
   int buttonState = digitalRead(BUTTON_PIN);
   
   DateTime now = rtc.now();
   
   if(nextDayForFeeding == -1 || (nextDayForFeeding > 6 && now.dayOfTheWeek() == 0) || nextDayForFeeding < now.dayOfTheWeek()){
     nextDayForFeeding = now.dayOfTheWeek();
   }

   if(nextDayForFeeding == now.dayOfTheWeek()){
     foodWasGiven = false;
   }
     
  if(HOUR_TO_FEED ==  now.hour() && foodWasGiven == false){
     feedTheFish(now.dayOfTheWeek());
   }
  
  if (buttonState == HIGH) {
    nextDayForFeeding = now.dayOfTheWeek();
    feedTheFish(now.dayOfTheWeek());
  }
  delay(LOOP_DELAY);
}

Credits

mapostolov
0 projects • 0 followers
Contact

Comments

Please log in or sign up to comment.