157d6174929a3b9d5bf59166a0fe9a53e758f4aa
[lra-as-sensor] / hbc.c
1 #include <avr/io.h>
2 #include <avr/interrupt.h>
3
4 #include <stdio.h>
5 #include <stdlib.h>
6
7 #include <util/delay.h>
8
9 int main(void) {
10         
11         
12         DDRB |= (1 << DDB3);
13         PORTB = (1 << PB3);
14
15         while(1) {
16                 
17         }
18
19         return 0;
20
21 }