Files

21 lines
371 B
C
Raw Permalink Normal View History

2026-05-12 10:10:00 +08:00
/*
* SPDX-FileCopyrightText: 2026 M5Stack Technology CO LTD
*
* SPDX-License-Identifier: MIT
*/
2026-03-25 11:53:49 +08:00
#ifndef UI_H
#define UI_H
#include "esp_log.h"
#include "lvgl.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "ui_setup_screen.h"
#include "ui_running_screen.h"
#include "ui_imu_screen.h"
void ui_init();
void switch_screen(int screen_id);
#endif