Skip to content

Update Stepper.h for resolving overheat issue #16

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/Stepper.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* High-speed stepping mod by Eugene Kozlenko
* Timer rollover fix by Eugene Kozlenko
* Five phase five wire (1.1.0) by Ryan Orendorff
* Shutdown the motor (1.2.0) by Kunal Saini
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
Expand Down Expand Up @@ -95,7 +96,9 @@ class Stepper {

// mover method:
void step(int number_of_steps);

// if true, arduino will shutdown the motor after the each step and
// prevents the motor from overheat
bool releaseMode = true;
int version(void);

private:
Expand Down