Skip to content

Commit

Permalink
Fixed Bugs- now its done
Browse files Browse the repository at this point in the history
Fixed outtake speed
Added outtake button
  • Loading branch information
BrucePetersProgram committed Nov 22, 2023
1 parent f8f9d50 commit 00f2460
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ public static class Intake{
public static final double CUBE_LOADING_SPEED = -.5d;
public static final double CONE_LOADING_SPEED = .5d;

public static final double CUBE_UNLOADING_SPEED = -.5d;
public static final double CONE_UNLOADING_SPEED = .5d;
public static final double CUBE_UNLOADING_SPEED = .5d;
public static final double CONE_UNLOADING_SPEED = -.5d;

public static final double CUBE_STATOR_LIMIT = 70;
public static final double CONE_STATOR_LIMIT = 70;
Expand Down
2 changes: 2 additions & 0 deletions src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,7 @@ public void containerMatchStarting() {
private void configureButtonBindings() {
driverB.rightTrigger().onTrue(new IntakeCommand(intakeSubsystem, false, true));
driverB.leftTrigger().onTrue(new IntakeCommand(intakeSubsystem, true, true));
driverB.rightBumper().onTrue(new IntakeCommand(intakeSubsystem, false, false));
driverB.leftBumper().onTrue(new IntakeCommand(intakeSubsystem, true, false));
}
}

0 comments on commit 00f2460

Please sign in to comment.