* Hardware LED blinking notification messages * Blink: fix crash on exit, reset blinking on exit * Lib: remove unused UNUSED Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.0 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();
 | 
						|
 | 
						|
/** 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
 |