1// the setup function runs once when you press reset or power the board2voidsetup(){3// initialize digital pin LED_BUILTIN as an output.4pinMode(LED_BUILTIN, OUTPUT);5}67// the loop function runs over and over again forever8voidloop(){9digitalWrite(LED_BUILTIN, HIGH);// turn the LED on (HIGH is the voltage level)10delay(1000);// wait for a second11digitalWrite(LED_BUILTIN, LOW);// turn the LED off by making the voltage LOW12delay(1000);// wait for a second13}