#include <LiquidCrystal_I2C.h>
#define LCD_ADDR 0x27
LiquidCrystal_I2C lcd(LCD_ADDR, 16, 2);
void setup() {
// put your setup code here, to run once:
lcd.begin(16,2);
lcd.init();
lcd.backlight();
lcd.setCursor(5,0);
lcd.print("Hello");
lcd.setCursor(3,1);
lcd.print("Subscribe");
}
void loop() {
// put your main code here, to run repeatedly:
}