new ntrip client
This commit is contained in:
@@ -21,19 +21,14 @@ class TestMode : public DriveModi {
|
||||
|
||||
void loop() override;
|
||||
|
||||
void setSpeed(double speed);
|
||||
void setRotationSpeed(double speed);
|
||||
void setSpeed(int16_t speed);
|
||||
void setRotationSpeed(int16_t speed);
|
||||
|
||||
bool driveForward(uint16_t cm);
|
||||
bool driveBackward(uint16_t cm);
|
||||
bool drive(int16_t cm = 0, int16_t degree = 0);
|
||||
|
||||
bool turnLeft(uint16_t degree);
|
||||
bool turnRight(uint16_t degree);
|
||||
|
||||
bool driveForwardLeft(uint16_t cm, uint16_t degree);
|
||||
bool driveForwardRight(uint16_t cm, uint16_t degree);
|
||||
bool driveBackwardLeft(uint16_t cm, uint16_t degree);
|
||||
bool driveBackwardRight(uint16_t cm, uint16_t degree);
|
||||
bool leftEngine(int16_t powerPercentage, int16_t seconds);
|
||||
bool rightEngine(int16_t powerPercentage, int16_t seconds);
|
||||
bool bothEngine(int16_t powerPercentage, int16_t seconds);
|
||||
|
||||
private:
|
||||
MoveControl *moveControl;
|
||||
|
||||
Reference in New Issue
Block a user