#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C LCD (0x27, 16, 2);
void setup() {
LCD.init();
LCD.backlight();
LCD.setCursor(0,0);
LCD.print("Ivan");
LCD.setCursor(2,4);
LCD.print("Raja Dyroth");
}
void loop() {
}
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C LCD (0x27, 16, 2);
void setup() {
LCD.init();
LCD.backlight();
LCD.setCursor(0,0);
LCD.print("Ivan");
LCD.setCursor(2,4);
LCD.print("Raja Dyroth");
}
void loop() {
}