| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /**
- * @file furi_hal_light.h
- * Light control HAL API
- */
- #pragma once
- #include <stdbool.h>
- #include <stdint.h>
- #include <furi_hal_resources.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- /** Init light driver
- */
- void furi_hal_light_init();
- /** Set light value
- *
- * @param light Light
- * @param value light brightness [0-255]
- */
- void furi_hal_light_set(Light light, uint8_t value);
- /** Start hardware LED blinking mode
- *
- * @param light Light
- * @param brightness light brightness [0-255]
- * @param on_time LED on time in ms
- * @param period LED blink period in ms
- */
- void furi_hal_light_blink_start(Light light, uint8_t brightness, uint16_t on_time, uint16_t period);
- /** Stop hardware LED blinking mode
- */
- void furi_hal_light_blink_stop();
- /** Set color in hardware LED blinking mode
- *
- * @param light Light
- */
- void furi_hal_light_blink_set_color(Light light);
- /** Execute sequence
- *
- * @param sequence Sequence to execute
- */
- void furi_hal_light_sequence(const char* sequence);
- #ifdef __cplusplus
- }
- #endif
|