void setup() {
pinMode(13,OUTPUT);
Serial.begin(9600);
int AnzahlBlinken = 0;
}
void loop() {
for (int Osterhase = 1; Osterhase <=3; Osterhase++) {
Serial.println("3x kurz");
digitalWrite(13,HIGH);
delay(300);
digitalWrite(13, LOW);
delay(300);
}
for (int Osterhase = 0; Osterhase <=2; Osterhase++) {
Serial.println("3x lang");
digitalWrite(13, HIGH);
delay(800);
digitalWrite (13, LOW);
delay(300);
}
for (int Osterhase = 0; Osterhase <=2; Osterhase++) {
Serial.println("3x kurz");
digitalWrite(13, HIGH);
delay(300);
digitalWrite(13, LOW);
delay(300);
}
delay(2000);
}
/*
// 3x Kurzes Osterhaseen
Serial.println("3x kurzes Osterhaseen");
digitalWrite(13, HIGH); // turn the LED on (HIGH is the voltage level)
Serial.println("Lampe an");
delay(500); // wait for a second
digitalWrite(13, LOW); // turn the LED off by making the voltage LOW
Serial.println("Lampe aus");
delay(500); // wait for a second
digitalWrite(13, HIGH); // turn the LED on (HIGH is the voltage level)
Serial.println("Lampe an");
delay(500); // wait for a second
digitalWrite(13, LOW); // turn the LED off by making the voltage LOW
Serial.println("Lampe aus");
delay(500);
digitalWrite(13, HIGH); // turn the LED on (HIGH is the voltage level)
Serial.println("Lampe an");
delay(500); // wait for a second
digitalWrite(13, LOW); // turn the LED off by making the voltage LOW
Serial.println("Lampe aus");
delay(500);
// 3x langes Osterhaseen
digitalWrite(13, HIGH); // turn the LED on (HIGH is the voltage level)
Serial.println("3x langes Osterhaseen");
Serial.println("Lampe an");
delay(1000); // wait for a second
digitalWrite(13, LOW); // turn the LED off by making the voltage LOW
Serial.println("Lampe aus");
delay(1000); // wait for a second
digitalWrite(13, HIGH); // turn the LED on (HIGH is the voltage level)
Serial.println("Lampe an");
delay(1000); // wait for a second
digitalWrite(13, LOW); // turn the LED off by making the voltage LOW
Serial.println("Lampe aus");
delay(1000);
digitalWrite(13, HIGH); // turn the LED on (HIGH is the voltage level)
Serial.println("Lampe an");
delay(1000); // wait for a second
digitalWrite(13, LOW); // turn the LED off by making the voltage LOW
Serial.println("Lampe aus");
delay(1000);
// 3x Kurzes Osterhaseen
Serial.println("3x kurzes Osterhaseen");
digitalWrite(13, HIGH); // turn the LED on (HIGH is the voltage level)
Serial.println("Lampe an");
delay(500); // wait for a second
digitalWrite(13, LOW); // turn the LED off by making the voltage LOW
Serial.println("Lampe aus");
delay(500); // wait for a second
digitalWrite(13, HIGH); // turn the LED on (HIGH is the voltage level)
Serial.println("Lampe an");
delay(500); // wait for a second
digitalWrite(13, LOW); // turn the LED off by making the voltage LOW
Serial.println("Lampe aus");
delay(500);
digitalWrite(13, HIGH); // turn the LED on (HIGH is the voltage level)
Serial.println("Lampe an");
delay(500); // wait for a second
digitalWrite(13, LOW); // turn the LED off by making the voltage LOW
Serial.println("Lampe aus");
delay(2000);
}
*/