#include <Wire.h>
#include <LiquidCrystal_I2C.h> // LCD I2C added
LiquidCrystal_I2C lcd(0x27, 16, 2); // Child of LCD
void setup() {
lcd.begin(); // Lcd started
lcd.backlight(); // LCD back light on
}
void loop() {
lcd.setCursor(0, 0);
lcd.print("Seconds");
lcd.setCursor(1, 1);
lcd.print(millis() / 1000);
}