Hello,
I have a problem with the I2C interface FC-113 for the LCD module 1602.
I wire GND-->GND, VCC-->5V, SDA-->A4, SCL-->A5
I load the example sketch:
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x20,16,2); // set the LCD address to 0x20 for a 16 chars and 2 line display
void setup()
{
lcd.init(); // initialize the lcd
// Print a message to the LCD.
lcd.backlight();
lcd.print("Hello, world!");
}
void loop()
{
}
And I get no response on the LCD.
Adjusting brightness I can just see black squares in the low line of the LCD
I tried changing 0x20 to 0x21 or 0x22 or . . . or 0x27 and also 0x38 and so on but it's all the same.
I tried also adding lcd.setBacklight(HIGH); or lcd.setBacklight(LOW); The LCD backlight actually switches on and off but not every time, just by chance!
I am using LiquidCrystal_I2C V2.0 by Mario H.
help!
