Quote:
Originally Posted by Zer0
Can someone please help me out with programming a throttle in java/ When i press button 3 on Joystick 2 i want it to read the the throttle and adjust apply that speed to jaguar 3 and jaguar 4. Can you help? Thanks!
|
here is the code
Code:
if(joystick2.getRawButton(3){jag3.set(joystick2.getRawAxis(3));
jag4.set(joystick2.getRawAxis(3));
}
explanation:
first line(if button3 is pressed on joystick 2)
2nd line(then set the speed of jaguar 3 to the value from the 3rd axis of the joystick) - the reason why it is 3 is because the throttle axis is 3
3rd line(after that also set jaguar 4 to the same value)