Hello,
I got a 20x4 LCD module for the arduino. The issue I am currently having is that all the pixels have a degree of brightness to them when they aren't even turned on.
Is this because my LCD module is cheap?
I used the example code:
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
// Set the LCD address to 0x27 for a 16 chars and 2 line display
LiquidCrystal_I2C lcd(0x27, 20, 4);
void setup()
{
// initialize the LCD
lcd.begin();
lcd.clear();
// Turn on the blacklight and print a message.
//lcd.backlight();
lcd.print("Hello World");
}
void loop()
{
// Do nothing here...
}
I have attached an image also.
Thanks,
Gaz