//Have what looks like a chinese made ITC2 20x4 LCD module.
//Hooks up to my UNO3 connected to VCC GND and analog a4 and a5
//Here is my code compiled with the 1.2.1 Library and uploaded to the board
LiquidCrystal_I2C lcd(0x27, 2, 1, 0, 4, 5, 6, 7, 3, POSITIVE);
lcd.begin(20,4);
lcd.noBacklight(); //works fine
delay(750);
lcd.Backlight(); //works fine
// this dose not.. lcd remains lit and blank
lcd.setCursor(3,1); //Start at character 4 on line 1
lcd.print("Hello, world!");
//back of board shows a0 a1 a2 and not other labels
changing the first parameter of to 20 or 38 stops the baclight function form working, so I know that using the 0x27 is right.
//LiquidCrystal_I2C lcd(0x27, 2, 1, 0, 4, 5, 6, 7, 3, POSITIVE);
Would appreciate any help.