File tree Expand file tree Collapse file tree
src/main/java/frc/robot/commands/states Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ // Copyright (c) FIRST and other WPILib contributors.
2+ // Open Source Software; you can modify and/or share it under the terms of
3+ // the WPILib BSD license file in the root directory of this project.
4+
5+ package frc .robot .commands .states ;
6+
7+ import edu .wpi .first .wpilibj2 .command .Command ;
8+
9+ public class PrepTrench extends Command {
10+ /** Creates a new PrepTrench. */
11+ public PrepTrench () {
12+ // Use addRequirements() here to declare subsystem dependencies.
13+ }
14+
15+ // Called when the command is initially scheduled.
16+ @ Override
17+ public void initialize () {}
18+
19+ // Called every time the scheduler runs while the command is scheduled.
20+ @ Override
21+ public void execute () {}
22+
23+ // Called once the command ends or is interrupted.
24+ @ Override
25+ public void end (boolean interrupted ) {}
26+
27+ // Returns true when the command should end.
28+ @ Override
29+ public boolean isFinished () {
30+ return false ;
31+ }
32+ }
Original file line number Diff line number Diff line change 1+ // Copyright (c) FIRST and other WPILib contributors.
2+ // Open Source Software; you can modify and/or share it under the terms of
3+ // the WPILib BSD license file in the root directory of this project.
4+
5+ package frc .robot .commands .states ;
6+
7+ import edu .wpi .first .wpilibj2 .command .Command ;
8+
9+ public class ReversingShooter extends Command {
10+ /** Creates a new ReversingShooter. */
11+ public ReversingShooter () {
12+ // Use addRequirements() here to declare subsystem dependencies.
13+ }
14+
15+ // Called when the command is initially scheduled.
16+ @ Override
17+ public void initialize () {}
18+
19+ // Called every time the scheduler runs while the command is scheduled.
20+ @ Override
21+ public void execute () {}
22+
23+ // Called once the command ends or is interrupted.
24+ @ Override
25+ public void end (boolean interrupted ) {}
26+
27+ // Returns true when the command should end.
28+ @ Override
29+ public boolean isFinished () {
30+ return false ;
31+ }
32+ }
You can’t perform that action at this time.
0 commit comments