14 lines
275 B
C
14 lines
275 B
C
#ifndef LED_DISPLAY_H_
|
|
#define LED_DISPLAY_H_
|
|
|
|
/**** Includes ****/
|
|
#include <stdint.h>
|
|
|
|
/**** Public definitions ****/
|
|
|
|
/**** Public function declarations ****/
|
|
void LED_DSP_ShowImage(uint8_t image);
|
|
void LED_DSP_SetBrightness(uint8_t percent);
|
|
|
|
#endif /* LED_DISPLAY_H_ */
|