forked from xiaozhi/xiaozhi-esp32
Fix SpiLcdDisplay
This commit is contained in:
@@ -34,7 +34,7 @@ static const sh8601_lcd_init_cmd_t vendor_specific_init[] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
// 在waveshare_amoled_1_8类之前添加新的显示类
|
// 在waveshare_amoled_1_8类之前添加新的显示类
|
||||||
class CustomLcdDisplay : public LcdDisplay {
|
class CustomLcdDisplay : public SpiLcdDisplay {
|
||||||
public:
|
public:
|
||||||
CustomLcdDisplay(esp_lcd_panel_io_handle_t io_handle,
|
CustomLcdDisplay(esp_lcd_panel_io_handle_t io_handle,
|
||||||
esp_lcd_panel_handle_t panel_handle,
|
esp_lcd_panel_handle_t panel_handle,
|
||||||
@@ -47,7 +47,7 @@ public:
|
|||||||
bool mirror_x,
|
bool mirror_x,
|
||||||
bool mirror_y,
|
bool mirror_y,
|
||||||
bool swap_xy)
|
bool swap_xy)
|
||||||
: LcdDisplay(io_handle, panel_handle, backlight_pin, backlight_output_invert,
|
: SpiLcdDisplay(io_handle, panel_handle, backlight_pin, backlight_output_invert,
|
||||||
width, height, offset_x, offset_y, mirror_x, mirror_y, swap_xy,
|
width, height, offset_x, offset_y, mirror_x, mirror_y, swap_xy,
|
||||||
{
|
{
|
||||||
.text_font = &font_puhui_30_4,
|
.text_font = &font_puhui_30_4,
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ LV_FONT_DECLARE(font_awesome_16_4);
|
|||||||
|
|
||||||
|
|
||||||
// 在waveshare_lcd_1_46类之前添加新的显示类
|
// 在waveshare_lcd_1_46类之前添加新的显示类
|
||||||
class CustomLcdDisplay : public LcdDisplay {
|
class CustomLcdDisplay : public SpiLcdDisplay {
|
||||||
public:
|
public:
|
||||||
static void rounder_event_cb(lv_event_t * e)
|
static void rounder_event_cb(lv_event_t * e)
|
||||||
{
|
{
|
||||||
@@ -48,7 +48,7 @@ public:
|
|||||||
bool mirror_x,
|
bool mirror_x,
|
||||||
bool mirror_y,
|
bool mirror_y,
|
||||||
bool swap_xy)
|
bool swap_xy)
|
||||||
: LcdDisplay(io_handle, panel_handle, backlight_pin, backlight_output_invert,
|
: SpiLcdDisplay(io_handle, panel_handle, backlight_pin, backlight_output_invert,
|
||||||
width, height, offset_x, offset_y, mirror_x, mirror_y, swap_xy,
|
width, height, offset_x, offset_y, mirror_x, mirror_y, swap_xy,
|
||||||
{
|
{
|
||||||
.text_font = &font_puhui_16_4,
|
.text_font = &font_puhui_16_4,
|
||||||
|
|||||||
@@ -19,12 +19,12 @@
|
|||||||
LV_FONT_DECLARE(font_puhui_16_4);
|
LV_FONT_DECLARE(font_puhui_16_4);
|
||||||
LV_FONT_DECLARE(font_awesome_16_4);
|
LV_FONT_DECLARE(font_awesome_16_4);
|
||||||
|
|
||||||
class NV3023Display : public LcdDisplay {
|
class NV3023Display : public SpiLcdDisplay {
|
||||||
public:
|
public:
|
||||||
NV3023Display(esp_lcd_panel_io_handle_t panel_io, esp_lcd_panel_handle_t panel,
|
NV3023Display(esp_lcd_panel_io_handle_t panel_io, esp_lcd_panel_handle_t panel,
|
||||||
gpio_num_t backlight_pin, bool backlight_output_invert,
|
gpio_num_t backlight_pin, bool backlight_output_invert,
|
||||||
int width, int height, int offset_x, int offset_y, bool mirror_x, bool mirror_y, bool swap_xy)
|
int width, int height, int offset_x, int offset_y, bool mirror_x, bool mirror_y, bool swap_xy)
|
||||||
: LcdDisplay(panel_io, panel, backlight_pin, backlight_output_invert,
|
: SpiLcdDisplay(panel_io, panel, backlight_pin, backlight_output_invert,
|
||||||
width, height, offset_x, offset_y, mirror_x, mirror_y, swap_xy,
|
width, height, offset_x, offset_y, mirror_x, mirror_y, swap_xy,
|
||||||
{
|
{
|
||||||
.text_font = &font_puhui_16_4,
|
.text_font = &font_puhui_16_4,
|
||||||
|
|||||||
@@ -21,12 +21,12 @@
|
|||||||
LV_FONT_DECLARE(font_puhui_16_4);
|
LV_FONT_DECLARE(font_puhui_16_4);
|
||||||
LV_FONT_DECLARE(font_awesome_16_4);
|
LV_FONT_DECLARE(font_awesome_16_4);
|
||||||
|
|
||||||
class GC9107Display : public LcdDisplay {
|
class GC9107Display : public SpiLcdDisplay {
|
||||||
public:
|
public:
|
||||||
GC9107Display(esp_lcd_panel_io_handle_t panel_io, esp_lcd_panel_handle_t panel,
|
GC9107Display(esp_lcd_panel_io_handle_t panel_io, esp_lcd_panel_handle_t panel,
|
||||||
gpio_num_t backlight_pin, bool backlight_output_invert,
|
gpio_num_t backlight_pin, bool backlight_output_invert,
|
||||||
int width, int height, int offset_x, int offset_y, bool mirror_x, bool mirror_y, bool swap_xy)
|
int width, int height, int offset_x, int offset_y, bool mirror_x, bool mirror_y, bool swap_xy)
|
||||||
: LcdDisplay(panel_io, panel, backlight_pin, backlight_output_invert,
|
: SpiLcdDisplay(panel_io, panel, backlight_pin, backlight_output_invert,
|
||||||
width, height, offset_x, offset_y, mirror_x, mirror_y, swap_xy,
|
width, height, offset_x, offset_y, mirror_x, mirror_y, swap_xy,
|
||||||
{
|
{
|
||||||
.text_font = &font_puhui_16_4,
|
.text_font = &font_puhui_16_4,
|
||||||
|
|||||||
@@ -22,12 +22,12 @@
|
|||||||
LV_FONT_DECLARE(font_puhui_16_4);
|
LV_FONT_DECLARE(font_puhui_16_4);
|
||||||
LV_FONT_DECLARE(font_awesome_16_4);
|
LV_FONT_DECLARE(font_awesome_16_4);
|
||||||
|
|
||||||
class GC9107Display : public LcdDisplay {
|
class GC9107Display : public SpiLcdDisplay {
|
||||||
public:
|
public:
|
||||||
GC9107Display(esp_lcd_panel_io_handle_t panel_io, esp_lcd_panel_handle_t panel,
|
GC9107Display(esp_lcd_panel_io_handle_t panel_io, esp_lcd_panel_handle_t panel,
|
||||||
gpio_num_t backlight_pin, bool backlight_output_invert,
|
gpio_num_t backlight_pin, bool backlight_output_invert,
|
||||||
int width, int height, int offset_x, int offset_y, bool mirror_x, bool mirror_y, bool swap_xy)
|
int width, int height, int offset_x, int offset_y, bool mirror_x, bool mirror_y, bool swap_xy)
|
||||||
: LcdDisplay(panel_io, panel, backlight_pin, backlight_output_invert,
|
: SpiLcdDisplay(panel_io, panel, backlight_pin, backlight_output_invert,
|
||||||
width, height, offset_x, offset_y, mirror_x, mirror_y, swap_xy,
|
width, height, offset_x, offset_y, mirror_x, mirror_y, swap_xy,
|
||||||
{
|
{
|
||||||
.text_font = &font_puhui_16_4,
|
.text_font = &font_puhui_16_4,
|
||||||
|
|||||||
@@ -20,12 +20,12 @@
|
|||||||
LV_FONT_DECLARE(font_puhui_16_4);
|
LV_FONT_DECLARE(font_puhui_16_4);
|
||||||
LV_FONT_DECLARE(font_awesome_16_4);
|
LV_FONT_DECLARE(font_awesome_16_4);
|
||||||
|
|
||||||
class NV3023Display : public LcdDisplay {
|
class NV3023Display : public SpiLcdDisplay {
|
||||||
public:
|
public:
|
||||||
NV3023Display(esp_lcd_panel_io_handle_t panel_io, esp_lcd_panel_handle_t panel,
|
NV3023Display(esp_lcd_panel_io_handle_t panel_io, esp_lcd_panel_handle_t panel,
|
||||||
gpio_num_t backlight_pin, bool backlight_output_invert,
|
gpio_num_t backlight_pin, bool backlight_output_invert,
|
||||||
int width, int height, int offset_x, int offset_y, bool mirror_x, bool mirror_y, bool swap_xy)
|
int width, int height, int offset_x, int offset_y, bool mirror_x, bool mirror_y, bool swap_xy)
|
||||||
: LcdDisplay(panel_io, panel, backlight_pin, backlight_output_invert,
|
: SpiLcdDisplay(panel_io, panel, backlight_pin, backlight_output_invert,
|
||||||
width, height, offset_x, offset_y, mirror_x, mirror_y, swap_xy,
|
width, height, offset_x, offset_y, mirror_x, mirror_y, swap_xy,
|
||||||
{
|
{
|
||||||
.text_font = &font_puhui_16_4,
|
.text_font = &font_puhui_16_4,
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ LV_FONT_DECLARE(font_puhui_20_4);
|
|||||||
LV_FONT_DECLARE(font_awesome_20_4);
|
LV_FONT_DECLARE(font_awesome_20_4);
|
||||||
|
|
||||||
|
|
||||||
class CustomLcdDisplay : public LcdDisplay {
|
class CustomLcdDisplay : public SpiLcdDisplay {
|
||||||
public:
|
public:
|
||||||
CustomLcdDisplay(esp_lcd_panel_io_handle_t io_handle,
|
CustomLcdDisplay(esp_lcd_panel_io_handle_t io_handle,
|
||||||
esp_lcd_panel_handle_t panel_handle,
|
esp_lcd_panel_handle_t panel_handle,
|
||||||
@@ -39,7 +39,7 @@ public:
|
|||||||
bool mirror_x,
|
bool mirror_x,
|
||||||
bool mirror_y,
|
bool mirror_y,
|
||||||
bool swap_xy)
|
bool swap_xy)
|
||||||
: LcdDisplay(io_handle, panel_handle, backlight_pin, backlight_output_invert,
|
: SpiLcdDisplay(io_handle, panel_handle, backlight_pin, backlight_output_invert,
|
||||||
width, height, offset_x, offset_y, mirror_x, mirror_y, swap_xy,
|
width, height, offset_x, offset_y, mirror_x, mirror_y, swap_xy,
|
||||||
{
|
{
|
||||||
.text_font = &font_puhui_20_4,
|
.text_font = &font_puhui_20_4,
|
||||||
|
|||||||
Reference in New Issue
Block a user