after merge

This commit is contained in:
2024-02-27 15:59:11 -05:00
14 changed files with 115 additions and 19 deletions

View File

@@ -7,7 +7,7 @@ import frc.robot.subsystems.Shooter;
public class AmpHandoff extends ParallelCommandGroup{
AmpHandoff(Indexer indexer, Shooter shooter){
addCommands(indexer.shootNote(null), shooter.ampHandoff());
addCommands(indexer.shootNote(() -> 1), shooter.ampHandoff());
}
}