mirror of
https://github.com/rvtr/twl_mcu.git
synced 2025-06-18 14:45:41 -04:00
29 lines
516 B
C
29 lines
516 B
C
#ifndef __LEDS_H__
|
|
#define __LEDS_H__
|
|
|
|
void tsk_power_led();
|
|
static void power_led_status_watch_awake();
|
|
static void power_led_status_watch_sleep();
|
|
static void power_led_gradation();
|
|
void led_pwm_GR_grad();
|
|
void set_powLED_mode();
|
|
|
|
void tsk_wifi_led();
|
|
void trig_to_sleep_wifiLed();
|
|
void trig_to_wake_wifiLed();
|
|
|
|
|
|
void set_camled();
|
|
void set_camled_stop();
|
|
void tsk_cam_led();
|
|
|
|
typedef enum camLed_mode_{
|
|
camLed_off,
|
|
camLed_on,
|
|
camLed_blink,
|
|
camLed_def_on
|
|
}camLed_mode;
|
|
|
|
|
|
#endif
|