diff options
-rw-r--r-- | config.h | 5 | ||||
-rw-r--r-- | eq.h | 5 | ||||
-rw-r--r-- | led.h | 5 |
3 files changed, 15 insertions, 0 deletions
@@ -1,3 +1,6 @@ +#ifndef CONFIG_H +#define CONFIG_H + #define F_CPU 8000000UL #define LED_COUNT 50 @@ -16,3 +19,5 @@ {26, 37} #define ISR_PIN PB4 + +#endif @@ -1,4 +1,9 @@ +#ifndef EQ_H +#define EQ_H + extern unsigned char eq_levels[]; void eq_decay(); void eq_read(); + +#endif @@ -1,5 +1,10 @@ +#ifndef LED_H +#define LED_H + struct colour { unsigned char r, g, b; }; void led_signal_sequence(int, struct colour *, int, int, int); + +#endif |