Skip to content

Commit

Permalink
[#507] - swapped joysticks for climber controls
Browse files Browse the repository at this point in the history
  • Loading branch information
HeeistHo committed Mar 27, 2024
1 parent 6ff8025 commit bf3c10e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ protected void configureDefaultCommands() {
// coPilot::getYButton).deadlineWith(leds.enableState(LED_STATES.CLIMBING)));

if (!Constants.isMercury()) {
climber.setDefaultCommand(new ManualClimb(() -> -coPilot.getLeftY(), () -> -coPilot.getRightY(), climber));
climber.setDefaultCommand(new ManualClimb(() -> -coPilot.getRightY(), () -> -coPilot.getLeftY(), climber));
}
}

Expand Down

0 comments on commit bf3c10e

Please sign in to comment.