I am getting crazy on my first LCD example.
I use an Arduino Uno and I'd like to try the LCD screen with the easiest example: the Hello World LiquidCrystal example.
I connected the pins in the same way as the example above but the LCD first shows 16 "inverted spaces" in first line and nothing in second line.
Here is my code (exactly the same as the example):
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup() {
lcd.begin(16, 2);
lcd.print("hello, world!");
}
void loop() {
lcd.setCursor(0, 1);
lcd.print(millis()/1000);
}
Does anyone know something about this issue?