add description, pre and post condition comments
[3501/stronghold-2016] / src / org / usfirst / frc / team3501 / robot / commands / driving / TurnForTime.java
CommitLineData
6bb7f8ac 1package org.usfirst.frc.team3501.robot.commands.driving;
be737780 2
5ac4d78e 3import org.usfirst.frc.team3501.robot.Constants.Direction;
53924f8d 4import org.usfirst.frc.team3501.robot.Robot;
5ac4d78e 5
de0fd5e3 6import edu.wpi.first.wpilibj.Timer;
be737780
ME
7import edu.wpi.first.wpilibj.command.Command;
8
f1242e7b
ME
9/***
10 * This command turns the robot in a specified direction for a specified
11 * duration.
12 *
13 * pre-condition: robot is on a flat surface
14 *
15 * post-condition: robot has turned in the specified direction for the specified
16 * time
17 *
18 * @author Meryem, Avi, and Sarvesh
19 *
20 */
21
be737780 22public class TurnForTime extends Command {
53924f8d
ME
23 private final double SPEED = 0.5;
24 private Direction direction;
25 private double seconds;
26 private Timer timer;
be737780 27
5ac4d78e 28 public TurnForTime(double seconds, Direction direction) {
6389c060
ME
29 this.seconds = seconds;
30 this.direction = direction;
5ac4d78e
ME
31 }
32
33 @Override
34 protected void initialize() {
6389c060
ME
35 timer = new Timer();
36 timer.start();
5ac4d78e
ME
37 }
38
39 @Override
40 protected void execute() {
53924f8d
ME
41 if (direction == Direction.RIGHT) {
42 Robot.driveTrain.setMotorSpeeds(SPEED, -SPEED);
43 } else if (direction == Direction.LEFT) {
44 Robot.driveTrain.setMotorSpeeds(-SPEED, SPEED);
45 }
5ac4d78e
ME
46 }
47
48 @Override
49 protected boolean isFinished() {
53924f8d
ME
50 if (timer.get() >= seconds)
51 return true;
5ac4d78e
ME
52 return false;
53 }
54
55 @Override
56 protected void end() {
57 }
58
59 @Override
60 protected void interrupted() {
61 }
be737780 62}