The C code shown below can be used to blink a single LED using an Arduino board.
Modify your C program so that 3 LEDs can flash in a desired sequence. The 3 LEDs should light one at a time in sequence, and stay lit for at least 200ms. The LEDs should never be all on at the same time. It does not matter which pins you choose to use.
```c
/* Blinkyl.C */
#include <avr/io.h>
#include <util/delay.h>
int main(void) {
DDRB = 0x02; // set port PB1 to be an output (equivalent to 0b00000010)
while(1) {
PORTB = ~PORTB; // change state of port output
_delay_ms(250); // this function is in library delay.h and can force a maximum delay of 263ms
}
}
```