Files
odroid-power-mate/main/include/indicator.h
YoungSoo Shin 2dc5798b0a Apply modifications to mass-produced boards
- 3 channel power sensor ina3221
- io expander pca9557
- Some gpio moves
- ...

Signed-off-by: YoungSoo Shin <shinys000114@gmail.com>
2025-09-01 11:56:49 +09:00

29 lines
391 B
C

//
// Created by shinys on 25. 7. 29.
//
#ifndef LED_H
#define LED_H
enum blink_type
{
BLINK_SLOW = 0,
BLINK_FAST,
BLINK_DOUBLE,
BLINK_TRIPLE,
BLINK_SOLID,
BLINK_MAX,
};
enum blink_led
{
LED_RED = 0,
LED_BLU = 1,
LED_MAX,
};
void init_led(void);
void led_set(enum blink_led led, enum blink_type type);
void led_off(enum blink_led led);
#endif //LED_H