/*
Dieses Programm verwendet
- die LED am Pin 13
*/
int i;
void setup()
{
// initialize digital pin 13 as an output.
pinMode(LED_BUILTIN, OUTPUT);
}
void loop()
{
//3x 500
for (i=0; i<3; i++)
{
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(500); // wait
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(500); // wait
}
for (i=0; i<3; i++)
{
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait
} // wait
for (i=0; i<3; i++)
{
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(500); // wait
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(500); // wait
} // Grosse Pause
delay(2000);
}