#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd1(0x27, 16, 2);
LiquidCrystal_I2C lcd2(0x28, 16, 2);
void setup() {
lcd1.init();
lcd1.backlight();
lcd1.setCursor(0, 0);
lcd1.print("Selamat Siang!");
lcd1.setCursor(0, 1);
lcd1.print("Gredy Christian");
delay(2000);
lcd2.init();
lcd2.backlight();
lcd2.setCursor(0, 0);
lcd2.print("Apa kabar?");
}
void loop() {
// put your main code here, to run repeatedly:
delay(100); // this speeds up the simulation
}