Skip to content

Update to the stepper library that includes the method idle() to power down the stepper motor.

Notifications You must be signed in to change notification settings

BiggRanger/Arduino-StepperWithIdle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

Arduino-StepperWithIdle

Update to the stepper library that includes the method idle() to power down the stepper motor.

I've added the method idle() to the stepper library (library source attached to this message). This method powers down the stepper motor for power saving or allow it to be freely rotated manually.

sample code:
#include <StepperWidle.h>

StepperWidle myStepper(2048, 5, 3, 4, 2); myStepper.setSpeed(15); myStepper.step(50);

myStepper.idle(); //Power down stepper delay(5000);

myStepper.step(50); //step another 50 steps

About

Update to the stepper library that includes the method idle() to power down the stepper motor.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages