I'm starting with the C of arduino and I need a way to convert an integer value to a string or array of chars in order to display it on an LCD. Something like this:
printf ( s_myString, "%d", i_myInteger);
The problem is that I cannot find nothing like this in the reference. I was wondering if there are something written to manipulate number to string conversion before starting to write my own functions.
I thought that the available functions were limited to the ones on the extended reference page, but I see that there is more and I can try in the future all the standard C
Now my small little robot can "see" and shows the LDR values on the debugging LCD.