Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
package org.team2168.commands.tusks;
import org.team2168.RobotMap;
import edu.wpi.first.wpilibj.command.CommandGroup;
/**
* A command to move the tusks to the intermediate position.
* First retract the 2nd stage of the cylinder, then extend to the intermediate
* position.
*
* @author James
*/
public class TusksShortShotPosition extends CommandGroup {
public TusksShortShotPosition() {
//Move the tusks to the extended position.
addSequential(new TusksShortShotPosition_Step1(
RobotMap.tuskIntermediatePositionDelay.getDouble()));
//Then back into the intermediate position.
addSequential(new TusksShortShotPosition_Step2());
}
}