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

27
led2/led2.c Normal file
View File

@@ -0,0 +1,27 @@
#include <avr/io.h>
#include <util/delay.h>
#include <limits.h>
#define DELAY 50
#define BITS sizeof(PORTB) * CHAR_BIT - 1
int main(void) {
int i;
DDRB = 0xff;
PORTB = 1;
for (;;) {
for (i = 0; i < BITS; i++) {
_delay_ms(DELAY);
PORTB = PORTB << 1;
}
for (i = BITS; i > 0; i--) {
_delay_ms(DELAY);
PORTB = PORTB >> 1;
}
}
return 0;
}