-
Notifications
You must be signed in to change notification settings - Fork 8
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
Se/code organization #16
Conversation
src/main/java/com/stuypulse/robot/commands/amper/AmperScoreAmp.java
Outdated
Show resolved
Hide resolved
src/main/java/com/stuypulse/robot/commands/amper/AmperScoreTrap.java
Outdated
Show resolved
Hide resolved
src/main/java/com/stuypulse/robot/commands/amper/AmperWaitToHeight.java
Outdated
Show resolved
Hide resolved
src/main/java/com/stuypulse/robot/commands/climber/ClimberToHeight.java
Outdated
Show resolved
Hide resolved
src/main/java/com/stuypulse/robot/commands/climber/ClimberWaitForHeight.java
Outdated
Show resolved
Hide resolved
@@ -26,6 +26,7 @@ public ConveyorToAmp() { | |||
public void execute() { | |||
conveyor.toAmp(); | |||
intake.acquire(); | |||
amper.score(); |
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.
Shouldn't this call amper.intake()
instead?
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.
I just reread what amper.intake()
does. It doesn't need to exist? We're never going to use it.
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.
I think we leave it, maybe delete amperintake command
No description provided.