Continue on go to goal behaviour

This commit is contained in:
Konstantin Lampalzer 2022-05-27 02:44:52 +02:00
parent 6a1ac72912
commit 92d42be8b8
13 changed files with 161 additions and 35 deletions

View file

@ -26,6 +26,8 @@ public:
Odometry get();
[[nodiscard]] bool is_enabled() const;
private:
typedef std::chrono::steady_clock clock;
@ -40,6 +42,7 @@ private:
double last_position_left{0};
double last_position_right{0};
std::chrono::time_point<clock> last_run;
};