renamed Servo to ServoMotor

This commit is contained in:
Pascal Serrarens 2024-01-04 17:25:08 +01:00
parent 6ce9d78b04
commit 8b869e6759
2 changed files with 4 additions and 4 deletions

View File

@ -1,11 +1,11 @@
#pragma once
#include "Servo.h"
#include "ServoMotor.h"
namespace Passer {
namespace RoboidContol {
class FeedbackServo : public Servo {
class FeedbackServo : public ServoMotor {
public:
FeedbackServo();

View File

@ -5,9 +5,9 @@
namespace Passer {
namespace RoboidContol {
class Servo : public Thing {
class ServoMotor : public Thing {
public:
Servo();
ServoMotor();
virtual void SetTargetAngle(float angle) = 0;
};