mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 10:28:54 +00:00
35 lines
650 B
C
35 lines
650 B
C
/*
|
|
* Copyright (C) 2022-2024, ArtInChip Technology Co., Ltd
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Authors: Ning Fang <ning.fang@artinchip.com>
|
|
*/
|
|
|
|
#include <unistd.h>
|
|
#include <time.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <sys/time.h>
|
|
#include "lvgl.h"
|
|
#include "launcher_ui.h"
|
|
#include "launcher_screen.h"
|
|
#include "camera_screen.h"
|
|
#include "aic_ui.h"
|
|
|
|
lv_obj_t *scr_launcher;
|
|
lv_obj_t *scr_camera;
|
|
|
|
void launcher_ui_init()
|
|
{
|
|
scr_launcher = launcher_screen_init();
|
|
scr_camera = camera_screen_init();
|
|
|
|
lv_scr_load(scr_launcher);
|
|
}
|
|
|
|
void ui_init(void)
|
|
{
|
|
launcher_ui_init();
|
|
}
|