You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
346B

  1. #include <stdlib.h>
  2. #include <stdio.h>
  3. #include "include/stepper.h"
  4. #include "include/stepper_params.h"
  5. #include "include/sensor.h"
  6. #include "xtimer.h"
  7. int main(void)
  8. {
  9. stepper_t dev;
  10. stepper_init(&dev, &stepper_params[0]);
  11. while (1) {
  12. xtimer_usleep(100000);
  13. stepper_step(&dev, STEPPER_FORWARD);
  14. }
  15. return 0;
  16. }