-
-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dynamic auto with object detection #194
Conversation
…ked in!" This reverts commit 0356c8f.
…into 184-documentation-its-time-to-get-working
Co-authored-by: rin-star <rin-star@users.noreply.github.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
some things that look wrong, ill check the logic and stuff of the actual command closer tomorrow.
src/main/java/frc/robot/subsystems/misc/limelight/Limelight.java
Outdated
Show resolved
Hide resolved
…rescendo2024 into object-detection
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor formatting things, but it is okay if this goes to main 😃
src/main/java/frc/robot/commands/autonomous/PathPlannerStorage.java
Outdated
Show resolved
Hide resolved
src/main/java/frc/robot/commands/autonomous/PathPlannerStorage.java
Outdated
Show resolved
Hide resolved
src/main/java/frc/robot/commands/subsytemHelpers/AlignmentCmds.java
Outdated
Show resolved
Hide resolved
public Command getChaseCommand() { | ||
return new ChasePose(this); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It might be fine to just have one instance of this command and instead reschedule the command. This would prevent constructor logic from re-running so that logic might need to be moved into ChasePose::initialize
if it is required to run upon making a new command
@Oliver-Cushman Feel free to be the one who merges this pull request when you are comfortable. |
Uses limelight object detection logic to go to notes it sees and pathplanner pathfinding to return to a shooting pose. Extra review would be appreciated in Limelight.java as I am not the most familiar with our vision system.