#define SIGNAAL 4 void setup() { pinMode(SIGNAAL, OUTPUT); // put your setup code here, to run once: } void loop() { digitalWrite(SIGNAAL, HIGH); delay(5); digitalWrite(SIGNAAL, LOW); delay(5); // put your main code here, to run repeatedly: }