Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@
import frc.robot.autochooser.FieldLocation;
import frc.robot.autochooser.chooser.AutoChooser2025;
import frc.robot.autochooser.event.RealAutoEventProvider;
import frc.robot.commands.SuperAutoScore;
import frc.robot.commands.alignment.AlignClosestBranch;
import frc.robot.commands.byebye.ByeByeToFwrLimit;
import frc.robot.commands.byebye.ByeByeToRevLimit;
import frc.robot.commands.climber.ClimbToLimit;
Expand Down Expand Up @@ -234,11 +232,11 @@ private void configureBindings() {
JoystickButton joyRight1 = new JoystickButton(joyright, 1);
RobotSlide robotSlide = new RobotSlide(drivetrain, joyleft::getX, joyleft::getY);
joyLeft2.whileTrue(robotSlide);
controller.leftBumper().onTrue(new AlignClosestBranch(drivetrain));
// controller.leftBumper().onTrue(new AlignClosestBranch(drivetrain));
if (Constants.ENABLE_FANCY_LIMELIGHT_MATH) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You could just flip this constant to false instead of commenting this out.

controller
.rightTrigger()
.onTrue(new SuperAutoScore(drivetrain, elevatorSubsystem, coralSubsystem, vision));
// controller
// .rightTrigger()
// .onTrue(new SuperAutoScore(drivetrain, elevatorSubsystem, coralSubsystem, vision));
}
controller
.leftTrigger()
Expand Down