#include "LiquidCrystal_I2C.h" // THE LOCAL COPY
LiquidCrystal_I2C lcd(0x27, 20, 4);
uint8_t heart[8] = {0x0, 0xa, 0x1f, 0x1f, 0xe, 0x4, 0x0};
void setup() {
lcd.begin();
lcd.backlight();
lcd.createChar(0, heart);
lcd.home();
lcd.print("Hello world...");
lcd.setCursor(0, 1);
lcd.print("spaces[ ]");
delay(1000);
lcd.clear();
}
void loop() {}