implement untested captureRoute

This commit is contained in:
2021-07-14 19:44:15 +02:00
parent da998b5535
commit 70f6566365
8 changed files with 156 additions and 13 deletions
+4
View File
@@ -25,6 +25,10 @@ void MoveControl::runMoveControl() {
this->calcWheelSpeed();
this->regulateMotors();
char str[64];
sprintf(str, "x_speed: %3.2f, rotation_speed: %3.2f, tar_left: %3.2f, tar_right: %3.2f", this->x_speed, this->rotation_speed, this->wheelspeed_left_target, this->wheelspeed_right_target);
debug->sendMsg(Loglevel::debug, str);
}
void MoveControl::setDrivingStatus(DrivingStatus status) {