#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,16,2);
void setup() {
lcd.init();
lcd.backlight();
lcd.setCursor(1,0);
lcd.print("Davina Nur AH");
lcd.setCursor(2,1);
lcd.print("18 - 06 - 07");
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}