/* * Copyright 2023 jacqueline * * SPDX-License-Identifier: GPL-3.0-only */ #include "lvgl_task.hpp" #include #include #include #include #include #include #include "core/lv_disp.h" #include "core/lv_group.h" #include "core/lv_indev.h" #include "core/lv_obj.h" #include "core/lv_obj_pos.h" #include "core/lv_obj_tree.h" #include "esp_log.h" #include "event_queue.hpp" #include "extra/themes/basic/lv_theme_basic.h" #include "font/lv_font.h" #include "freertos/portmacro.h" #include "freertos/projdefs.h" #include "freertos/timers.h" #include "hal/gpio_types.h" #include "hal/lv_hal_indev.h" #include "hal/spi_types.h" #include "lv_api_map.h" #include "lvgl/lvgl.h" #include "misc/lv_color.h" #include "misc/lv_style.h" #include "misc/lv_timer.h" #include "relative_wheel.hpp" #include "tasks.hpp" #include "touchwheel.hpp" #include "ui_fsm.hpp" #include "wheel_encoder.hpp" #include "widgets/lv_label.h" #include "display.hpp" #include "gpios.hpp" namespace ui { static const char* kTag = "lv_task"; void LvglMain(std::weak_ptr weak_touch_wheel, std::weak_ptr weak_display) { ESP_LOGI(kTag, "init lvgl"); lv_init(); lv_theme_t* base_theme = lv_theme_basic_init(NULL); lv_disp_set_theme(NULL, base_theme); static themes::Theme sTheme{}; sTheme.Apply(); TouchWheelEncoder encoder(weak_touch_wheel); std::shared_ptr current_screen; auto* events = events::queues::Ui(); while (1) { while (events->Service(0)) { } std::shared_ptr screen = UiState::current_screen(); if (screen != current_screen && screen != nullptr) { // TODO(jacqueline): animate this sometimes lv_scr_load(screen->root()); lv_indev_set_group(encoder.registration(), screen->group()); current_screen = screen; } if (current_screen) { current_screen->Tick(); } lv_task_handler(); // 30 FPS // TODO(jacqueline): make this dynamic vTaskDelay(pdMS_TO_TICKS(33)); } } auto StartLvgl(std::weak_ptr touch_wheel, std::weak_ptr display) -> void { tasks::StartPersistent( [=]() { LvglMain(touch_wheel, display); }); } } // namespace ui