opentvc
hardware.h
1 #ifndef HARDWARE_H
2 #define HARDWARE_H
3 
4 #include <avr/io.h>
5 #include <avr/interrupt.h>
6 #include <util/delay.h>
7 #define BUZZER_PORT PORTD
8 #define BUZZER PD3
9 #define LED_PORT PORTC
10 #define BLUE_LED PC1
11 #define GREEN_LED PC0
12 #define RED_LED PC2
13 #define BEEP_COUNT 150
14 
15 void blueStatusLED(void);
16 void initStatusLED(void);
17 
18 #endif // HARDWARE_H