View Single Post
  #1   Spotlight this post!  
Unread 26-01-2015, 19:43
TheLegion TheLegion is offline
Registered User
FRC #2353
 
Join Date: Jan 2015
Location: Kansas
Posts: 6
TheLegion is an unknown quantity at this point
Getting Rotation to work with XBOX 360 controller

Hello all

So our team is programming in java and we are having trouble getting the robot to turn/rotate. We are using a XBOX Controller and using the left stick to go forward and strafe and the right stick for turning/rotation. The left stick functions perfectly but the right stick has issues. When the right stick is moved around, the robot starts to rotate but then will stop. It never completes a rotation fully. We are using mecanum. Here is our code so far:

Code:
while (isOperatorControl()&&isEnabled()) {
      double leftXAxis=xboxController.getRawAxis(1);
      double leftYAxis=xboxController.getRawAxis(2);

      chassis.mecanumDrive_Cartesian(leftXAxis, leftYAxis, xboxController.getRawAxis(4),0);
Basically my question is how to get rotation to work with the right stick.

Thanks

Last edited by TheLegion : 26-01-2015 at 23:22.
Reply With Quote