Package xbot.common.command
Class SetTargetCommand<TargetT>
java.lang.Object
edu.wpi.first.wpilibj2.command.Command
xbot.common.command.BaseCommand
xbot.common.command.BaseSetpointCommand
xbot.common.command.SetTargetCommand<TargetT>
- Type Parameters:
TargetT- The type of the target value.
- All Implemented Interfaces:
Sendable,IPropertySupport
A command that sets a target value on a BaseSetpointSubsystem.
-
Nested Class Summary
Nested classes/interfaces inherited from class edu.wpi.first.wpilibj2.command.Command
Command.InterruptionBehavior -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final BaseSetpointSubsystem<TargetT,?> protected TargetTFields inherited from class xbot.common.command.BaseCommand
aKitLog, log, monitor, runningAlert -
Constructor Summary
ConstructorsConstructorDescriptionSetTargetCommand(BaseSetpointSubsystem<TargetT, ?> system) Creates a new SetTargetCommand. -
Method Summary
Modifier and TypeMethodDescriptionvoidbooleanvoidsetTargetValue(TargetT value) Sets the target value to be applied when the command is initialized.Methods inherited from class xbot.common.command.BaseCommand
end, getPrefix, includeOnSmartDashboard, includeOnSmartDashboard, requires, runsWhenDisabled, setRunsWhenDisabledMethods inherited from class edu.wpi.first.wpilibj2.command.Command
addRequirements, addRequirements, alongWith, andThen, andThen, asProxy, beforeStarting, beforeStarting, cancel, deadlineFor, deadlineWith, execute, finallyDo, finallyDo, getInterruptionBehavior, getName, getRequirements, getSubsystem, handleInterrupt, hasRequirement, ignoringDisable, initSendable, isScheduled, onlyIf, onlyWhile, raceWith, repeatedly, schedule, setName, setSubsystem, unless, until, withDeadline, withInterruptBehavior, withName, withTimeout, withTimeout
-
Field Details
-
targetValue
-
system
-
-
Constructor Details
-
SetTargetCommand
Creates a new SetTargetCommand.- Parameters:
system- The BaseSetpointSubsystem to set the target value on.
-
-
Method Details
-
setTargetValue
Sets the target value to be applied when the command is initialized.- Parameters:
value- The target value to set.
-
initialize
public void initialize()- Overrides:
initializein classBaseCommand
-
isFinished
public boolean isFinished()- Overrides:
isFinishedin classBaseSetpointCommand
-