13 lines
138 B
C
13 lines
138 B
C
#include <avr/io.h>
|
|
#include <stdint.h>
|
|
|
|
int main ( void ) {
|
|
uint8_t foo = 33;
|
|
|
|
while (foo) {
|
|
PORTD ^= foo;
|
|
foo--;
|
|
}
|
|
|
|
return 0;
|
|
}
|