#include <LiquidCrystal_I2C.h>
//#define I2C_ADDR 0x27
//#define LCD_COLUMNS 20
//#define LCD_LINES 4
LiquidCrystal_I2C lcd(0x27, 16, 2);
void setup() {
// put your setup code here, to run once:
// Init
lcd.init();
lcd.backlight();
// Print something
lcd.setCursor(0, 0);
lcd.print("voradet");
delay(500);
lcd.clear();
delay(500);
lcd.print("voradet");
delay(500);
lcd.clear();
delay(500);
}
void loop() {
// put your main code here, to run repeatedly:
/*
for (int x = 0; x <= 16; x++) {
lcd.setCursor(x, 0);
lcd.print("voradet , hello");
delay(500);
lcd.clear();
}
for (int x = 16; x >= 1 ; x--) {
lcd.setCursor(x, 0);
lcd.print("voradet , hello");
delay(500);
lcd.clear();
}
*/
}