#ifndef F_CPU #define F_CPU 1000000UL #endif #include #include int main(void) { DDRB = 0b00000001; while (1) { PORTB = 0b00000001; PORTB = 0b00000000; } return 0; }