#include <LiquidCrystal_I2C.h>
#include <Wire.h>
LiquidCrystal_I2C A(0x27, 16, 2);
void setup() {
// put your setup code here, to run once:
A.begin(16, 2);
A.print("Running Since...");
A.setCursor(0, 1);
A.print("Time:");
}
void loop() {
// put your main code here, to run repeatedly:
A.setCursor(6,1);
A.print(millis()/1000);
delay(100);
}