Hi all,
I've been playing with a different stepper motor and I've been having good results that I wanted to share. It's a drop-in replacement and only costs $2 if anyone wants to try swapping the new motor in. Please write back if you try it! The short story is that we’ve been using this stepper since the original FED1
design:
https://www.adafruit.com/product/858
It is a 5V stepper with 1/16 gearing (each turn of the interior motor turns the exterior brass cog 1/16 of a turn). It works well but is pretty low torque, so it has trouble clearing jams when they occur. (Side-note, we specifically chose this motor for its low torque, after testing several higher-torque servos that would grind up pellets and cause major jams in FED2.)
Anyway I recently found that these “28BYJ-48” motors are more commonly made with 1/64 gearing, which is a higher torque arrangement (each turn moves the brass knob only 1/64 turn). They can be found from many sellers on Amazon for ~$2 each, and they are exactly the same form factor as the Adafruit version, just different gearing. They require a slight tweak to the code to use, as now each command to the stepper - ie: stepper.step(15) - only moves the motor ¼ as far as with the 1/16 gear motor. However, it moves with ~4x the torque! So you just change each stepper command in the code to turn the motor 4x as far. To make a long story short, I updated the code to accommodate the new motor and include a new "high torque" jam clearing mode and it’s working really well in my first testing. New code here. I've only set up one FED3 like this so far but that device has been running for 6 days without a jam, dispensing >1200 pellets J I hope to get a few more going next week for a more thorough test, but I wanted to share this result now.
Happy New Year!
-Lex

--
You received this message because you are subscribed to the Google Groups "FEDforum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to fedforum+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/fedforum/ea6bc765-0380-4100-ab25-e7b53c0dcaf1%40googlegroups.com.



#include <Stepper.h>
Stepper stepper(200, A2, A3, A4, A5);
void setup () {
stepper.setSpeed(120);
}
void loop () {
stepper.step(1000);
stepper.step(-1000);
}
--
You received this message because you are subscribed to the Google Groups "FEDforum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to fedforum+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/fedforum/a07d9a0a-c997-43f8-ba66-4e4d1a9a51ae%40googlegroups.com.
