add comments and parameters for DriveDistance command
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / commands / driving / JoystickDrive.java
CommitLineData
78b997ee
ME
1package org.usfirst.frc.team3501.robot.commands.driving;
2
a784e9d2 3import org.usfirst.frc.team3501.robot.OI;
78b997ee
ME
4import org.usfirst.frc.team3501.robot.Robot;
5
6import edu.wpi.first.wpilibj.command.Command;
7
8/**
9 *
10 */
11public class JoystickDrive extends Command {
12
d17d868d 13 public JoystickDrive() {
14 requires(Robot.getDriveTrain());
15 }
16
17 @Override
18 protected void initialize() {
19 }
20
21 @Override
22 protected void execute() {
5483fde9
CZ
23 final double thrust = OI.rightJoystick.getY();
24 final double twist = OI.rightJoystick.getTwist();
d17d868d 25
5483fde9 26 Robot.getDriveTrain().joystickDrive(-thrust, -twist);
d17d868d 27 }
28
29 @Override
30 protected boolean isFinished() {
31 return false;
32 }
33
34 @Override
35 protected void end() {
36 Robot.getDriveTrain().stop();
37 }
38
39 @Override
40 protected void interrupted() {
41 }
78b997ee 42}