Slicer Discord
Automatic fish feeding device – 3D printable model from Thingiverse Thingiverse

Automatic fish feeding device

by pepperl
51 Downloads
34 Likes
0 Makes
Go to Model
Sorry for my poor English!

You need an Arduino(NANO,MINI,UNO、、、)
And a 28BYJ48 stepper

If your fish food's diameter more than 2mm, you will need a little Screw(prt0003)

Arduino Code

//#include "Stepper.h"
//#define STEPS 100

Stepper stepper(STEPS, 2, 3, 4, 5);//CHANGE TO YOUR PIN

int previous = 0;
long interval = 7200000L;//Interval ,HOW LONG, 7200000L MEAN 2 HOURS
unsigned long previousMillis = 0;

void setup()
{
stepper.setSpeed(80);
}

void loop()
{
unsigned long currentMillis = millis();
if(currentMillis - previousMillis > interval) {
previousMillis = currentMillis;
stepper.step(3500); //HOW MUCH
}
if(currentMillis < previousMillis){ //OVERFLOW CHECK
previousMillis=currentMillis;
}

}
Source
Thingiverse
What you need to print this: Intermediate Low confidence
Single piece Hardware needed
Supports 1/3
Assembly 0/3
Settings 1/3
Bed size 0/3
Post-process 1/3
Printer
FDM / FFF
File format
STL
Material
Est. print time
2 h
Post-processing
Hardware
Software
Cura, PrusaSlicer, or similar
No ratings yet
No comments yet – be the first!
Feed Blog Slicer Cost Calculator Image Search Submit Kontakt Discord ☕ Buy me a coffee
DE EN FR ES IT NL

Add to Collection