mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-24 01:31:46 +00:00
15 lines
370 B
C++
15 lines
370 B
C++
|
|
#include "Shoot.h"
|
||
|
|
|
||
|
|
#include "Robot.h"
|
||
|
|
#include "Commands/WaitForPressure.h"
|
||
|
|
#include "Commands/SetCollectionSpeed.h"
|
||
|
|
#include "Commands/OpenClaw.h"
|
||
|
|
#include "Commands/ExtendShooter.h"
|
||
|
|
|
||
|
|
Shoot::Shoot() {
|
||
|
|
AddSequential(new WaitForPressure());
|
||
|
|
AddSequential(new SetCollectionSpeed(Collector::STOP));
|
||
|
|
AddSequential(new OpenClaw());
|
||
|
|
AddSequential(new ExtendShooter());
|
||
|
|
}
|