This commit is contained in:
刘可亮
2024-06-04 19:00:30 +08:00
parent 990c72f5be
commit 0a13af6a1d
1668 changed files with 342810 additions and 37726 deletions

View File

@@ -0,0 +1,22 @@
/*
* Copyright (C) 2023-2024 ArtinChip Technology Co., Ltd.
* 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 "slide_ui.h"
#include "hor_slide_screen.h"
#include "aic_ui.h"
lv_obj_t *scr_slide = NULL;
void slide_ui_init()
{
scr_slide = hor_screen_init();
lv_scr_load(scr_slide);
}