17 lines
287 B
C++
17 lines
287 B
C++
#pragma once
|
|
|
|
#include "ControlledMotor.h"
|
|
|
|
namespace Passer {
|
|
namespace RoboidContol {
|
|
|
|
class ServoMotor : public Thing {
|
|
public:
|
|
ServoMotor();
|
|
|
|
virtual void SetTargetAngle(float angle) = 0;
|
|
};
|
|
|
|
} // namespace RoboidContol
|
|
} // namespace Passer
|
|
using namespace Passer::RoboidContol; |