Hello guys
I m completely new in arduino and now I m trying a project where I need very low speed for 2 to 30 rpm max. I bought a Gear Ratio 19:1 Planetary Gearbox With Nema 14 Stepper Motor 14H for test.
However, although the step level is 1.8' degrees (when motor is NOT geared) the manual does not say what is the new step after geared.
I will use this motor to rotate a camera head and thus i need low speed which will be between 2 to 30rpm max.
I m using an L298N driver (this one : https://www.amazon.com/Controller-Module-Bridge-Stepper-Arduino/dp/B00HNHUYSG)
I tried this very simple sketch to understand how it works since i m new in this :
#include <Stepper.h>
const int SPR = 200; //I keep the 1.8' angle step
// initialize the stepper library on pins 8 through 11:
Stepper myStepper(SPR, 8, 9, 10, 11);
void setup()
{
myStepper.setSpeed(30);
}
void loop() {
myStepper.step(SPR);
Now I have some question:
I played with the values with red color, SPR and speed.
First question is, what is the right value for a geared stepper motor at SPR ? I suppose it is still 200 (360/1.8) or I m wrong ?
Second question is, Lets suppose we need the motor just spining (rotating) what is happening if I change
the SPR to 400 or 600 and adjusting the speed accordingly ? Do I loose in torque ? do I decrease the performance ? or what ?
Third question. with SPR 200 and speeds lower than 10-12rpm I think motor is not working properly. Do I bought a wrong geared motor ? (perhaps more geared needed ?)
thank you and sorry if my questions are silly