Package edu.wpi.first.wpilibj2.command
Interface Subsystem
- All Known Implementing Classes:
PIDSubsystem
,ProfiledPIDSubsystem
,SubsystemBase
,TrapezoidProfileSubsystem
public interface Subsystem
A robot subsystem. Subsystems are the basic unit of robot organization in the Command-based
framework; they encapsulate low-level hardware objects (motor controllers, sensors, etc.) and
provide methods through which they can be used by
Command
s. Subsystems are used by the
CommandScheduler
's resource management system to ensure multiple robot actions are not
"fighting" over the same hardware; Commands that use a subsystem should include that subsystem in
their Command.getRequirements()
method, and resources used within a subsystem should
generally remain encapsulated and not be shared by other parts of the robot.
Subsystems must be registered with the scheduler with the CommandScheduler.registerSubsystem(Subsystem...)
method in order for the periodic()
method to be called. It is recommended that this method be called from the
constructor of users' Subsystem implementations. The SubsystemBase
class offers a simple
base for user implementations that handles this.
This class is provided by the NewCommands VendorDep
-
Method Summary
Modifier and Type Method Description default Command
getCurrentCommand()
Returns the command currently running on this subsystem.default Command
getDefaultCommand()
Gets the default command for this subsystem.default void
periodic()
This method is called periodically by theCommandScheduler
.default void
register()
Registers this subsystem with theCommandScheduler
, allowing itsperiodic()
method to be called when the scheduler runs.default void
removeDefaultCommand()
Removes the default command for the subsystem.default CommandBase
run(Runnable action)
Constructs a command that runs an action every iteration until interrupted.default CommandBase
runEnd(Runnable run, Runnable end)
Constructs a command that runs an action every iteration until interrupted, and then runs a second action.default CommandBase
runOnce(Runnable action)
Constructs a command that runs an action once and finishes.default void
setDefaultCommand(Command defaultCommand)
Sets the defaultCommand
of the subsystem.default void
simulationPeriodic()
This method is called periodically by theCommandScheduler
.default CommandBase
startEnd(Runnable start, Runnable end)
Constructs a command that runs an action once and another action when the command is interrupted.
-
Method Details
-
periodic
This method is called periodically by theCommandScheduler
. Useful for updating subsystem-specific state that you don't want to offload to aCommand
. Teams should try to be consistent within their own codebases about which responsibilities will be handled by Commands, and which will be handled here. -
simulationPeriodic
This method is called periodically by theCommandScheduler
. Useful for updating subsystem-specific state that needs to be maintained for simulations, such as for updatingedu.wpi.first.wpilibj.simulation
classes and setting simulated sensor readings. -
setDefaultCommand
Sets the defaultCommand
of the subsystem. The default command will be automatically scheduled when no other commands are scheduled that require the subsystem. Default commands should generally not end on their own, i.e. theirCommand.isFinished()
method should always return false. Will automatically register this subsystem with theCommandScheduler
.- Parameters:
defaultCommand
- the default command to associate with this subsystem
-
removeDefaultCommand
Removes the default command for the subsystem. This will not cancel the default command if it is currently running. -
getDefaultCommand
Gets the default command for this subsystem. Returns null if no default command is currently associated with the subsystem.- Returns:
- the default command associated with this subsystem
-
getCurrentCommand
Returns the command currently running on this subsystem. Returns null if no command is currently scheduled that requires this subsystem.- Returns:
- the scheduled command currently requiring this subsystem
-
register
Registers this subsystem with theCommandScheduler
, allowing itsperiodic()
method to be called when the scheduler runs. -
runOnce
Constructs a command that runs an action once and finishes. Requires this subsystem.- Parameters:
action
- the action to run- Returns:
- the command
- See Also:
InstantCommand
-
run
Constructs a command that runs an action every iteration until interrupted. Requires this subsystem.- Parameters:
action
- the action to run- Returns:
- the command
- See Also:
RunCommand
-
startEnd
Constructs a command that runs an action once and another action when the command is interrupted. Requires this subsystem.- Parameters:
start
- the action to run on startend
- the action to run on interrupt- Returns:
- the command
- See Also:
StartEndCommand
-
runEnd
Constructs a command that runs an action every iteration until interrupted, and then runs a second action. Requires this subsystem.- Parameters:
run
- the action to run every iterationend
- the action to run on interrupt- Returns:
- the command
-