17 lines
205 B
C
17 lines
205 B
C
#ifndef STEPPER_H_
|
|
#define STEPPER_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
#define STEPS_PER_MINUTE 3
|
|
#define STEPS_PER_HOUR 7
|
|
|
|
|
|
|
|
void stepperInit();
|
|
void stepperEnable();
|
|
void stepperEngine();
|
|
|
|
|
|
#endif /* STEPPER_H_ */
|