#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C Icd (0x27,16,2);
void setup() {
// put your setup code here, to run once:
Icd.begin(16,2);
Icd.setCursor(0,0);
Icd.print(" ONE PIECE ");
Icd.setCursor(0,1);
Icd.print(" RORONOA ZORO ");
}
void loop() {
// put your main code here, to run repeatedly:
Icd.display();
delay(500);
Icd.noDisplay();
delay(500);
}