16 lines
245 B
C++
16 lines
245 B
C++
#pragma once
|
|
|
|
#include "ServoMotor.h"
|
|
|
|
namespace Passer {
|
|
namespace RoboidContol {
|
|
|
|
class FeedbackServo : public ServoMotor {
|
|
public:
|
|
FeedbackServo();
|
|
|
|
virtual float GetActualAngle() = 0;
|
|
};
|
|
|
|
} // namespace RoboidContol
|
|
} // namespace Passer
|