38 lines
628 B
C
38 lines
628 B
C
|
|
#ifndef GLOBALCOMPONENTS_H
|
|
#define GLOBALCOMPONENTS_H
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "lvgl.h"
|
|
#include "sdk.h"
|
|
|
|
extern lv_img_dsc_t const no_bluetooth_20x20;
|
|
|
|
extern lv_img_dsc_t const bluetooth_20x20;
|
|
|
|
extern lv_img_dsc_t const bluetooth_20x20;
|
|
|
|
extern lv_img_dsc_t const WIFI_20x20;
|
|
|
|
extern lv_img_dsc_t const battery_0_20x20;
|
|
|
|
extern lv_img_dsc_t const battery_1_20x20;
|
|
|
|
extern lv_img_dsc_t const battery_2_20x20;
|
|
|
|
extern lv_img_dsc_t const battery_20x20;
|
|
|
|
extern lv_font_t const lv_font_SourceHanSansSC_Normal_12;
|
|
|
|
|
|
lv_obj_t * lv_statusbar_create(lv_obj_t * parent);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|