#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup() {
lcd.begin(16, 2);
lcd.setCursor(0, 0);
lcd.print("Kiskenda arya sembada");
delay(500);
lcd.clear();
}
void loop() {
lcd.setCursor(0, 0);
lcd.print("X TE-c");
lcd.setCursor(0, 1);
lcd.print(millis() / 1000);
// put your setup code here, to run once:
// put your main code here, to run repeatedly:
}