mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-19 00:41:43 +00:00
40 lines
887 B
Java
40 lines
887 B
Java
|
|
package $package.commands;
|
|
|
|
import edu.wpi.first.wpilibj.command.Command;
|
|
|
|
import $package.Robot;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public class ExampleCommand extends Command {
|
|
|
|
public ExampleCommand() {
|
|
// Use requires() here to declare subsystem dependencies
|
|
requires(Robot.exampleSubsystem);
|
|
}
|
|
|
|
// Called just before this Command runs the first time
|
|
protected void initialize() {
|
|
}
|
|
|
|
// Called repeatedly when this Command is scheduled to run
|
|
protected void execute() {
|
|
}
|
|
|
|
// Make this return true when this Command no longer needs to run execute()
|
|
protected boolean isFinished() {
|
|
return false;
|
|
}
|
|
|
|
// Called once after isFinished returns true
|
|
protected void end() {
|
|
}
|
|
|
|
// Called when another command which requires one or more of the same
|
|
// subsystems is scheduled to run
|
|
protected void interrupted() {
|
|
}
|
|
}
|