#include #include int main(void) { DDRA |= _BV( PA0 ); while( 1 ) { PORTA |= _BV( PA0 ); _delay_ms(2000); PORTA &=~ _BV( PA0 ); _delay_ms(2000); } }