I couldn't show word on LCD keypad Shield wit Arduino UNO...
I can display 1 character only. I mean if I input "CAT", LCD just shows "C".
How can I word on LCD?
Paul,
Come on, you can look at the code and see what the counter is being used for.
I know. But, will OP remember in 6 months when looking back at the code? Meaningful names help. What is being counted is characters, not LCDs. So, the name should be char_count.
That could still be confusing as the variable is used to set the LCD column to be printed in.
Then, call it columnCount. What is not being counted, though, is LCDs. Characters or columns are. There is a one to one correspondence, so I'd use whichever name felt more natural.