#include <Wire.h>
#include <LiquidCrystal_PCF8574.h>
LiquidCrystal_PCF8574 lcd(0x27);
void setup() {
lcd.begin(16, 2);
}
void loop() {
lcd.setBacklight(255);
lcd.home();
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("HELLO WORLD!!!");
lcd.setCursor(0, 1);
lcd.print("12a-12-yuchi");
delay(200);
}