Files
JustAnotherClock/src/stepper.h
2013-01-29 16:08:34 +01:00

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_ */