Autos for Pike

This commit is contained in:
Shikhar
2026-03-05 23:12:50 -07:00
parent 183caaa970
commit 0957729c80
20 changed files with 152 additions and 90 deletions
@@ -121,9 +121,9 @@ public class RobotContainer {
// );
private Command RobotRev = new SequentialCommandGroup(
new InstantCommand(() -> m_robotIntake.setMode(IntakeMode.Idle), m_robotIntake),
new InstantCommand(() -> m_robotIntake.rollerStop(), m_robotIntake),
new InstantCommand(() -> m_robotShooter.spinUpShooting(), m_robotShooter)
new InstantCommand(() -> m_robotShooter.spinUpShooting(), m_robotShooter),
IntakeExtended,
new InstantCommand(() -> m_robotIntake.setMode(IntakeMode.RollerStop), m_robotIntake)
);
private Command RobotIntakeRetracted = new SequentialCommandGroup(