mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 10:28:54 +00:00
30 lines
496 B
C
30 lines
496 B
C
/*
|
|
* Copyright (C) 2022-2024, ArtInChip Technology Co., Ltd
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Authors: Ning Fang <ning.fang@artinchip.com>
|
|
*/
|
|
|
|
#ifndef LAUNCHER_UI_H
|
|
#define LAUNCHER_UI_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include "lvgl.h"
|
|
#include "aic_ui.h"
|
|
|
|
// for screen size 480 x 272
|
|
void launcher_ui_init();
|
|
|
|
extern lv_obj_t *scr_launcher;
|
|
extern lv_obj_t *scr_camera;
|
|
|
|
#ifdef __cplusplus
|
|
} /*extern "C"*/
|
|
#endif
|
|
|
|
#endif //LAUNCHER_UI_H
|