write a simple arduino program to blink a led with 500 msec. delay in between on and off
Answers
Answered by
0
Answer:
void setup()
{
pinMode(8, OUTPUT);
}
void loop()
{
digitalWrite(8, HIGH);
delay(500);
digitalWrite (8, LOW);
delay(500);
}
Explanation:
Similar questions