mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 21:13:16 +00:00
acc39a4bc0
* Api Symbols: replace asserts with checks * Api Symbols: replace asserts with checks part 2 * Update no args function signatures with void, to help compiler to track incorrect usage * More unavoidable void * Update PVS config and code to make it happy * Format sources * nfc: fix checks * dead code cleanup & include fixes Co-authored-by: gornekich <n.gorbadey@gmail.com> Co-authored-by: hedger <hedger@users.noreply.github.com> Co-authored-by: hedger <hedger@nanode.su>
54 lines
1.1 KiB
C
54 lines
1.1 KiB
C
/**
|
|
* @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(void);
|
|
|
|
/** 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(void);
|
|
|
|
/** 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
|