CheapStepper
CheapStepper copied to clipboard
Arduino library for the cheap but decent 28BYJ-48 5v stepper motor with ULN2003 board
Addressing #3 The restarts only happen on ESP devices and in case a long rotation is requested. The rotation is done by invocation of ```step()``` function in a loop, which...
This code works wonderfully, but I am attempting to utilize it and am needing a significant number of increase in steps to utilize it as I need. Your current code...
I am not entirely sure where the error lies here, but I am trying to use a NodeMCU v1 together with a ESP-12E Motor Shield and a 28BYJ stepper motor....
I wanted to set the start position of the stepper and attached an opto sensor to allow the stepper motor to be moved until a hole in a rotated cardboard...
In cases where running the motor at reduced current (12v motor on 5v) it'd be nice to be able to rotate reeeal slow.
By having the delay in the `seq` function we also get a delay when calling the `run` method. Since we waited for `delay`µs , and then set `lastStepTime` the rpm...
I am trying to run a very basic web server (relevant code included below) and am stuck in a reset loop. The starting setup line is never reached. I am...
int toStep = deg * totalSteps / 360 does not create correct value Solved using: ``` void CheapStepper::newMoveToDegree (bool clockwise, int deg){ // keep to 0-359 range if (deg >=...
My stepper draws 200mA when moving and **370mA when the move has completed**. It would be useful to have an idle call which sets the stepper control lines to zero:...
Principally I rewrote seq function in order to use only one byte of memory instead of 4 int.