Fixing an error in CS17

This commit is contained in:
Bradley Bickford 2024-11-12 17:21:55 -05:00
parent afe6487706
commit 6046e3b11d

View File

@ -40,11 +40,11 @@ public class RobotContainer {
}
private void configureBindings() {
climber.setDefaultCommand(climber.climberDown());
primary.a().onTrue(kicker.kick());
primary.b().whileTrue(climber.climberUp());
primary.b().onTrue(climber.climberUp());
primary.x().onTrue(climber.climberDown());
}
public Command getAutonomousCommand() {