The Nokia 6100 LCD Shield for Arduino only has the LCDPutStr
command. How do I display floating numbers from my variables?
2
votes
1 Answers
1
votes
Haven't done it myself but there's a good thread on the topic (of floats to strings for Arduino) here.
Also, there is the LiquidCrystal library which works well, if it's compatible with the Nokia. You can feed numbers to it's print function.
Remember Arduino's language is simplified C++. So if none of those Arduino solutions work just look for an open source library and nab the function from there.