#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 20, 4);
void setup() { ;
Wire.setSDA(8);
Wire.setSCL(9);
Wire.begin();
lcd.init();
lcd.backlight();
lcd.setCursor(1,0);
lcd.print("Hello Teman-Teman!");
lcd.setCursor(6, 1);
lcd.print("> CRN <");
lcd.setCursor(3, 2);
lcd.print("> 16/06/2022 <");
lcd.setCursor(3, 3);
lcd.print("> Lab. uPCI <");
}
void loop() {
delay(1); // Adding a delay() here speeds up the simulation
}