Help with LCD connection to Arduino

Hello,

I am a complete beginner to Arduino and need help with the following issue:
I've been trying to connect my LCD―the backlight is turning on but the pot isn't adjusting the contrast, so I cannot see anything when I upload my code. Have I wired something incorrectly or written my code wrong?

I've attached all the images in the following Google Doc: LCDwiring - Google Docs

#include <LiquidCrystal.h>

LiquidCrystal lcd (4, 6, 10, 11, 12, 13);

void setup() {
    lcd.begin(16, 2);

    lcd.print("a");
    delay(2500);

    lcd.print("b");
    delay(2500);
}

void loop() {}

Check your wiring. Since you didn't specify RW in the declaration, is it connected to GND?

Shall we have a look at a schematic of your project and some clear photographs, then?

Yeah, I've attached them in the following Google Docs: LCDwiring - Google Docs

My bad, I'm still super new to this system. The GND wire connects on the same column as the A pin on the LCD. Would this be the issue?

Hi, @ryanne2000
Welcome to the forum.
In this image;


The yellow is not connected to the potentiometer wiper.

The wiper terminal in your project is connected to the red or blue bus along the edge of the proto board.
image

Do you have a DMM? (Digital MultiMeter)

You can post your images directly into your post.

Thanks. Tom.. :smiley: :+1: :coffee: :australia:

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.