//Functions void dot(){ //Function that makes a dot with the led digitalWrite(D6, HIGH); //Turn on the LED delay(500); //Delay of 0.5 seconds digitalWrite(D6, LOW); //Turn off the LED delay(500); //Delay of 0.5 seconds }