In layman’s terms. Thank you.
This is what I need to do. I can’t wrap my head around it. I have two independent floats and I will like to combine them into one single float.
//float valuesOne returns numbers 1 to positive 100.
//float valuesTwo returns numbers from -1 to negative 100
// depending on the incoming data a new float will return a single float negative or positive.
float valuesOne = range (1 to 100)
float valuesTwo = range (-1 to - 100)
// a new float that combines both ranges to positive and negative. So range Range ((-100), (+100))
float Up&Down = (-100) - (+100).
Thank you!