9007a545fce287951f650cad98ffa08bf9bd3515
[3501/2017steamworks] / src / org / usfirst / frc / team3501 / robot / commands / driving / JoystickDrive.java
1 package org.usfirst.frc.team3501.robot.commands.driving;
2
3 import org.usfirst.frc.team3501.robot.OI;
4 import org.usfirst.frc.team3501.robot.Robot;
5
6 import edu.wpi.first.wpilibj.command.Command;
7
8 /**
9 * This command will run throughout teleop and listens for joystick inputs to
10 * drive the driveTrain. This never finishes until teleop ends. - works in
11 * conjunction with OI.java
12 */
13 public class JoystickDrive extends Command {
14
15 public JoystickDrive() {
16 requires(Robot.getDriveTrain());
17 }
18
19 @Override
20 protected void initialize() {
21 }
22
23 @Override
24 protected void execute() {
25 // final double thrust = OI.rightJoystick.getY();
26 // final double twist = OI.rightJoystick.getTwist();
27 //
28 // Robot.getDriveTrain().joystickDrive(-thrust, -twist);
29 double left = OI.leftJoystick.getY();
30 double right = OI.rightJoystick.getY();
31 Robot.getDriveTrain().tankDrive(left, right);
32 }
33
34 @Override
35 protected boolean isFinished() {
36 return false;
37 }
38
39 @Override
40 protected void end() {
41 Robot.getDriveTrain().stop();
42 }
43
44 @Override
45 protected void interrupted() {
46 }
47 }