X-Git-Url: http://challenge-bot.com/repos/?p=3501%2F2017steamworks;a=blobdiff_plain;f=src%2Forg%2Fusfirst%2Ffrc%2Fteam3501%2Frobot%2Fcommands%2Fdriving%2FJoystickDrive.java;h=aa9bfafffe20b46aa0ac71a372d57feda8e4f5cb;hp=9007a545fce287951f650cad98ffa08bf9bd3515;hb=8275a069e1891bd27156dcd947a897519c42a3a3;hpb=ba9f0b126afd5973b11a22dd6640d8d6f0822f5a diff --git a/src/org/usfirst/frc/team3501/robot/commands/driving/JoystickDrive.java b/src/org/usfirst/frc/team3501/robot/commands/driving/JoystickDrive.java index 9007a54..aa9bfaf 100755 --- a/src/org/usfirst/frc/team3501/robot/commands/driving/JoystickDrive.java +++ b/src/org/usfirst/frc/team3501/robot/commands/driving/JoystickDrive.java @@ -3,6 +3,7 @@ package org.usfirst.frc.team3501.robot.commands.driving; import org.usfirst.frc.team3501.robot.OI; import org.usfirst.frc.team3501.robot.Robot; +import edu.wpi.first.wpilibj.Joystick.AxisType; import edu.wpi.first.wpilibj.command.Command; /** @@ -22,13 +23,15 @@ public class JoystickDrive extends Command { @Override protected void execute() { - // final double thrust = OI.rightJoystick.getY(); - // final double twist = OI.rightJoystick.getTwist(); - // - // Robot.getDriveTrain().joystickDrive(-thrust, -twist); - double left = OI.leftJoystick.getY(); - double right = OI.rightJoystick.getY(); - Robot.getDriveTrain().tankDrive(left, right); + final double thrust = OI.xboxController.getY(); + final double twist = OI.xboxController.getAxis(AxisType.kZ); + + Robot.getDriveTrain().joystickDrive(-thrust, -twist); + + /* + * double left = OI.leftJoystick.getY(); double right = + * OI.rightJoystick.getY(); Robot.getDriveTrain().tankDrive(-left, -right); + */ } @Override