I would like to do a conversion but don't know how.
Originally I get a Hex value like 03 EE
which represents 1006
.
Now those data is represent in a String array and as decimals:
[0] = "3"
[1] = "238"
Whats the easiest way to get back to a decimal 1006
from this situation?
I do this on an Arduino with C++