Resurgence (PY2022)
Codebase for the Husky Robotics 2021-2022 rover Resurgence
Loading...
Searching...
No Matches
CommandBase.h
1#pragma once
2
3namespace commands {
4
5struct command_t {
6 double thetaVel;
7 double xVel;
8};
9
11public:
12 virtual command_t getOutput() = 0;
13 virtual bool isDone() = 0;
14};
15
16}
Definition CommandBase.h:10
Definition CommandBase.h:5