Legacy branch migration
This commit is contained in:
20
firmware/devices/led_display.c
Normal file
20
firmware/devices/led_display.c
Normal file
@@ -0,0 +1,20 @@
|
||||
/**** Includes ****/
|
||||
#include "hal/udccd_hal.h"
|
||||
#include "led_display.h"
|
||||
|
||||
/**** Private variables ****/
|
||||
|
||||
/**** Private function declarations ****/
|
||||
|
||||
/**** Public function definitions ****/
|
||||
void LED_DSP_ShowImage(uint8_t image)
|
||||
{
|
||||
HAL_LEDS_Set(image);
|
||||
}
|
||||
|
||||
void LED_DSP_SetBrightness(uint8_t percent)
|
||||
{
|
||||
HAL_LEDS_SetPWM(percent);
|
||||
}
|
||||
|
||||
/**** Private function definitions ****/
|
||||
Reference in New Issue
Block a user