You are on page 1of 1

#include <mega16.

h>
#include <delay.h>
void main(void)
{
// Declare your local variables here
.
.
while (1)
{
// place your code here
PORTB=0xff;
delay_ms(500);
PORTB=0x00;
delay_ms(500);
}
}

You might also like