/* * Copyright 2023 jacqueline * * SPDX-License-Identifier: GPL-3.0-only */ #pragma once #include #include #include #include "freertos/FreeRTOS.h" #include "freertos/task.h" #include "display.hpp" #include "relative_wheel.hpp" #include "themes.hpp" #include "touchwheel.hpp" namespace ui { auto StartLvgl(std::weak_ptr touch_wheel, std::weak_ptr display) -> void; } // namespace ui