How to SetThrottle

We are using java to program our robot and we are trying to change the sensitivity of our motor controller. Is there a way to SetThrottle, and will that help to change the sensitivity? We see that there is a method called GetThrottle. If not, we are also looking at Setoutput, which seems to use binary.

If I understand this correctly, you are trying to use the throttle on your joystick to control the speed of your motor. To do this you need to create a method to change value of the throttle from -1-1 to 0-1 using some simple math. Specifically you’d need to add one to the output of the throttle then divide by two. You then multiply this new value by the number you input as the speed for the motor controller. If you are using a joystick to control the motor, this will limit the speed of your motor but still give you the full range of the joystick. If you need some example code, I can provide it.