Hi All,
I'm working on a project that requires me to display stuff on the LCD (Given product is GDM1602N1)
I've been cracking my head over this, as i can't seem to display anything.
I've gone on Adafruit's LCD tutorial, but it still doesn't work.
Current Connection:
LCD Pin #1: GND
LCD Pin #2: +5V
LCD Pin #3: 10k Potentiometer
LCD Pin #4: Adruino Digital I/O Pin 7
LCD Pin #5: GND
LCD Pin #6: Arduino Digital I/O Pin 8
LCD Pin #7-10: Empty
LCD Pin #11: Arduino Digital I/O PIN 9
LCD Pin #12: Arduino Digital I/O Pin 10
LCD Pin#13: Arduino Digital I/O Pin 11
LCD Pin #14: Arduino Digital I/O Pin 12
LCD Pin #15: 220 ohms which is connected to +5V
LCD Pin #16: GND
I'm using the Helloworld example, changed the program to
const int rs = 7, en = 8, d4 = 9, d5 = 10, d6 = 11, d7 = 12;
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);
I've been reading up, and know that it is normal to have black box appearing on 1st row of LCD, and supposedly the wordings will appear.
However, now while i turn the potentiometer, it doesn't display anything, the black boxes just fades to display empty pixels.
I reconnected many times, but still arrive at the same outcome, any possibilities that the LCD is spoilt? Afterall, not sure how many times has this LCD been used
Please help