11 lines
132 B
C
11 lines
132 B
C
|
#include <avr/io.h>
|
||
|
#include <util/delay.h>
|
||
|
|
||
|
int main(void) {
|
||
|
DDRB = 1 << 2;
|
||
|
while(1) {
|
||
|
PORTB ^= 1 << 2;
|
||
|
_delay_ms(500);
|
||
|
}
|
||
|
}
|