ESP32在Arduino框架下采用SPI或8bit并口方式使用LVGL(v8.3)

这篇具有很好参考价值的文章主要介绍了ESP32在Arduino框架下采用SPI或8bit并口方式使用LVGL(v8.3)。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

效果展示

小相机,按一下能拍照,并将照片保存在sd卡中。

ESP32在Arduino框架下采用SPI或8bit并口方式使用LVGL(v8.3)

开发环境

使用的时VSCode+PlatformIO进行开发(强力推荐,用了就回不去了),当然也可以使用ArduinoIDE进行开发。
具体怎么使用上述软件,网上有很多答案,可以自行查找。
ESP-IDF移植教程:点击这里
使用到的库:TFT_eSPIlvgl
注:8bit并口方式为补充部分,在文章的结尾。

一、TFT_eSPI配置

添加该库到项目之后,首先进行编译,可能会出现找不到SPI.h文件的情况,但是该文件明明存在。
解决办法:在配置文件platformio.ini文件中加入lib_ldf_mode = deep+,问题得到解决。
配置文件内容如下所示

[env:pico32]
platform = espressif32
board = pico32
framework = arduino
lib_ldf_mode = deep+
lib_deps = 
	bodmer/TFT_eSPI@^2.4.75
	lvgl/lvgl@^8.3.1

然后在文件User_Setup.h中进行如下更改。

1、设置屏幕驱动

ESP32在Arduino框架下采用SPI或8bit并口方式使用LVGL(v8.3)

使用的屏幕如上图所示,需要将上述文件的第45行进行注释,打开第55行注释,如下图所示,注意上面有说明只能同时定义一个驱动。

// Only define one driver, the other ones must be commented out
//#define ILI9341_DRIVER       // Generic driver for common displays
//#define ILI9341_2_DRIVER     // Alternative ILI9341 driver, see https://github.com/Bodmer/TFT_eSPI/issues/1172
//#define ST7735_DRIVER      // Define additional parameters below for this display
//#define ILI9163_DRIVER     // Define additional parameters below for this display
//#define S6D02A1_DRIVER
//#define RPI_ILI9486_DRIVER // 20MHz maximum SPI
//#define HX8357D_DRIVER
//#define ILI9481_DRIVER
//#define ILI9486_DRIVER
//#define ILI9488_DRIVER     // WARNING: Do not connect ILI9488 display SDO to MISO if other devices share the SPI bus (TFT SDO does NOT tristate when CS is high)
#define ST7789_DRIVER      // Full configuration option, define additional parameters below for this display

2、设置屏幕尺寸

在程序的第83行下面更改屏幕尺寸,如下图所示。

// For ST7789, ST7735, ILI9163 and GC9A01 ONLY, define the pixel width and height in portrait orientation
// #define TFT_WIDTH  80
// #define TFT_WIDTH  128
// #define TFT_WIDTH  172 // ST7789 172 x 320
 #define TFT_WIDTH  240 // ST7789 240 x 240 and 240 x 320
 #define TFT_HEIGHT 280

3、定义ESP32引脚

可以使用硬件SPI也可以使用软件模拟SPI,只需要更改相应的引脚号即可
在文件的第203行下面定义ESP32引脚。
ESP32与屏幕链接引脚:

ESP32 屏幕
23 SDA
18 SCL
15 CS
2 DC
EN RST
自定义 BL
// For ESP32 Dev board (only tested with ILI9341 display)
// The hardware SPI can be mapped to any pins

//#define TFT_MISO 19
#define TFT_MOSI 23
#define TFT_SCLK 18
#define TFT_CS   15  // Chip select control pin
#define TFT_DC    2  // Data Command control pin
// #define TFT_RST   4  // Reset pin (could connect to RST pin)
#define TFT_RST  -1  // Set TFT_RST to -1 if display RESET is connected to ESP32 board RST

因为使用了LVGL中的文字,故TFT_eSPI提供的文字可以注释掉(约第304行),改成如下:。
ESP32在Arduino框架下采用SPI或8bit并口方式使用LVGL(v8.3)SPI_FREQUENCY根据自己的需要进行修改,此处设置为80000000

二、LVGL配置

LVGL官方链接:点击这里
操作步骤:
1、将lvgl库文件夹中的lv_conf_template.h复制粘贴到lvgl文件夹之外,并重命名为lv_conf.h
2、将第15行,#if 0 改为 #if 1 使能代码
3、更改该文件中的第27行,将LV_COLOR_DEPTH改为屏幕的色深值,本屏幕为16不做更改
4、将第88行#define LV_TICK_CUSTOM定义为1

三、Example测试

1、测试一

lvgl库中又demos和examples两个文件夹,这两个文件夹中的示例可以用来测试框架是否配置完毕。
操作步骤:
1、将examples文件夹复制到lvgl/src文件夹中(本测试并未使用example中的例子,小伙伴们可以自行测试),让该部分能够得到编译。
2、将examples/arduino文件夹中的示例LVGL_Arduino.ino中的内容,复制到main.cpp中,将main.cpp中原有内容全部覆盖,但要保留#include<Arduino.h>
3、此时文件会报错,将第10行#include <lv_demo.h>删除;第13、14行改为自己的屏幕尺寸(注意要和TFT_eSPi中设置的宽高保持一致)
4、此时依然报错,注释掉my_touchpad_read()函数,此外注释掉第93、94行代码uint16_t calData[5] = { 275, 3620, 264, 3532, 1 }; tft.setTouch( calData );
5、将文件中第115#if 0 改为#if 1,使能label代码,此时运行程序,得到如下结果。如果发现屏幕显示的方向不正确,可以调整第88行的tft.setRotation( 1 );数值0、1、2、3分别向不同的方向旋转。
ESP32在Arduino框架下采用SPI或8bit并口方式使用LVGL(v8.3)
修改后的完整示例代码如下:

#include<Arduino.h>
#include <lvgl.h>
#include <TFT_eSPI.h>
/*If you want to use the LVGL examples,
  make sure to install the lv_examples Arduino library
  and uncomment the following line.
#include <lv_examples.h>
*/



/*Change to your screen resolution*/
static const uint16_t screenWidth  = 280;
static const uint16_t screenHeight = 240;

static lv_disp_draw_buf_t draw_buf;
static lv_color_t buf[ screenHeight*screenWidth / 10 ];

TFT_eSPI tft = TFT_eSPI(screenWidth, screenHeight); /* TFT instance */

#if LV_USE_LOG != 0
/* Serial debugging */
void my_print(const char * buf)
{
    Serial.printf(buf);
    Serial.flush();
}
#endif

/* Display flushing */
void my_disp_flush( lv_disp_drv_t *disp, const lv_area_t *area, lv_color_t *color_p )
{
    uint32_t w = ( area->x2 - area->x1 + 1 );
    uint32_t h = ( area->y2 - area->y1 + 1 );

    tft.startWrite();
    tft.setAddrWindow( area->x1, area->y1, w, h );
    tft.pushColors( ( uint16_t * )&color_p->full, w * h, true );
    tft.endWrite();

    lv_disp_flush_ready( disp );
}

/*Read the touchpad*/
// void my_touchpad_read( lv_indev_drv_t * indev_driver, lv_indev_data_t * data )
// {
//     uint16_t touchX, touchY;

//     bool touched = tft.getTouch( &touchX, &touchY, 600 );

//     if( !touched )
//     {
//         data->state = LV_INDEV_STATE_REL;
//     }
//     else
//     {
//         data->state = LV_INDEV_STATE_PR;

//         /*Set the coordinates*/
//         data->point.x = touchX;
//         data->point.y = touchY;

//         Serial.print( "Data x " );
//         Serial.println( touchX );

//         Serial.print( "Data y " );
//         Serial.println( touchY );
//     }
// }

void setup()
{
    Serial.begin( 115200 ); /* prepare for possible serial debug */

    String LVGL_Arduino = "Hello Arduino! ";
    LVGL_Arduino += String('V') + lv_version_major() + "." + lv_version_minor() + "." + lv_version_patch();

    Serial.println( LVGL_Arduino );
    Serial.println( "I am LVGL_Arduino" );

    lv_init();

#if LV_USE_LOG != 0
    lv_log_register_print_cb( my_print ); /* register print function for debugging */
#endif

    tft.begin();          /* TFT init */
    tft.setRotation( 1 ); /* Landscape orientation, flipped */

    /*Set the touchscreen calibration data,
     the actual data for your display can be acquired using
     the Generic -> Touch_calibrate example from the TFT_eSPI library*/
    // uint16_t calData[5] = { 275, 3620, 264, 3532, 1 };
    // tft.setTouch( calData );

    lv_disp_draw_buf_init( &draw_buf, buf, NULL,screenHeight*screenWidth / 10 );

    /*Initialize the display*/
    static lv_disp_drv_t disp_drv;
    lv_disp_drv_init( &disp_drv );
    /*Change the following line to your display resolution*/
    disp_drv.hor_res = screenWidth;
    disp_drv.ver_res = screenHeight;
    disp_drv.flush_cb = my_disp_flush;
    disp_drv.draw_buf = &draw_buf;
    lv_disp_drv_register( &disp_drv );

    /*Initialize the (dummy) input device driver*/
    // static lv_indev_drv_t indev_drv;
    // lv_indev_drv_init( &indev_drv );
    // indev_drv.type = LV_INDEV_TYPE_POINTER;
    // indev_drv.read_cb = my_touchpad_read;
    // lv_indev_drv_register( &indev_drv );

#if 1
    /* Create simple label */
    lv_obj_t *label = lv_label_create( lv_scr_act() );
    lv_label_set_text( label, LVGL_Arduino.c_str() );
    lv_obj_align( label, LV_ALIGN_CENTER, 0, 0 );
#else
    /* Try an example from the lv_examples Arduino library
       make sure to include it as written above.
    lv_example_btn_1();
   */

    // uncomment one of these demos
    lv_demo_widgets();            // OK
    // lv_demo_benchmark();          // OK
    // lv_demo_keypad_encoder();     // works, but I haven't an encoder
    // lv_demo_music();              // NOK
    // lv_demo_printer();
    // lv_demo_stress();             // seems to be OK
#endif
    Serial.println( "Setup done" );
}

void loop()
{
    lv_timer_handler(); /* let the GUI do its work */
    delay( 5 );
}

2、测试二

从上面文件的第115行到第133行为屏幕显示内容的代码,那么来测试一下第120行后面的部分,操作步骤如下:
——————————————————————————————————————
1、将lvgl文件夹中的demos文件夹拷贝到lvgl/src文件夹中,使该部分代码得到编译,此时会报如下错误
.pio/libdeps/pico32/lvgl/src/demos/benchmark/assets/img_benchmark_cogwheel_rgb565a8.c:4:10: fatal error: lvgl/lvgl.h: No such file or directory
可以使用ctrl+鼠标左键点击该行错误,会在错误文件中定位到错误语句,也可找到该文件自行更改。
将改行(第4行)#include "lvgl/lvgl.h"改为#include "lvgl.h,再次编译即可通过。
——————————————————————————————————————
2、在main.cpp中引用#include<src/demos/lv_demos.h>
——————————————————————————————————————
2、将第115行#if 0 改为#if 1,打开下面的示例注释,例如打开lv_demo_benchmark(); (其它示例也是相同的操作步骤),此时编译会报错,
进入lv_demo_benchmark.c文件发现代码没有被使能,此时需要进入lv_conf.h文件中将第736行改为#define LV_USE_DEMO_BENCHMARK 1,此时lv_demo_benchmark.c文件中的代码才会被使能。编译下载运行结果如下图所示。
ESP32在Arduino框架下采用SPI或8bit并口方式使用LVGL(v8.3)

四、编写自己的UI界面

开发工具:点击这里
不同的版本操作基本一致,新建项目时需要填写屏幕大小和色深(16bit)
随后随便点击几个控件,拖拽来摆放。如下图所示。

ESP32在Arduino框架下采用SPI或8bit并口方式使用LVGL(v8.3)

然后点击Explort File,生成界面代码。如下图所示。将这几个文件中所有的#include "lvgl/lvgl.h"全部改为#include "lvgl.h"

ESP32在Arduino框架下采用SPI或8bit并口方式使用LVGL(v8.3)

将上述几个文件放在一个文件夹中,并将该文件夹放在libs文件夹下,结构如图所示。
ESP32在Arduino框架下采用SPI或8bit并口方式使用LVGL(v8.3)

在main.cpp中添加头文件#include<ui.h>,在下图所示位置添加ui_init()
ESP32在Arduino框架下采用SPI或8bit并口方式使用LVGL(v8.3)

运行结果如下图所示

ESP32在Arduino框架下采用SPI或8bit并口方式使用LVGL(v8.3)

遇到的问题

1、颜色不正确,需要结合两个文件三个部分的宏定义进行调整。文件为:TFT_eSPI的User_Setup.h和lv_conf.h.

//**************************TFT_eSPI的User_Setup.h文件中的内容*************************
//#define TFT_RGB_ORDER TFT_RGB  
#define TFT_RGB_ORDER TFT_BGR  

//#define TFT_INVERSION_ON
#define TFT_INVERSION_OFF

//**************************TFT_eSPI的User_Setup.h文件中的内容*************************
#define LV_COLOR_16_SWAP 0

2、屏幕有一部分花屏,这是应为屏幕的偏移量设置出现了问题,需要修改TFT_eSPI>>TFT_Drivers文件夹中相应屏幕文件中的偏移量。例如st7789相应文件中有如下内容。如果没有自己的屏幕尺寸,需要自己定义一个,修改偏移量即可。偏移量具体为多少,可以自行调整。

// 1.47" 172x320 Round Rectangle Color IPS TFT Display
#if (TFT_HEIGHT == 320) && (TFT_WIDTH == 172)
  #ifndef CGRAM_OFFSET
    #define CGRAM_OFFSET
  #endif
#endif

#if (TFT_HEIGHT == 320) && (TFT_WIDTH == 170)
  #ifndef CGRAM_OFFSET
    #define CGRAM_OFFSET
  #endif
#endif

五、8bit并口方式

使用普通spi方式,只适合小尺寸的屏幕,对于大尺寸的屏幕刷新速度太慢。所以可以采用其它接口的屏幕,这里使用的是8080接口的屏幕,该屏幕支持8bit、16bit方式,使用0欧电阻进行选择何种方式。由于ESP32的GPIO资源较少,所以采用8bit的方式。采用8bit方式刷新屏幕则使用高八位D[8:15]传输数据,不同厂家的屏幕可能有所不同。目前TFT_eSPI库测试了ILI9341和ILI9481的屏幕驱动,如果想使用该库,建议购买这两种驱动的屏幕。
1、修改TFT_eSPI库的User_Setup.h文件,设置屏幕驱动为ILI9341_DRIVER
2、修改第248行左右的内容为下图模样。
ESP32在Arduino框架下采用SPI或8bit并口方式使用LVGL(v8.3)3、其他内容同SPI方式一样,不需要做更改。
4、LVGL默认屏幕刷新周期为30ms,1000/30=33fps,如果想让屏幕刷新的更快可以在lv_conf.h中改变LV_DISP_DEF_REFR_PERIOD的值。
5、运行结果:
ESP32在Arduino框架下采用SPI或8bit并口方式使用LVGL(v8.3)

六、结语

lvgl的简单使用到此就结束了,有兴趣的还可以接着搞文件系统,中文显示等;然后结合Esp32的强大功能实现自己的小玩意。
大家有什么问题的话,欢迎提出问题。此外TFT_eSPI也支持了电子墨水屏的驱动,有兴趣的可以搞一搞。文章来源地址https://www.toymoban.com/news/detail-454422.html

到了这里,关于ESP32在Arduino框架下采用SPI或8bit并口方式使用LVGL(v8.3)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • ESP32 Arduino框架入门(二)外部中断和TouchPad(电容触摸引脚)

    接ESP32 Arduino框架入门(一)介绍和工程创建(8条消息) ESP32 Arduino框架入门(一)介绍和工程创建_长谷深风灯盏的博客-CSDN博客_arduino的esp32软件系统架构        接下来继续介绍ESP32-Wroom-32E的外部引脚、中断、定时器等部分内容         ESP32的外部引脚功能有ADC,GPIO,

    2024年02月10日
    浏览(41)
  • ESP32与Xbox手柄的UART通信测试,基于Arduino框架和pyserial+pygame

    这个项目的目标是实现使用手柄来控制ESP32。最近正在进行无人机项目,但是由于没有适合的遥控器来控制四轴,画板子也有些占用时间,所以比较有效的方法就是基于手头有的Xbox手柄来进行一个DIY,在手柄与ESP32之间建立串口通信。此处使用PC作为中继,可能速度有些慢,但

    2023年04月08日
    浏览(46)
  • YUV 8bit转10bit

    在有些场景中,我们经常会使用到YUV 8 bit转10bit的场景。 比如YUV420p 8bit 转 P010,P010le,YUV420p10le。 首先说ffmpeg 8 bit 转 10bit. 对于ffmpeg的P010le 和P010be 分别代表小端和大端,那么它转化的时候非常简单,就是8 bit再增加 8bit,后面的8bit全为0. 比如: 这是最简单的一种办法,所以如果

    2024年02月12日
    浏览(40)
  • 4bit/8bit 启动 Mixtral 8*7B 大语言模型

    个人电脑配置实在难以以 float16 运行 Mixtral 8*7B 大语言模型,所以参数 4bit 或者 8bit 来启动。 实际测试结果,4bit 时推理速度明显变快了,8bit 时推理也非常慢。 使用的推理框架时 fastchat。 修改前, 修改后, 完结!

    2024年01月18日
    浏览(42)
  • 用verilog 实现8bit数据的并串转换

    输入信号为8bit并行信号 该程序实现每8个时钟周期,便把收到的8bit并行信号拆解成串行信号并输出,等下8个时钟周期过后再转换下一个并行信号。 仿真图如下:

    2024年02月15日
    浏览(39)
  • FPGA的通用FIFO设计verilog,1024*8bit仿真,源码和视频

    名称:FIFO存储器设计1024*8bit 软件:Quartus 语言:Verilog 本代码为FIFO通用代码,其他深度和位宽可简单修改以下参数得到 代码功能: 设计一个基于FPGA的FIFO存储器,使之能提供以下功能  1.存储空间至少1024 储器  2.存储位宽8bit  3.拓展功能:存储器空、满报警 演示视频:http://

    2024年02月06日
    浏览(38)
  • Arduino ESP32开发环境搭建入门教程,esp32的arduino开发环境搭建教程,arduino导入eps32开发插件

    从官网下载 Arduino IDE 软件并安装。下载链接:Software | Arduino 网盘链接:链接:https://pan.baidu.com/s/1ZuSbo1BPy8XyyXzfl4KNzg?pwd=f8yd 提取码:f8yd 1、找到Arduino IDE安装目录,打开hardware文件夹。 2、在hardware文件夹中创建一个espressif文件夹。 3、将解压出的文件夹移动到espressif文件夹中,

    2024年02月13日
    浏览(53)
  • LLM - Model Load_in_8bit For LLaMA

      LLM 量化是将大语言模型进行压缩和优化以减少其计算和存储需求的过程。 博主在使用 LLaMA-33B 时尝试使用量化加载模型,用传统 API 参数控制量化失败,改用其他依赖尝试成功。这里先铺下结论: ◆ Load_in_8bit ✔️ ◆ Load_in_4bit ❌ 直接 load_in_8bit=True 报错: 下载 Accelerate 继续

    2024年02月04日
    浏览(38)
  • Arduino ESP32

    Arduino官网 1.下载Arduino IDE=SOFTWARE页面下载所需适配的操作系统(Windows, Linux, macOS)等; 其中Windows版本MSI installer是需要安装的。zip的解压即可运行不需要安装。 2.Arduino IDE中添加ESP32开发板软件包数据: Arduino IDE:文件首选项附加开发板管理器网址 中加入Arduino core for esp32的地

    2024年02月15日
    浏览(56)
  • ESP32 模拟键盘的简单操作 (ESP32 for Arduino)

    本来是以前做过的ESP32项目,但是想拿来用在别的项目上时发现找不到了。所以重新写一下这个项目,记录一下。 首先说明 :使用ArduinoIDE、模块型号为esp32-wroom-32。 库文件链接: 期间发现了好几个库,但是这个库选择的人比较多,就是用这个库。 Arduino 也有相类似的库,介

    2024年02月06日
    浏览(49)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包