Our programming team wants to use the Z-axis on a Logitech joystick as the throttle for our shooter motor. Our problem is that we want the negative portion to be zero and the positive to represent full throttle. Sorry for not being clear - it’s hard to convey what I mean over text. If you need any more details, feel free to ask.
What language are you programming in? If the most positive value is 1 and the most negative value is -1, what I’ve done in the past is added 1 and divided by 2 (to the joystick value). [strike] Also, an exception needs to be put in place when is the value is -1 because -1+1=0/.5 results in potentially undefined behavior (at least in c++). [/strike]