#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C LCD (0x27, 16, 2);
byte Char[8] = {
B00000,
B00000,
B01010,
B00000,
B10001,
B01110,
B00000,
B00000
};
void setup() {
// put your setup code here, to run once:
LCD.init();
LCD.backlight();
LCD.createChar(0, Char);
LCD.setCursor(0,0);
LCD.write(0);
LCD.setCursor(2,0);
LCD.print("Hallo Saya");
LCD.setCursor(0,1);
LCD.print("Hasna Almaas T");
}
void loop() {
// put your main code here, to run repeatedly:
}