You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
204 B
10 lines
204 B
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);
|
|
void led_state(pyb_led_t led, int state);
|
|
void led_toggle(pyb_led_t led);
|
|
|