3
4
5
6
12#include "BrushlessMotor.h"
13#include "ServoMotor.h"
15namespace tinyrobotics {
17template <
typename T =
float>
18using BrushlessMotor = GenericMotor<T>;
20template <
typename T =
float>
21using ServoMotor = GenericMotor<T>;
26#include "StepperMotor.h"
28namespace tinyrobotics {
29template <
typename T =
float>
#define USE_SERVO_LIBRARY
Definition: Config.h:47
#define USE_FASTACCEL_STEPPER
Definition: Config.h:52
Motor abstraction for integrating external/custom motor drivers using callbacks.
Definition: GenericMotor.h:45