Add command group for robot to go to hopper and shoot
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / commandgroups / AutonHopperShoot.java
CommitLineData
aa770db6
MW
1package org.usfirst.frc.team3501.robot.commandgroups;
2
3import org.usfirst.frc.team3501.robot.Constants;
4import org.usfirst.frc.team3501.robot.commands.driving.DriveDistance;
5import org.usfirst.frc.team3501.robot.commands.driving.TurnForAngle;
6import org.usfirst.frc.team3501.robot.commands.shooter.RunFlyWheel;
7
8import edu.wpi.first.wpilibj.command.CommandGroup;
9
10/**
11 *
12 */
13public class AutonHopperShoot extends CommandGroup {
14
15 public AutonHopperShoot() {
16
17 // Robot drives from center to front of airship
18 addSequential(new DriveDistance(92.3, 1));
19 // Robot turns towards hopper
20 addSequential(new TurnForAngle(90.0, Constants.Direction.RIGHT, 1.0));
21 // Robot drives near hopper
22 addSequential(new DriveDistance());
23 // Robot turns left towards hopper
24 addSequential(new TurnForAngle(90));
25 // Robot drives in front of hopper
26 addSequential(new DriveDistance());
27 // Robot turns to face hopper
28 addSequential(new TurnForAngle(90));
29 // Robot hits hopper switch
30 addSequential(new DriveDistance());
31 // Robot backs up from switch
32 addSequential(new DriveDistance());
33 // Robot turns towards the boiler
34 addSequential(new TurnForAngle(90));
35 // Robot drives to boiler
36 addSequential(new DriveDistance());
37 // Robot turns parallel to boiler
38 addSequential(new TurnForAngle(45));
39 // Shoot
40 addSequential(new RunFlyWheel());
41
42 }
43}