hello,
do you know map() ?
It takes your value incomingValues[1] .
Let's say it comes normally between 10 and 12456, and you want to show it as something
between 0 and 100. Then you say:
- whatIWantToDisplay = map ( incomingValues[1], 10 , 12456, 0 , 100 );
so it maps the value incomingValues[1] from one range to another range proportional.
Does this help?