Skip to content

Commit

Permalink
climb lowers automatically at start of auton
Browse files Browse the repository at this point in the history
  • Loading branch information
MysticalApple committed Apr 16, 2024
1 parent b7e306b commit f538ede
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -686,8 +686,9 @@ private void configureBindings() {
public Command getAutonomousCommand() {
return AutoBuilder.buildAuto(autonValue).alongWith(
new ShooterFlywheelReadyCommand(shooterFlywheelSubsystem, lightBarSubsystem),
new InstantCommand(() -> {shooterPivotSubsystem.setAutoAimBoolean(true);}),
new IntakePivotSetPositionCommand(intakePivotSubsystem, 1)
new InstantCommand(() -> shooterPivotSubsystem.setAutoAimBoolean(true)),
new IntakePivotSetPositionCommand(intakePivotSubsystem, 1),
new ClimbLowerCommand(climbSubsystem)
);
}
}

0 comments on commit f538ede

Please sign in to comment.