AutoFilm-ESP32/src/motor.h

16 lines
232 B
C
Raw Normal View History

2024-06-25 21:04:22 +01:00
#ifndef MOTOR_H
#define MOTOR_H
#include <AccelStepper.h>
#include "config.h"
struct MotorTaskParams {
float cwRotations;
float ccwRotations;
unsigned long int processEndTime;
};
void runMotorTask(void* parameter);
#endif