Skip to content

Commit

Permalink
runable commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ProgrammingSR committed Mar 10, 2024
1 parent cce9059 commit b9926eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public static final class ShooterConstants {
public static final double kShooterOff = 0;

public static final double kShooterOffTime = 0.04;
public static final double kShooterOnTime = 1.5;
public static final double kShooterOnTime = 1.9;
}

public static class ClimberConstants {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public RobotContainer() {
NamedCommands.registerCommand("Shoot",
new SequentialCommandGroup(
new ShooterSetSpeedCommand(m_shooterSubsystem, ShootSpeed.Shooting, ShooterConstants.kShooterOnTime),
new ParallelDeadlineGroup(new WaitCommand(0.45), new NoteOuttakeCommand(m_intakeSubsystem)),
new ParallelDeadlineGroup(new WaitCommand(0.8), new NoteOuttakeCommand(m_intakeSubsystem)),
new ShooterSetSpeedCommand(m_shooterSubsystem, ShootSpeed.Off, ShooterConstants.kShooterOffTime)));

NamedCommands.registerCommand("Intake",
Expand Down

0 comments on commit b9926eb

Please sign in to comment.