Reorganize

This commit is contained in:
2021-05-15 13:45:37 -05:00
parent caf193f15f
commit 59f6501ea8
2 changed files with 0 additions and 0 deletions

18
led1/led1.c Normal file
View File

@ -0,0 +1,18 @@
#include <avr/io.h>
#include <util/delay.h>
#include <limits.h>
int main(void) {
int i;
DDRB = 0xff;
PORTB = 0b10101010;
for (;;) {
PORTB = PORTB ^ 0xff;
_delay_ms(1000);
}
return 0;
}