/* code014.c ATmega88 @ 8MHz */ #include <avr/io.h> uint8_t counter; int main(void) { DDRD = 0xFF; PORTD = 0x00; counter = 100; while (counter >= 0) { // mach irgend etwas counter --; } PORTD = 0xFF; }