Skip to content

Commit

Permalink
remove test binding
Browse files Browse the repository at this point in the history
  • Loading branch information
MysticalApple committed Apr 3, 2024
1 parent e70149f commit 0b732a3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ public RobotContainer() {
private void configureBindings() {
/* Test Bindings -- Leave these commented out when not needed. */
// leftStickButton.onTrue(new CalculateBackCameraTransformCommand(BACK_LEFT_CAMERA, BACK_RIGHT_CAMERA));
startButton.onTrue(new ClimbLowerCommand(climbSubsystem));
// startButton.onTrue(new ClimbLowerCommand(climbSubsystem));

/* Driving -- One joystick controls translation, the other rotation. If the robot-relative button is held down,
* the robot is controlled along its own axes, otherwise controls apply to the field axes by default. If the
Expand Down Expand Up @@ -405,6 +405,7 @@ private void configureBindings() {
leftStickButton.onTrue(Commands.runOnce(() -> climbSubsystem.toggleAutomaticLowering(), climbSubsystem));
rightStickButton.onTrue(Commands.runOnce(() -> climbSubsystem.toggleAutomaticLowering(), climbSubsystem));


// rightBumper toggles the amp sequence
// if the elevator is up, lower it and stow the intake
// if the elevator is down, run the amp sequence
Expand Down

0 comments on commit 0b732a3

Please sign in to comment.