Hi,
So i am making a project containing a keypad and a LCD panel (2x16), but when i run this code:
lcd.setCursor(0, 0);
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("EULA was declined! To continue you have to accept eula.");
lcd.setCursor(0, 1);
lcd.print(" Please restart your microwave by pressing (B)");
while(true){
lcd.scrollDisplayLeft();
delay(300);
}
}
the two lanes of text are merging together! How can i fix it?
character by character scrolling on a 16x2 LCD looks terribly and is badly readable.
by the way, most buffers are limited to 40 characters per line, and you have 56 characters.
Therefore line 0 and 1 are mixed up.
consider to write messages in 16 characters long only - or chose another display.