I have been looking all day for the information that I need but can't find it exactly. Is it possible to assign the value of 7.35 when the Arduino reads 0V and a value of 22.39 @ 5V? I'm sure it's possible but I am not good a maths.
Thank you for the assistance. I just wanted to make sure it was possible before committing. I kinda knew it was, I mean, almost anything is possible with these things.
HeyBen:
I have been looking all day for the information that I need but can't find it exactly. Is it possible to assign the value of 7.35 when the Arduino reads 0V and a value of 22.39 @ 5V?
If you can design your Arduino program so it does not need floating point values (i.e. only uses integers) it will work much faster. Floating point maths is slow.
For example could you use 735 and 2239 rather than 7.35 and 22.39?