Computer Science, asked by aniketkhengar, 9 months ago

write a simple arduino program to blink a led with 500 msec. delay in between on and off​

Answers

Answered by sanjiththesupernigha
0

Answer:

void setup()

{

pinMode(8, OUTPUT);

}

void loop()

{

digitalWrite(8, HIGH);

delay(500);

digitalWrite (8, LOW);

delay(500);

}

Explanation:

Similar questions