diff options
Diffstat (limited to 'r503.h')
| -rw-r--r-- | r503.h | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -3,6 +3,16 @@ #include <stdint.h> +typedef enum { + RED = 0x01, + BLUE = 0x02, + PURPLE = 0x03 +} FPM_LED_COLOR; + uint8_t fpm_init(void); +void fpm_led_on(FPM_LED_COLOR color); + +void fpm_led_off(void); + #endif /* FPM_R50_H */ |
