aboutsummaryrefslogtreecommitdiff
path: root/stm/led.h
blob: aba00133de6135e5e42afea7242c91a58fd7e379 (plain)
1
2
3
4
5
6
7
8
9
typedef enum {
    PYB_LED_R1 = 0,
    PYB_LED_R2 = 1,
    PYB_LED_G1 = 2,
    PYB_LED_G2 = 3,
} pyb_led_t;

void led_init();
void led_state(pyb_led_t led, int state);