1
mirror of https://github.com/egzumer/uv-k5-firmware-custom.git synced 2025-12-12 04:34:31 +04:00
Files
uv-k5-firmware-custom/app/flashlight.h

23 lines
389 B
C
Raw Normal View History

2023-12-05 20:58:13 +01:00
#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