/** Functions ****************************/
void Turn_on_led_with_the_pin_5() {
// Led digital write function
digitalWrite(5,HIGH);
delay(1000);
// Led digital write function
digitalWrite(5,LOW);
}
void Turn_on_led_with_the_pin_6() {
// Led digital write function
digitalWrite(6,HIGH);
delay(1000);
// Led digital write function
digitalWrite(6,LOW);
}
void Turn_on_led_with_the_pin_7() {
// Led digital write function
digitalWrite(7,HIGH);
delay(1000);
// Led digital write function
digitalWrite(7,LOW);
}
/** Setup function ***********************/
void setup() {
pinMode(5, OUTPUT);
pinMode(6, OUTPUT);
pinMode(7, OUTPUT);}
/** Loop function ************************/
void loop() {
Turn_on_led_with_the_pin_5();
Turn_on_led_with_the_pin_6();
Turn_on_led_with_the_pin_7();
Turn_on_led_with_the_pin_6();
Turn_on_led_with_the_pin_5();
}