Robot Core Documentation
|
Protected Attributes | |
Timer | m_timer = new Timer() |
Protected Attributes inherited from edu.wpi.first.wpilibj2.command.Command | |
Set< Subsystem > | m_requirements = new HashSet<>() |
Additional Inherited Members | |
Protected Member Functions inherited from edu.wpi.first.wpilibj2.command.Command | |
Command () | |
A command that does nothing but takes a specified amount of time to finish.
This class is provided by the NewCommands VendorDep
edu.wpi.first.wpilibj2.command.WaitCommand.WaitCommand | ( | double | seconds | ) |
Creates a new WaitCommand. This command will do nothing, and end after the specified duration.
seconds | the time to wait, in seconds |
void edu.wpi.first.wpilibj2.command.WaitCommand.end | ( | boolean | interrupted | ) |
The action to take when the command ends. Called when either the command finishes normally, or when it interrupted/canceled.
Do not schedule commands here that share requirements with this command. Use andThen(Command...)
instead.
interrupted | whether the command was interrupted/canceled |
Reimplemented from edu.wpi.first.wpilibj2.command.Command.
void edu.wpi.first.wpilibj2.command.WaitCommand.initialize | ( | ) |
The initial subroutine of a command. Called once when the command is initially scheduled.
Reimplemented from edu.wpi.first.wpilibj2.command.Command.
void edu.wpi.first.wpilibj2.command.WaitCommand.initSendable | ( | SendableBuilder | builder | ) |
Initializes this Sendable
object.
builder | sendable builder |
Reimplemented from edu.wpi.first.wpilibj2.command.Command.
boolean edu.wpi.first.wpilibj2.command.WaitCommand.isFinished | ( | ) |
Whether the command has finished. Once a command finishes, the scheduler will call its end() method and un-schedule it.
Reimplemented from edu.wpi.first.wpilibj2.command.Command.
boolean edu.wpi.first.wpilibj2.command.WaitCommand.runsWhenDisabled | ( | ) |
Whether the given command should run when the robot is disabled. Override to return true if the command should run when disabled.
Reimplemented from edu.wpi.first.wpilibj2.command.Command.
The timer used for waiting.