#include #include #include int main(void) { int i; DDRB = 0xff; PORTB = 0b10101010; for (;;) { PORTB = PORTB ^ 0xff; _delay_ms(1000); } return 0; }