Skip to content

Commit

Permalink
Changed moveToProcessorCommandBlue/Red
Browse files Browse the repository at this point in the history
  • Loading branch information
Acrenos committed Jan 12, 2025
1 parent df86ba0 commit 676e341
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,11 @@ class AutoScoreCommands(
* moves robot to processor location using * swerve drive.
*/
fun moveToProcessorCommandBlue(): Command {
var returnCommand = PIDPoseAlign(drive, poseSubsystem, AutoScoreCommandConstants.processorPoseBlue)
returnCommand = PIDPoseAlign(drive, poseSubsystem, AutoScoreCommandConstants.processorPoseBlue)
val returnCommand = PIDPoseAlign(drive, poseSubsystem, AutoScoreCommandConstants.processorPoseBlue)
return returnCommand
}
fun moveToProcessorCommandRed(): Command {
var returnCommand = PIDPoseAlign(drive, poseSubsystem, AutoScoreCommandConstants.processorPoseRed)
returnCommand = PIDPoseAlign(drive, poseSubsystem, AutoScoreCommandConstants.processorPoseRed)
val returnCommand = PIDPoseAlign(drive, poseSubsystem, AutoScoreCommandConstants.processorPoseRed)
return returnCommand
}

Expand Down

0 comments on commit 676e341

Please sign in to comment.