2023-08-30 16:21:18 +08:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2022-2023 ArtinChip Technology Co., Ltd.
|
|
|
|
|
* Authors: Ning Fang <ning.fang@artinchip.com>
|
|
|
|
|
*/
|
|
|
|
|
|
2024-01-27 08:47:24 +08:00
|
|
|
#ifndef LAUNCHER_UI_H
|
|
|
|
|
#define LAUNCHER_UI_H
|
2023-08-30 16:21:18 +08:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "lvgl.h"
|
|
|
|
|
#include "aic_ui.h"
|
|
|
|
|
|
2024-01-27 08:47:24 +08:00
|
|
|
// for screen size 480 x 272
|
|
|
|
|
void launcher_ui_init();
|
|
|
|
|
|
|
|
|
|
extern lv_obj_t *scr_launcher;
|
|
|
|
|
extern lv_obj_t *scr_camera;
|
2023-08-30 16:21:18 +08:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
} /*extern "C"*/
|
|
|
|
|
#endif
|
|
|
|
|
|
2024-01-27 08:47:24 +08:00
|
|
|
#endif //LAUNCHER_UI_H
|