Quote:
you can also run the joystick value through a math function to get your answer
left = ((left -127) /2 ) + 127
|
Dont forget to typecast or else you will overflow.
left = (( (int)left - 127) /2 ) + 127
you can replace 2 with any value that you want to in order to further dampen the speed.