You are on page 1of 1

/*

* main.c
*
* Created on: May 6, 2013
*
Author: Anshuman Tripathi
*/
#include<stdio.h>
#include<avr/io.h>
#include<util/delay.h>
int main()
{
DDRD=255;
while(1)
{
PORTD=255;
_delay_us(50);
PORTD=0;
_delay_us(50);
}
}

You might also like