#define F_CPU 16000000 //set the speed of the micro-controller #include // this inlcudes a header file that contains other code into the current program #include int main (void) { // set all PORTB pins for output DDRB = 0xFF; for (;;) { // toggle PORTB pins PORTB ^= 0xFF; // wait one second _delay_ms(1000); } return 0; }