Skip to content

Commit

Permalink
Working shooter
Browse files Browse the repository at this point in the history
Feb 28 Physical changes to shooter and small changes to binding and intake constant
  • Loading branch information
MProne committed Feb 28, 2024
1 parent 328ffee commit 257f363
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ public RobotContainer() {
}

private void configureSubsystemCommands() {
controller.getLeftBumper().onTrue(intakeEject);
controller.getRightBumper().whileTrue(intakePickup);
controller.getLeftBumper().onTrue(intakePickup);
controller.getRightBumper().whileTrue(intakeShooterFeed);

//controller.getX().onTrue(elevatorUp);
controller.getA().onTrue(ampScore);
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/constants/IntakeConstants.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class IntakeConstants {
public static final double AMP_SPEED = -1.0;
public static final double AMP_DURATION = 1;

public static final double PICKUP_SPEED = 1;
public static final double PICKUP_SPEED = 0.8;

public static final double SHOOTER_FEED_SPEED = 1;
public static final double SHOOTER_FEED_DURATION = 0.75;
Expand Down

0 comments on commit 257f363

Please sign in to comment.