Skip to content

Commit

Permalink
Remove testing button bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
BenG49 committed Jan 28, 2024
1 parent 25bf3d9 commit 03a238b
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions src/main/java/com/stuypulse/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@

import com.stuypulse.robot.commands.auton.DoNothingAuton;
import com.stuypulse.robot.commands.swerve.SwerveDriveDrive;
import com.stuypulse.robot.commands.swerve.SwerveDriveToPose;
import com.stuypulse.robot.commands.swerve.SwerveDriveToShoot;
import com.stuypulse.robot.commands.swerve.SwerveDriveXMode;
import com.stuypulse.robot.constants.Field;
import com.stuypulse.robot.constants.Ports;
import com.stuypulse.robot.subsystems.amper.Amper;
import com.stuypulse.robot.subsystems.odometry.Odometry;
Expand All @@ -22,7 +18,6 @@
import com.stuypulse.robot.subsystems.conveyor.Conveyor;
import com.stuypulse.stuylib.input.Gamepad;
import com.stuypulse.stuylib.input.gamepads.AutoGamepad;
import com.stuypulse.stuylib.input.gamepads.Xbox;

import com.stuypulse.robot.subsystems.climber.*;

Expand Down Expand Up @@ -70,11 +65,7 @@ private void configureDefaultCommands() {
/*** BUTTONS ***/
/***************/

private void configureButtonBindings() {
driver.getLeftBumper().onTrue(new SwerveDriveXMode());
driver.getBottomButton().whileTrue(new SwerveDriveToPose(Field.getFiducial(8).getLocation().toPose2d()));
driver.getRightBumper().whileTrue(new SwerveDriveToShoot());
}
private void configureButtonBindings() {}

/**************/
/*** AUTONS ***/
Expand Down

0 comments on commit 03a238b

Please sign in to comment.