#include #include int main() { DDRB |= _BV(DDB3); while (1) { PORTB |= _BV(PORTB3); _delay_ms(500); PORTB &= ~_BV(PORTB3); _delay_ms(500); } }