uv-k5-firmware-chinese-lts/app/flashlight.h

22 lines
378 B
C
Raw Permalink Normal View History

2023-12-07 03:39:09 +00:00
#ifndef APP_FLASHLIGHT_H
#define APP_FLASHLIGHT_H
#ifdef ENABLE_FLASHLIGHT
#include <stdint.h>
enum FlashlightMode_t {
FLASHLIGHT_OFF = 0,
FLASHLIGHT_ON,
2024-01-20 16:11:39 +00:00
FLASHLIGHT_BLINK
2023-12-07 03:39:09 +00:00
};
extern enum FlashlightMode_t gFlashLightState;
extern volatile uint16_t gFlashLightBlinkCounter;
void FlashlightTimeSlice(void);
void ACTION_FlashLight(void);
#endif
#endif