Skip to content

Commit

Permalink
unbind testwrist and rebind climbautoalign
Browse files Browse the repository at this point in the history
climbautoalign is not set in superstructure!!!
testwrist was used to test advantagescope and should have been unbinded by now
  • Loading branch information
00magikarp committed Jul 9, 2024
1 parent 66c92be commit 3cd0ca7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion src/main/kotlin/com/team4099/robot2023/RobotContainer.kt
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,6 @@ object RobotContainer {
ControlBoard.ejectGamePiece.whileTrue(superstructure.ejectGamePieceCommand())
ControlBoard.passingShot.whileTrue(superstructure.passingShotCommand())
ControlBoard.underStagePassingShot.whileTrue(superstructure.underStageCommand())
ControlBoard.testWrist.whileTrue(superstructure.testWristCommand())

/*
ControlBoard.targetAmp.whileTrue(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,13 @@ object ControlBoard {

val ejectGamePiece = Trigger { driver.rightTriggerAxis > 0.5 }

val testWrist = Trigger { driver.aButton }
val characterizeWrist = Trigger { driver.rightShoulderButton }

val climbAlignFar = Trigger { driver.dPadUp }
val climbAlignLeft = Trigger { driver.dPadLeft }
val climbAlignRight = Trigger { driver.dPadRight }

// TODO: Check if this variable is necessary
// val climbAutoAlign = Trigger { driver.bButton }
val climbAutoAlign = Trigger { driver.bButton }

val targetSpeaker = Trigger { driver.xButton }
// TODO: switch back to climbAlignLeft
Expand Down

0 comments on commit 3cd0ca7

Please sign in to comment.