|
Re: Joystick sensitivity
If you're using ROBOTC after the [p1_y] statement in " motor[port1] = frcRF[p1_y] just add the division sign ( / ) and put a number down (we're using 5)
This is what it should look like.
motor[port1] = frcRF[p1_y/5];
and that's all.
hope this helps.
|