LCD display print ?

Hello good people

I have question about the LCD my project should print many letters on the LCD when I print a letter and try the other one the displayed letter go !

there is any possible way that I can print letter and keep in on the display even if the other letter come after ?
lcd.print(''A'')
lcd.print(''B'')

I want it like AB on the display and I cant make them together because I need them separately

Hi.

Show your code, because the error is probably in there.

This our code we want that whenever we do the letter it shows in the LCD and when we change to anther move the previous one stay with the new one near it

SENIOR CODE.txt (11.6 KB)

I did not try to follow all of your code but the problem may lie in the fact that you are repositioning the cursor to the beginning of the second line each time around the loop.

Also - what effect do you think the lcd.setCursor(2,2); statement will have when applied to your 16x2 display?

Don