#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_12C 'lcd'(0x27,16 ,2);
'void setup'() {
// put your setup code here, to run once;
lcd.begin(16,2);
'lcd.backlight'();
}
'void loop'() {
// put your main code here, to run repeatedly;
lcd.setcursor(1,0);
lcd.print("HALAO");
lcd.sutCursor(1,1);
lcd.print("By Mr Enter");
lcd.scrollDisplayleft();
delay(250);
}