new ntrip client

This commit is contained in:
2022-09-21 12:50:01 +02:00
parent af6cb98898
commit a1a976be57
15 changed files with 658 additions and 251 deletions
+7 -1
View File
@@ -27,7 +27,8 @@
*
*/
enum DrivingStatus {stop,
drive};
drive,
raw};
/**
* @brief This class manages the motors and the encoders
@@ -96,6 +97,9 @@ class MoveControl {
*/
void setRotationSpeed(double speed);
void setRawPowerLeft(int16_t power);
void setRawPowerRight(int16_t power);
/**
* @brief Set the pid tunings
*
@@ -164,5 +168,7 @@ class MoveControl {
double right_pid_out;
uint8_t delay = 30;
int8_t rawPowerLeft = 0;
int8_t rawPowerRight = 0;
};
#endif // MOVE_CONTROL_H