You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
176 B
C
13 lines
176 B
C
7 years ago
|
#ifndef STARYU_BL
|
||
|
#define STARYU_BL
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
void init_backlight_led(void);
|
||
|
|
||
|
void backlight_led_on(uint8_t index);
|
||
|
|
||
|
void backlight_led_off(uint8_t index);
|
||
|
|
||
|
#endif
|