mirror of
https://github.com/78/xiaozhi-esp32.git
synced 2026-07-21 02:05:52 +00:00
* feat: migrate firmware to xiaozhi-fonts 2.0.0 * fix: restart scrolling subtitles on text change * docs: add AGENTS.md for project overview, architecture, rules, and commands - Introduced AGENTS.md to document the XiaoZhi voice-assistant firmware architecture, required rules for development, board configuration process, and validation steps. - Included detailed sections on project structure, commands for building and testing, and authoritative documentation references. * feat: finalize glyph push protocol * fix: remove stale emoji font include * build: use xiaozhi-fonts 2.0.0 * fix: decouple custom fonts from glyph push * refactor: improve wake word invocation handling - Introduced BeginWakeWordInvoke method to streamline the wake word processing flow. - Updated HandleWakeWordDetectedEvent to utilize the new method, ensuring proper state transitions and scheduling. - Enhanced error handling to prevent the device from getting stuck in the connecting state. - Refactored audio channel management to improve responsiveness during wake word detection. --------- Co-authored-by: Xiaoxia <terrence.huang@tenclass.com>
84 lines
2.7 KiB
C++
84 lines
2.7 KiB
C++
#ifndef LCD_DISPLAY_H
|
|
#define LCD_DISPLAY_H
|
|
|
|
#include "gif/lvgl_gif.h"
|
|
#include "lvgl_display.h"
|
|
|
|
#include <esp_lcd_panel_io.h>
|
|
#include <esp_lcd_panel_ops.h>
|
|
#include <atomic>
|
|
#include <memory>
|
|
|
|
#define PREVIEW_IMAGE_DURATION_MS 5000
|
|
|
|
class LcdDisplay : public LvglDisplay {
|
|
protected:
|
|
esp_lcd_panel_io_handle_t panel_io_ = nullptr;
|
|
esp_lcd_panel_handle_t panel_ = nullptr;
|
|
|
|
lv_draw_buf_t draw_buf_;
|
|
lv_obj_t* top_bar_ = nullptr;
|
|
lv_obj_t* status_bar_ = nullptr;
|
|
lv_obj_t* content_ = nullptr;
|
|
lv_obj_t* container_ = nullptr;
|
|
lv_obj_t* side_bar_ = nullptr;
|
|
lv_obj_t* bottom_bar_ = nullptr;
|
|
lv_obj_t* preview_image_ = nullptr;
|
|
lv_obj_t* emoji_label_ = nullptr;
|
|
lv_obj_t* emoji_image_ = nullptr;
|
|
std::unique_ptr<LvglGif> gif_controller_ = nullptr;
|
|
lv_obj_t* emoji_box_ = nullptr;
|
|
lv_obj_t* chat_message_label_ = nullptr;
|
|
esp_timer_handle_t preview_timer_ = nullptr;
|
|
std::unique_ptr<LvglImage> preview_image_cached_ = nullptr;
|
|
bool hide_subtitle_ = false; // Control whether to hide chat messages/subtitles
|
|
|
|
void InitializeLcdThemes();
|
|
virtual bool Lock(int timeout_ms = 0) override;
|
|
virtual void Unlock() override;
|
|
|
|
protected:
|
|
// Add protected constructor
|
|
LcdDisplay(esp_lcd_panel_io_handle_t panel_io, esp_lcd_panel_handle_t panel, int width,
|
|
int height);
|
|
|
|
public:
|
|
~LcdDisplay();
|
|
virtual void SetEmotion(const char* emotion) override;
|
|
virtual void SetChatMessage(const char* role, const char* content) override;
|
|
virtual void ClearChatMessages() override;
|
|
virtual void SetPreviewImage(std::unique_ptr<LvglImage> image) override;
|
|
virtual void SetupUI() override;
|
|
// Add theme switching function
|
|
virtual void SetTheme(Theme* theme) override;
|
|
|
|
// Set whether to hide chat messages/subtitles
|
|
void SetHideSubtitle(bool hide);
|
|
};
|
|
|
|
// SPI LCD display
|
|
class SpiLcdDisplay : public LcdDisplay {
|
|
public:
|
|
SpiLcdDisplay(esp_lcd_panel_io_handle_t panel_io, esp_lcd_panel_handle_t panel, int width,
|
|
int height, int offset_x, int offset_y, bool mirror_x, bool mirror_y,
|
|
bool swap_xy);
|
|
};
|
|
|
|
// RGB LCD display
|
|
class RgbLcdDisplay : public LcdDisplay {
|
|
public:
|
|
RgbLcdDisplay(esp_lcd_panel_io_handle_t panel_io, esp_lcd_panel_handle_t panel, int width,
|
|
int height, int offset_x, int offset_y, bool mirror_x, bool mirror_y,
|
|
bool swap_xy);
|
|
};
|
|
|
|
// MIPI LCD display
|
|
class MipiLcdDisplay : public LcdDisplay {
|
|
public:
|
|
MipiLcdDisplay(esp_lcd_panel_io_handle_t panel_io, esp_lcd_panel_handle_t panel, int width,
|
|
int height, int offset_x, int offset_y, bool mirror_x, bool mirror_y,
|
|
bool swap_xy);
|
|
};
|
|
|
|
#endif // LCD_DISPLAY_H
|