-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #172 from alexDickhans/ad-velocity-profile
Add Velocity profile and clean up code
- Loading branch information
Showing
122 changed files
with
4,356 additions
and
1,253 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ | |
# PROS | ||
bin/ | ||
.vscode/ | ||
.cache/ | ||
compile_commands.json | ||
temp.log | ||
temp.errors | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,27 @@ | ||
#pragma once | ||
|
||
#include "units/units.hpp" | ||
|
||
namespace Pronounce { | ||
/** | ||
* @brief Abstract class to be used in both the pure pursuit simulator and on the robot. | ||
* | ||
* @authors Alex Dickhans(ad101-lab) | ||
*/ | ||
class AbstractDrivetrain { | ||
private: | ||
|
||
public: | ||
AbstractDrivetrain(); | ||
AbstractDrivetrain() {} | ||
|
||
/** | ||
* @brief Get the current speed of the drivetrain | ||
* | ||
* @return QSpeed | ||
*/ | ||
virtual QSpeed getSpeed() { return 0.0; } | ||
|
||
~AbstractDrivetrain(); | ||
~AbstractDrivetrain() {} | ||
}; | ||
|
||
} // namespace Pronounce |
Oops, something went wrong.