void setup() { pinMode(LED_BUILTIN, OUTPUT); } void loop() { // turn the LED on (HIGH is the voltage level) digitalWrite(LED_BUILTIN, HIGH); delay(2000); // Wait for 3000 millisecond(s) // turn the LED off by making the voltage LOW digitalWrite(LED_BUILTIN, LOW); delay(2000); // Wait for 3000 millisecond(s) }