#pragma once #include "ControlledMotor.h" class Servo : public ControlledMotor { public: Servo(); virtual void SetTargetAngle(float angle) = 0; };