/*
* Name: arduino_shield_one.ino
* Date: 2023/07/12
* Author: fsc
* Version 1.5
* Wokwi-Simulation:
* Es wird das Rich-Shield-One von Open Smart simuliert.
*
* https://wokwi.com/projects/364951815128165377
*/
#inlucde <BlinkLed.h>
int LED4 = 4;
int wiederholung = 3;
int an = 500;
int aus = 1000;
void setup() {
pinMode(LED4, INPUT);
}
void loop() {
ledALarm(LED4, an, aus, wiederholung);
}