#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 20, 4);
void setup() {
// put your setup code here, to run once:
lcd.init();
lcd.backlight();
lcd.setCursor(4,0);
lcd.print("Hello World!");
lcd.setCursor(0, 1);
lcd.print("Ca,Ra,Ta,Es,Or,Mo,Pa");
lcd.setCursor(1,2);
lcd.print("Microprocessor Lab");
lcd.setCursor(5,3);
lcd.print("SingkoBots");
}
void loop() {
// put your main code here, to run repeatedly:
}