#include #include int main(void){ // pin 13 DDRB = 0x80; while(1){ PORTB = 0x80; _delay_us(1000); PORTB = 0x00; _delay_us(1000); } return 0; }