Cannot print double values on LCD Shield.
my mod supports print(int) and printIn(char*)
How can i convert float or double to string.
Thank you
Cannot print double values on LCD Shield.
my mod supports print(int) and printIn(char*)
How can i convert float or double to string.
Thank you
multiply your float value out then split it up and add a decimal point back in.
I thought you could print floats to an LCD (suppose it depends on the LCD).
You cannoot use doubles at all on an arduino. It doesn't support them, they change to floats when you use them.
Mowcius
Thanks. I find this one solution. It works OK!