#include<Wire.h>
#include<LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 20, 4); //objek lcd
String nama="Wahyu Cris";
String asal="Banyumas";
void setup() {
Serial.begin(115200);
lcd.init();
lcd.backlight();
lcd.setCursor(0,0);
lcd.print("Nama: "+String(nama));
lcd.setCursor(0,1);
lcd.print("Asal: "+String(asal));
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}