Skip to content
This repository has been archived by the owner on May 12, 2024. It is now read-only.

Commit

Permalink
fix(auto): wait longer for arm raise on shoot
Browse files Browse the repository at this point in the history
  • Loading branch information
Craftzman7 committed Sep 20, 2023
1 parent cfea2e4 commit d4e3f1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/frc/robot/commands/autonomous/AutoShoot.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public AutoShoot(Drivetrain drivetrain, Arm arm, PoseEstimation poseEstimation,
this.addCommands(
// AllianceUtils.allianceToField(new Pose2d(new Translation2d(3.76, 4.86), new Rotation2d(180)))
new InstantCommand(() -> arm.setTarget(Arm.State.High)),
new WaitCommand(0.25),
new WaitCommand(1),
new InstantCommand(() -> arm.setRollerState(Rollers.State.Outtake)),
new WaitCommand(0.1),
new InstantCommand(() -> arm.setRollerState(Rollers.State.Off)),
Expand Down

0 comments on commit d4e3f1a

Please sign in to comment.