So i got this 16x1 HD44780 LCD display for the arduino, i searched a bit and found out that the existing "liquid display" library does work with this LCD with a few changes.
i had to change lcd.begin (16,2) to lcd.begin (8,2), meaning it has two "areas" where i can write. The problem is i want to write a prestored word (array) on it which is bigger than 8 characters, so how can i tell the lcd to automatically move the cursor to the next "area" and write the rest of the word, when the sentence is bigger than 8 characters?
This is my example array, the first word is smaller than 8 words the second is bigger than 8:
char* words [] = {"abcdefg", "abcdefghij"}
Thankyou in advance.