blob: ee478534bc86c5ece93481f18ba65b7b3b7c6d70 [file] [log] [blame]
Brian Silverman18b01642013-12-13 21:12:25 -08001#ifndef CAPE_LED_H_
2#define CAPE_LED_H_
3
4// The LEDs as referenced by the silkscreen.
5enum LED {
6 LED_ERR,
7 LED_HB,
8 LED_Z,
9 LED_DB,
10};
11
12// Turns the indicated LED on or off.
13void led_set(enum LED led, int on);
14
15void led_init(void);
16
17#endif // CAPE_LED_H_