Regarding product sku.138616 , i cant get this display to work using an arduino uno.
the display i received has an other i2c driver on the back text says GY-LCD-V1 on the back.
The spec write it uses i2c address 0x27, but when i run an i2c scan it shows up at 0x20.
After changing to this address my backlight turns on and i see a blinking cursor but no text can be put on the display using de LiquidCruistal_i2c library.
wiring is correct , anybody got this display working ?
sample code used: #include #include
LiquidCrystal_I2C lcd(0x20,20,4); // set the LCD address to 0x27 for a 16 chars and 2 line display
void setup()
{
lcd.init(); // initialize the lcd
lcd.init();
// Print a message to the LCD.
lcd.backlight();
lcd.setCursor(3,0);
lcd.print("Hello, world!");
lcd.setCursor(2,1);
lcd.print("Ywrobot Arduino!");
lcd.setCursor(0,2);
lcd.print("Arduino LCM IIC 2004");
lcd.setCursor(2,3);
lcd.print("Power By Ec-yuan!");
}
I'm guessing you are referring to my post in that thread? I just modified it to include a mention of "GY-LCD-V1" as thats exactly the same board I have..... and I knew I wouldnt be the only one spending hours getting the thing to work! glad it helped you out.