Skip to content

Commit

Permalink
spotApply
Browse files Browse the repository at this point in the history
  • Loading branch information
jonahk17 authored and jonahk17 committed Oct 7, 2024
1 parent 77e816d commit fb16eb7
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/main/java/org/sciborgs1155/robot/Robot.java
Original file line number Diff line number Diff line change
Expand Up @@ -231,12 +231,14 @@ private void configureBindings() {
operator
.leftBumper()
.whileTrue(
shooting.shootWithPivot(PivotConstants.UNDERFEED_ANGLE, ShooterConstants.DEFAULT_VELOCITY));
shooting.shootWithPivot(
PivotConstants.UNDERFEED_ANGLE, ShooterConstants.DEFAULT_VELOCITY));

// shoot 45 deg FAST (far as possible) overfeeding
operator
.rightBumper()
.whileTrue(shooting.shootWithPivot(PivotConstants.OVERFEED_ANGLE, ShooterConstants.MAX_VELOCITY));
.whileTrue(
shooting.shootWithPivot(PivotConstants.OVERFEED_ANGLE, ShooterConstants.MAX_VELOCITY));

// operator climb (b)
operator
Expand Down

0 comments on commit fb16eb7

Please sign in to comment.