You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// 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
+
packagefrc.robot.commands.states;
6
+
7
+
importedu.wpi.first.wpilibj2.command.Command;
8
+
9
+
/* You should consider using the more terse Command factories API instead https://docs.wpilib.org/en/stable/docs/software/commandbased/organizing-command-based.html#defining-commands */
10
+
publicclassPrepAnywhereextendsCommand {
11
+
/** Creates a new PrepAnywhere. */
12
+
publicPrepAnywhere() {
13
+
// Use addRequirements() here to declare subsystem dependencies.
14
+
}
15
+
16
+
// Called when the command is initially scheduled.
17
+
@Override
18
+
publicvoidinitialize() {}
19
+
20
+
// Called every time the scheduler runs while the command is scheduled.
21
+
@Override
22
+
publicvoidexecute() {}
23
+
24
+
// Called once the command ends or is interrupted.
// 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
+
packagefrc.robot.commands.states;
6
+
7
+
importedu.wpi.first.wpilibj2.command.Command;
8
+
9
+
/* You should consider using the more terse Command factories API instead https://docs.wpilib.org/en/stable/docs/software/commandbased/organizing-command-based.html#defining-commands */
10
+
publicclassPrepNeautralToAllianceextendsCommand {
11
+
/** Creates a new PrepNeautralToAlliance. */
12
+
publicPrepNeautralToAlliance() {
13
+
// Use addRequirements() here to declare subsystem dependencies.
14
+
}
15
+
16
+
// Called when the command is initially scheduled.
17
+
@Override
18
+
publicvoidinitialize() {}
19
+
20
+
// Called every time the scheduler runs while the command is scheduled.
21
+
@Override
22
+
publicvoidexecute() {}
23
+
24
+
// Called once the command ends or is interrupted.
// 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
+
packagefrc.robot.commands.states;
6
+
7
+
importedu.wpi.first.wpilibj2.command.Command;
8
+
9
+
/* You should consider using the more terse Command factories API instead https://docs.wpilib.org/en/stable/docs/software/commandbased/organizing-command-based.html#defining-commands */
10
+
publicclassPrepOpponentToAllianceextendsCommand {
11
+
/** Creates a new PrepOpponentToAlliance. */
12
+
publicPrepOpponentToAlliance() {
13
+
// Use addRequirements() here to declare subsystem dependencies.
14
+
}
15
+
16
+
// Called when the command is initially scheduled.
17
+
@Override
18
+
publicvoidinitialize() {}
19
+
20
+
// Called every time the scheduler runs while the command is scheduled.
21
+
@Override
22
+
publicvoidexecute() {}
23
+
24
+
// Called once the command ends or is interrupted.
0 commit comments