Package frc.robot.commands.autocommands
Class DoAbsolutelyNothingForSeconds
- java.lang.Object
-
- edu.wpi.first.wpilibj2.command.CommandBase
-
- frc.robot.commands.autocommands.DoAbsolutelyNothingForSeconds
-
- All Implemented Interfaces:
edu.wpi.first.util.sendable.Sendable,edu.wpi.first.wpilibj2.command.Command
public class DoAbsolutelyNothingForSeconds extends edu.wpi.first.wpilibj2.command.CommandBaseThis class does absolutely nothing. It just wastes time
-
-
Constructor Summary
Constructors Constructor Description DoAbsolutelyNothingForSeconds(double seconds, DriveTrainSubsystem driveTrainSubsystem, ShootingSubsystem shootingSubsystem)Creates DoAbsolutelyNothingForSeconds
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidend(boolean interrupted)voidexecute()voidinitialize()booleanisFinished()-
Methods inherited from class edu.wpi.first.wpilibj2.command.CommandBase
addRequirements, getName, getRequirements, getSubsystem, initSendable, setName, setSubsystem, withName
-
-
-
-
Constructor Detail
-
DoAbsolutelyNothingForSeconds
public DoAbsolutelyNothingForSeconds(double seconds, DriveTrainSubsystem driveTrainSubsystem, ShootingSubsystem shootingSubsystem)Creates DoAbsolutelyNothingForSeconds- Parameters:
seconds- The amount of time to do absolutely nothingdriveTrainSubsystem- The drive train subsystem.shootingSubsystem- The shooting subsystem.
-
-