I have a hd44780 16x1 lcd screen. The problem is that it has to be addressed as (8,2) instead of (16,1), now i want to print an array on it, which is longer then 8 letters, but i don't know how to auto move the cursor to the second segment when the word is > 8 letters.
char * words[] = {"abcdefghig",..............}
void setup() {
lcd.begin(8, 2);
}
lcd.setCursor(0, 0);
lcd.print(words[1]);
P.S I want to keep the array as i will add more words into it.The arduino will select which word to print using my inputs.