58 lines
1.5 KiB
C++
Raw Normal View History

2025-02-15 10:11:49 -05:00
2025-02-14 15:02:49 -05:00
#include <esp_timer.h>
2025-02-15 18:26:26 -05:00
2025-02-14 15:02:49 -05:00
#include <lv_init.h>
2025-02-15 18:26:26 -05:00
2025-02-14 15:02:49 -05:00
#include <mutex>
2025-02-16 09:38:28 -05:00
#include "display.h"
// TODO: Remove this dependency by relocating SSD1306::oledb_buffer_
2025-02-16 09:38:28 -05:00
#include "ssd1306.h"
// Static TimeKeeper for managing ESP timers across all displays.
TimeKeeper Display::timers_;
2025-02-16 08:58:40 -05:00
2025-02-15 18:26:26 -05:00
Display::Display(IPanelDevice &device) :
panel_(device)
2025-02-14 15:02:49 -05:00
{
2025-02-14 17:47:44 -05:00
if (!lv_is_initialized()) {
ESP_LOGI(TAG, "Initialize LVGL");
lv_init();
}
2025-02-14 15:02:49 -05:00
2025-02-15 18:26:26 -05:00
ESP_LOGI(TAG, "Creating LVGL display");
2025-02-15 17:12:06 -05:00
lv_display_ = panel_.device_->create_display();
2025-02-14 15:02:49 -05:00
// associate the i2c panel handle to the display
2025-02-15 17:12:06 -05:00
lv_display_set_user_data(lv_display_, panel_.esp_panel_);
2025-02-15 14:04:08 -05:00
panel_.register_display_callbacks(lv_display_);
2025-02-14 15:02:49 -05:00
}
2025-02-14 17:19:13 -05:00
void Display::set_text(const char *text,
const char *name,
lv_label_long_mode_t long_mode,
lv_align_t align)
{
// Lock the mutex due to the LVGL APIs are not thread-safe.
ScopedLock lock;
ESP_LOGI(TAG, "Display LVGL Scroll Text");
2025-02-15 17:12:06 -05:00
lv_obj_t *scr = lv_display_get_screen_active(lv_display_);
2025-02-15 10:23:59 -05:00
// Create the label if it's `name` doesn't already exist in the map keys.
if (!lv_objects_.count(name)) {
lv_objects_[name] = lv_label_create(scr);
}
2025-02-15 18:26:26 -05:00
auto obj = lv_objects_[name];
// Circular scroll.
2025-02-15 10:23:59 -05:00
lv_label_set_long_mode(obj, long_mode);
lv_label_set_text(obj, text);
2025-02-14 17:19:13 -05:00
// Set the size of the screen.
// If you use rotation 90 or 270 use lv_display_get_vertical_resolution.
2025-02-15 17:12:06 -05:00
lv_obj_set_width(obj, lv_display_get_horizontal_resolution(lv_display_));
2025-02-15 10:23:59 -05:00
lv_obj_align(obj, align, 0, 0);
2025-02-14 17:19:13 -05:00
}