Skip to content

Commit

Permalink
feat: updated
Browse files Browse the repository at this point in the history
  • Loading branch information
ProgrammingSR committed Feb 27, 2024
1 parent a2aaa24 commit 58580e4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main/java/frc/robot/RobotContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,10 @@ public RobotContainer() {

NamedCommands.registerCommand("intake", new SequentialCommandGroup(new IntakeArmPositionCommand(m_intakeSubsystem, ArmPosition.Extended),
new NoteIntakeCommand(m_intakeSubsystem),
new IntakeArmPositionCommand(m_intakeSubsystem, ArmPosition.Retracted)));
new IntakeArmPositionCommand(m_intakeSubsystem, ArmPosition.Retracted),
new WaitCommand(0.5),
new NoteOuttakeCommand(m_intakeSubsystem),
new WaitCommand(0.5)));

// All paths automatically

Expand Down

0 comments on commit 58580e4

Please sign in to comment.