summaryrefslogtreecommitdiff
path: root/config.h
blob: ffe99a079866245bacb6f5265ce821a64dbb12c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef CONFIG_H
#define CONFIG_H

#define F_CPU 8000000UL

#define LED_COUNT 100
#define LED_PIN PB3

#define EQ_PIN_INPUT PB2
#define EQ_PIN_RESET PB0
#define EQ_PIN_STROBE PB1
#define EQ_THRESHOLDS \
	{0x76, 0xFF}, \
	{0x82, 0xFF}, \
	{0x58, 0xFF}, \
	{0x5F, 0xFF}, \
	{0x40, 0xAA}, \
	{0x3D, 0x88}, \
	{0x1F, 0x66}

#define ISR_PIN PB4

#endif