//Eieruhr V1.0
//Autor: LM
//Datum:11.03.2025
int seconds;
void setup() {
//Startzeit der Eieruhr einstellen
seconds = 7;
//Serielle Schnittstelle initialisieren
Serial.begin(9600);
Serial.println("Eieruhr V1.0");
}
void loop() {
// put your main code here, to run repeatedly:
seconds = seconds - 1;
//1000ms warten
delay (1000);
}