2004A display issues.

I am totally new to programming on the Arduino. But as a retired electrician I am enjoying the experience.
But I have a problem with a simple LCD display.
I am trying out a couple of ways to display text and variables on the same line. (hopefully the code is included) I can display both the text and the variable ok if I use 2 separate lcd.print functions.
But I also tried the String function. This is ok other than my display shows 2 partially filled blocks on the line after the variable.
If anybody can help. Or am I just as well going with the 2 lcd.print functions ?
Thanks

BKDisplay.ino (2.36 KB)

Change your lcd.println(...) to lcd.print(...) .

Don

Thanks for the reply Don.
Its a challenging learning curve :slight_smile: