Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rflood07 authored Feb 13, 2024
1 parent 9fffc4a commit 1014e4c
Showing 1 changed file with 1 addition and 1 deletion.
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 @@ -234,7 +234,7 @@ private void configureBindings() {
new Trigger(driverController::getR1Button).onTrue(new CollectNote(driveTrain, limelight));
if(shooterExists) {
AngleShooter shooterUpCommand = new AngleShooter(angleShooterSubsystem, () -> Constants.ShooterConstants.shooterup);
new Trigger(()->driverController.getPOV == 180).whileTrue(shooterUpCommand);
new Trigger(()->driverController.getPOV() == 180).whileTrue(shooterUpCommand);
SmartDashboard.putData("Manual Angle Shooter Up", shooterUpCommand);
}
if(indexerExists) {
Expand Down

0 comments on commit 1014e4c

Please sign in to comment.