fill in LiftRobot command group
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / commands / auton / LiftRobot.java
CommitLineData
6bb7f8ac 1package org.usfirst.frc.team3501.robot.commands.auton;
00b68bad 2
5cf99855
SC
3import org.usfirst.frc.team3501.robot.Constants;
4import org.usfirst.frc.team3501.robot.Robot;
5import org.usfirst.frc.team3501.robot.commands.scaler.RunWinchContinuous;
6import org.usfirst.frc.team3501.robot.commands.scaler.StopWinch;
00b68bad 7
5cf99855 8import edu.wpi.first.wpilibj.command.CommandGroup;
00b68bad 9
5cf99855 10public class LiftRobot extends CommandGroup {
00b68bad 11
5cf99855
SC
12 public LiftRobot() {
13 requires(Robot.scaler);
00b68bad 14
5cf99855
SC
15 addSequential(new RunWinchContinuous(Constants.Scaler.WINCH_IN_SPEED, Constants.Scaler.WINCH_TIMEOUT));
16 addSequential(new StopWinch());
17 }
00b68bad 18}