stepper-motor
Arduino library to accurately control a stepper motor
stepper_motor.h
1 #ifndef _STEPPER_MOTOR
2 #define _STEPPER_MOTOR
3 
4 #include "std/initializer_list.h"
5 
6 namespace StepperMotor {
7 
24 class Driver {
25  public:
29  Driver(std::initializer_list<uint8_t> pins);
30 
38  void turn(int16_t degree);
39 
46  void turnTo(uint16_t target_angle);
47 
54  void setStepsPerRotation(uint16_t steps);
55 
63  void setWaiter(void (*waiter)(unsigned int));
64 
65  private:
66  uint8_t pins[4] = {-1, -1, -1, -1};
67  uint16_t steps_per_rotation = 510;
68  uint16_t current_step_position = 0;
69  uint16_t current_degree_position = 0;
70  void (*waiter)(unsigned int) = &delayMicroseconds;
71 
73  void stepForward();
75  void stepBackward();
76 
78  void executeStep(uint8_t step);
83  void resetPins();
84 };
85 
86 } // namespace StepMotor
87 
88 #endif // _STEPPER_MOTOR
Driver(std::initializer_list< uint8_t > pins)
Create a new driver instance using the given pins.
void turn(int16_t degree)
Relative turn.
void turnTo(uint16_t target_angle)
Absolute turn.
void setStepsPerRotation(uint16_t steps)
Set the steps needed for one complete rotation.
Driver for an 8-step stepper motor
Definition: stepper_motor.h:24
void setWaiter(void(*waiter)(unsigned int))
Set a custom waiter.