AutoFilm-ESP32/AutoFilmESP32/motor.h
2024-06-25 21:17:14 +01:00

16 lines
232 B
C

#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