#include<LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x26, 16, 2);

#define ROW_1 0
#define ROW_2 1

uint8_t heart[8] = {
  0b00000,
  0b01010,
  0b11111,
  0b11111,
  0b11111,
  0b01110,
  0b00100,
  0b00000,
};
void setup() {

  lcd.init();
  lcd.backlight();

  lcd.createChar(3, heart);
  lcd.begin(16, 2);
  lcd.setCursor(2, 0);
  lcd.print("I \x03 Arduino");

}

void loop() {
  // lcd.setCursor(0, 0);
  // lcd.write(byte(252));
  // delay(1000);

  // lcd.setCursor(0, ROW_1);
  // lcd.print("ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890123_");

  // lcd.setCursor(0, ROW_2);
  // lcd.print("1234567890");
  // lcd.scrollDisplayRight();
  // delay(1000);
}