#include #define F_CPU 1000000UL; #include "util/delay.h" int main(void) { while(1) { DDRD=0xFF; PORTD=0x00; _delay_ms(1000); PORTD=0xFF; }; }