#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 16, 2); // set the LCD address to 0x27
void setup() {
Serial.begin(115200);
Serial.println("Hello");
lcd.init();
lcd.backlight();
lcd.print("Serial counter Example");
delay(1000);
}
void loop(){}