DeskControl/src/lib/motor.cpp

23 lines
172 B
C++

#include "./motor.h"
void motorStart(MotorDirection direction)
{
// TODO
}
void motorStop()
{
// TODO
}
bool motorIsOverCurrent()
{
// TODO
return false;
}