mirror of
https://github.com/silenty4ng/uv-k5-firmware-chinese-lts
synced 2025-01-15 14:54:40 +00:00
23 lines
399 B
C
23 lines
399 B
C
|
#ifndef APP_FLASHLIGHT_H
|
||
|
#define APP_FLASHLIGHT_H
|
||
|
|
||
|
#ifdef ENABLE_FLASHLIGHT
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
enum FlashlightMode_t {
|
||
|
FLASHLIGHT_OFF = 0,
|
||
|
FLASHLIGHT_ON,
|
||
|
FLASHLIGHT_BLINK,
|
||
|
FLASHLIGHT_SOS
|
||
|
};
|
||
|
|
||
|
extern enum FlashlightMode_t gFlashLightState;
|
||
|
extern volatile uint16_t gFlashLightBlinkCounter;
|
||
|
|
||
|
void FlashlightTimeSlice(void);
|
||
|
void ACTION_FlashLight(void);
|
||
|
|
||
|
#endif
|
||
|
|
||
|
#endif
|