26 lines
544 B
C
26 lines
544 B
C
/*----------------------------------------------------------------------------
|
|
* Copyright (c) TJD Technologies Co., Ltd. 2024. All rights reserved.
|
|
*
|
|
* Description: TjdUiSettingInterface.h
|
|
*
|
|
* Author: luziquan@ss-tjd.com
|
|
*
|
|
* Create: 2024-11-19
|
|
*--------------------------------------------------------------------------*/
|
|
|
|
#ifndef TJD_UI_SETTING_INTERFACE_H
|
|
#define TJD_UI_SETTING_INTERFACE_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
uint8_t TjdInterfaceGetLcdBrightness(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif |