Google Chat: zj734465502@gmail.com
+86-0755-88291180
sales01@spotpear.com
dragon_manager@163.com
services01@spotpear.com
manager01@spotpear.com
WhatsApp:13246739196
It is a low-cost, high-performance MCU board designed by Waveshare. Despite its compact size, it integrates a 2inch LCD, a lithium-ion battery charging chip, an IMU sensor, camera interface and various other peripherals on board for easy development and embedding into the product.
Parameter name | Parameter |
Interface | USB Type-A |
Controller chip | ESP32-S3 |
LCD type | ISP |
LCD controller chip | Display: ST7789T3 |
Onboard devices | TF |
ESP32-S3-LCD-2 currently provides two development tools and frameworks, Arduino IDE and ESP-IDF, providing flexible development options, you can choose the right development tool according to your project needs and personal habits.
Arduino IDEArduino IDE is an open source electronic prototyping platform, convenient and flexible, easy to get started. After a simple learning, you can start to develop quickly. At the same time, Arduino has a large global user community, providing an abundance of open source code, project examples and tutorials, as well as rich library resources, encapsulating complex functions, allowing developers to quickly implement various functions. | |
ESP-IDFESP-IDF, or full name Espressif IDE, is a professional development framework introduced by Espressif Technology for the ESP series chips. It is developed using the C language, including a compiler, debugger, and flashing tool, etc., and can be developed via the command lines or through an integrated development environment (such as Visual Studio Code with the Espressif IDF plugin). The plugin offers features such as code navigation, project management, and debugging, etc.. |
Each of these two development approaches has its own advantages, and developers can choose according to their needs and skill levels. Arduino are suitable for beginners and non-professionals because they are easy to learn and quick to get started. ESP-IDF is a better choice for developers with a professional background or high performance requirements, as it provides more advanced development tools and greater control capabilities for the development of complex projects.
This chapter introduces setting up the Arduino environment, including the Arduino IDE, management of ESP32 boards, installation of related libraries, program compilation and downloading, as well as testing demos. It aims to help users master the development board and facilitate secondary development.
Board name | Board installation requirement | Version number requirement |
---|---|---|
esp32 by Espressif Systems | "Install Offline" / "Install Online" | ≥3.0.0 |
..\ESP32-S3-LCD-2-Demo\Arduino\libraries
Library Name | Description | Version | Library Installation Requirement |
---|---|---|---|
lvgl | Graphical library | v8.4.0 | "Install Online" (requires copying the demos folder to src) |
GFX_Library_for_Arduino | LCD driver library | v1.5.0 | "Install Online" |
FastIMU | IUM driver library | v1.2.6 | "Install Online" |
OneButton | Button driver library | v2.6.1 | "Install Online" |
File
-> New Sketch
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
}
void loop() {
// put your main code here, to run repeatedly:
Serial.println("Hello, World!");
delay(2000);
}
File
-> Save As...
. In the pop-up menu, select the path to save the project, and enter a project name, such as Hello_World, click Save
①. Click to select the dropdown menu option Select Other Board and Port;
②. Search for the required development board model esp32s3 dev module and select;
③. Select COM Port;
④. Save the selection.
①. Compile the program; ②. Compile and download the program; ③. Download successful.
Demo | Basic Description | Dependency Library |
---|---|---|
01_factory | Comprehensive testing program | lvgl, GFX_Library_for_Arduino, FastIMU, OneButton |
02_gfx_helloworld | HelloWorld is displayed on the screen | GFX_Library_for_Arduino |
03_sd_card_test | Test TF card | -- |
04_qmi8658_output | Serial port prints QMI8658 data | FastIMU |
05_lvgl_qmi8658 | Use the LVGL library to display QMI8658 data | lvgl, FastIMU |
06_lvgl_battery | Use the LVGL library to display the battery voltage | lvgl, GFX_Library_for_Arduino |
07_lvgl_brightness | Use the LVGL library to control and display screen brightness | lvgl, GFX_Library_for_Arduino |
08_lvgl_example | lvgl demos | lvgl, GFX_Library_for_Arduino |
09_lvgl_camera | Use the LVGL library to display the camera images | lvgl, GFX_Library_for_Arduino |
10_camera_web_server | Display the camera images on the web page | -- |
【Demo description】
This demo tests the functionality of the ESP32-S3-LCD-2 onboard module, the information of each module will be displayed on the screen, and the user can switch between pages through the touch screen
【Hardware connection】
【Code analysis】
Serial.begin(115200); bsp_i2c_init(); //Initialize I2C bus, commonly used to connect sensors, displays, etc. bsp_lv_port_init(); //Initialize the LVGL graphics library port to output graphics to display devices such as LCD bsp_spi_init(); //Initialize SPI bus, commonly used for communication with sensors, external storage, screens, etc.
bsp_lv_port_run(); //Run LVGL-related drivers or loops, such as refreshing the display, etc. if (lvgl_lock(-1)) { //Lock LVGL resources to ensure they do not conflict with other tasks when updating the UI lvgl_ui_init(); //Initialize UI, possibly including layout and control settings lvgl_unlock(); //Unlock LVGL, allowing other tasks to access LVGL }
app_qmi8658_init(); //Initialize QMI8658 sensor (such as accelerometer, gyroscope, etc.) app_system_init(); //Perform system-level initialization, such as clock, memory, reset, etc app_camera_init(); //Initialize the camera module, prepare for image capture app_wifi_init(sta_ssid, sta_pass); //Initialize Wi-Fi module, connect to specified Wi-Fi network
app_qmi8658_run(); //Start QMI8658 sensor-related tasks, such as data acquisition, processing, etc. app_system_run(); //Start system tasks to ensure that system functions are running properly app_camera_run(); //Start camera-related tasks, usually to obtain image data and process or transmit it app_wifi_run(); //Start Wi-Fi related tasks, such as connection management, data transmission, etc.
【Result demonstration】
【Demo description】
This demo demonstrates the ESP32-S3-LCD-2 using the GFX_Library_for_Arduino library to drive the screen and display HelloWorld on the screen.
【Hardware connection】
【Code analysis】
Arduino_DataBus *bus = new Arduino_ESP32SPI( EXAMPLE_PIN_NUM_LCD_DC /* DC */, EXAMPLE_PIN_NUM_LCD_CS /* CS */, EXAMPLE_PIN_NUM_LCD_SCLK /* SCK */, EXAMPLE_PIN_NUM_LCD_MOSI /* MOSI */, EXAMPLE_PIN_NUM_LCD_MISO /* MISO */); /* More display class: https://github.com/moononournation/Arduino_GFX/wiki/Display-Class */ Arduino_GFX *gfx = new Arduino_ST7789( bus, EXAMPLE_PIN_NUM_LCD_RST /* RST */, EXAMPLE_LCD_ROTATION /* rotation */, true /* IPS */, EXAMPLE_LCD_H_RES /* width */, EXAMPLE_LCD_V_RES /* height */);
【Result demonstration】
【Demo description】
This demo demonstrates how to use ESP32-S3-LCD-2 to test the read and write functions of the TF card
【Hardware connection】
【Code analysis】
SPI.begin(sck, miso, mosi, cs); if (!SD.begin(cs)) { Serial.println("Card Mount Failed"); return; }
【Result demonstration】
【Demo description】
This demo demonstrates how to use ESP32-S3-LCD-2 to acquire QMI8658 data and print using serial port
【Hardware connection】
【Code analysis】
int err = IMU.init(calib, IMU_ADDRESS); if (err != 0) { Serial.print("Error initializing IMU: "); Serial.println(err); while (true) { ; } }
【Result demonstration】
【Demo description】
This demo demonstrates how to use ESP32-S3-LCD-2 to acquire QMI8658 data and display it using the lvgl library
【Hardware connection】
【Code analysis】
lvgl_qmi8658_ui_init(lv_scr_act());
【Result demonstration】
【Demo description】
This demo demonstrates how to use ESP32-S3-LCD-2 to display battery voltage and ADC values on the screen using the lvgl library
【Hardware connection】
【Code analysis】
lvgl_battery_ui_init(lv_scr_act());
【Result demonstration】
【Demo description】
This demo demonstrates how to use ESP32-S3-LCD-2 to display the screen brightness on the screen using the lvgl library, and the screen brightness can be controlled through the slider
【Hardware connection】
【Code analysis】
lvgl_brightness_ui_init(lv_scr_act());
【Result demonstration】
【Demo description】
This demo demonstrates how to use ESP32-S3-LCD-2 to run the lvgl demos
【Hardware connection】
【Precautions】
【Code analysis】
lv_demo_widgets(); // lv_demo_benchmark(); // lv_demo_keypad_encoder(); // lv_demo_music(); // lv_demo_stress();
【Result demonstration】
【Demo description】
This demo uses the LVGL library to display images captured from the camera on the ESP32-S3-LCD-2 screen
【Hardware connection】
【Code analysis】
xTaskCreatePinnedToCore(camera_task, "camera_task_task", 1024 * 3, NULL, 1, NULL, 0);
camera_fb_t *pic; lv_img_dsc_t img_dsc; img_dsc.header.always_zero = 0; img_dsc.header.w = 480; img_dsc.header.h = 320; img_dsc.data_size = 320 * 480 * 2; img_dsc.header.cf = LV_IMG_CF_TRUE_COLOR; img_dsc.data = NULL; // lv_img_set_src(img_camera, &pic); while (1) { pic = esp_camera_fb_get(); if (NULL != pic) { img_dsc.data = pic->buf; if (lvgl_lock(-1)) { lv_img_set_src(img_camera, &img_dsc); lvgl_unlock(); } } esp_camera_fb_return(pic); vTaskDelay(pdMS_TO_TICKS(1)); }
【Result demonstration】
【Demo description】
This demo demonstrates how to use ESP32-S3-LCD-2 to drive the camera. After connecting to WiFi, the program will create a web server, and users can access it by entering the device's IP address in the browser. Web pages can display images from cameras and support settings such as resolution and mirroring
【Hardware connection】
【Code analysis】
【Result demonstration】
This chapter introduces setting up the ESP-IDF environment setup, including the installation of Visual Studio and the Espressif IDF plugin, program compilation, downloading, and testing of demos, to assist users in mastering the development board and facilitating secondary development.
①Select the corresponding demo
②Its readme will state what chip the demo applies to (how to use the demo and the file structure are described below, omitted here)
③Click to create the demo
①.ESP-IDF Development Environment Version Manager, when our project requires differentiation of development environment versions, it can be managed by installing different versions of ESP-IDF. When the project uses a specific version, it can be switched to by utilizing it
②.Device flashing COM port, select to flash the compiled program into the chip
③.Select set-target chip model, select the corresponding chip model, for example, ESP32-P4-NANO needs to choose esp32p4 as the target chip
④.menuconfig, click it to Modify sdkconfig configuration file Project configuration details
⑤.fullclean button, when the project compilation error or other operations pollute the compiled content, you can clean up all the compiled content by clicking it
⑥.Build project, when a project satisfies the build, click this button to compile
⑦.Current download mode, the default is UART
⑧.flash button, when a project build is completed, select the COM port of the corresponding development board, and click this button to flash the compiled firmware to the chip
⑨.monitor enable flashing port monitoring, when a project passes through Build --> Flash, click this button to view the log of output from flashing port and debugging port, so as to observe whether the application works normally
⑩.Debug
⑪.Build Flash Monitor one-click button, which is used to continuously execute Build --> Flash --> Monitor, often referred to as "little flame"
CMakeLists.txt
.CMake
first reads the content of the top-level CMakeLists.txt
in the project directory to read the build rules and identify the content to be compiled. When the required components and demos are imported into the CMakeLists.txt
, the compilation tool CMake
will import each content that needs to be compiled according to the index. The compilation process is as follows:Demo | Basic Description |
---|---|
sd_card_test | Test TF card |
lvgl_example | Display lvgl demos |
lvgl_qmi8658 | Use lvgl library to display qmi8658 data |
lvgl_camera | Use lvgl library to display camera images |
lvgl_battery | Use lvgl library to display battery voltage |
lvgl_brightness | Use lvgl library to control and display screen brightness |
【Demo description】
This demo demonstrates how to use ESP32-S3-LCD-2 to test the read and write functions of the TF card.
【Hardware connection】
【Code analysis】
sdmmc_host_t host = SDSPI_HOST_DEFAULT(); spi_bus_config_t bus_cfg = { .mosi_io_num = PIN_NUM_MOSI, .miso_io_num = PIN_NUM_MISO, .sclk_io_num = PIN_NUM_CLK, .quadwp_io_num = -1, .quadhd_io_num = -1, .max_transfer_sz = 4000, }; ret = spi_bus_initialize(host.slot, &bus_cfg, SDSPI_DEFAULT_DMA); if (ret != ESP_OK) { ESP_LOGE(TAG, "Failed to initialize bus."); return; }
sdspi_device_config_t slot_config = SDSPI_DEVICE_CONFIG_DEFAULT(); slot_config.gpio_cs = PIN_NUM_CS; slot_config.host_id = host.slot; ESP_LOGI(TAG, "Mounting filesystem"); ret = esp_vfs_fat_sdspi_mount(mount_point, &host, &slot_config, &mount_config, &card);
【Result demonstration】
【Precautions】
【Demo description】
This demo demonstrates how to use ESP32-S3-LCD-2 to run the lvgl demos
【Hardware connection】
【Code analysis】
lv_init(); display_init(); lv_port_disp_init(); lvgl_tick_timer_init(EXAMPLE_LVGL_TICK_PERIOD_MS); bsp_brightness_init(); bsp_brightness_set_level(80);
lv_demo_widgets(); // lv_demo_benchmark(); // lv_demo_keypad_encoder(); // lv_demo_music(); // lv_demo_stress();
【Result demonstration】
【Demo description】
This demo demonstrates how to use ESP32-S3-LCD-2 to acquire QMI8658 data and display it using the lvgl library
【Hardware connection】
【Code analysis】
lvgl_qmi8658_ui_init(lv_scr_act());
【Result demonstration】
【Demo description】
This demo uses the LVGL library to display images captured from the camera on the ESP32-S3-LCD-2 screen
【Hardware connection】
【Code analysis】
xTaskCreatePinnedToCore(camera_task, "camera_task_task", 1024 * 3, NULL, 1, NULL, 0);
camera_fb_t *pic; lv_img_dsc_t img_dsc; img_dsc.header.always_zero = 0; img_dsc.header.w = 480; img_dsc.header.h = 320; img_dsc.data_size = 320 * 480 * 2; img_dsc.header.cf = LV_IMG_CF_TRUE_COLOR; img_dsc.data = NULL; // lv_img_set_src(img_camera, &pic); while (1) { pic = esp_camera_fb_get(); if (NULL != pic) { img_dsc.data = pic->buf; if (lvgl_lock(-1)) { lv_img_set_src(img_camera, &img_dsc); lvgl_unlock(); } } esp_camera_fb_return(pic); vTaskDelay(pdMS_TO_TICKS(1)); }
【Result demonstration】
【Demo description】
This demo demonstrates how to use ESP32-S3-LCD-2 to display battery voltage and ADC values on the screen using the lvgl library
【Hardware connection】
【Code analysis】
lvgl_battery_ui_init(lv_scr_act());
【Result demonstration】
【Demo description】
This demo demonstrates how to use ESP32-S3-LCD-2 to display the screen brightness on the screen using the lvgl library, and the screen brightness can be controlled through the slider
【Hardware connection】
【Code analysis】
lvgl_brightness_ui_init(lv_scr_act());
【Result demonstration】
..\ESP32-S3-LCD-2-Demo\Firmware
①View through Device Manager: Press the Windows + R keys to open the "Run" dialog box; input devmgmt.msc and press Enter to open the Device Manager; expand the "Ports (COM and LPT)" section, where all COM ports and their current statuses will be listed.
②Use the command prompt to view: Open the Command Prompt (CMD), enter the "mode" command, which will display status information for all COM ports.
③Check hardware connections: If you have already connected external devices to the COM port, the device usually occupies a port number, which can be determined by checking the connected hardware.
①Use the dmesg command to view: Open the terminal.
①Use the ls command to view: Enter ls /dev/ttyS* or ls /dev/ttyUSB* to list all serial port devices.
③Use the setserial command to view: Enter setserial -g /dev/ttyS* to view the configuration information of all serial port devices.
Monday-Friday (9:30-6:30) Saturday (9:30-5:30)
Email: services01@spotpear.com