Skip to content

CrowPanel Advance 4.3inch Arduino Course V13

# CrowPanel Advance 4.3-Inch HMI ESP32-S3 Screen ### Arduino IDE Course Guide **800 x 480 IPS Touchscreen | ESP32-S3 | Arduino IDE | V1.3** ---

Product Model: CrowPanel-Advance-4.3-HMI-ESP32-S3-AI-Powered-IPS-Touch-Screen
Hardware Version: V1.3
Number of Lessons: 9 lessons: Lessons 1-7, Lesson 9, and Lesson 10
Development Platform: Arduino IDE + ESP32-S3
Learning Path: Environment setup -> timed serial output -> WiFi audio -> LVGL desk lamp interface -> SD image display -> sensors -> wireless communication -> microphone recording and playback

1. Course Overview

This course is designed for the CrowPanel Advance 4.3-Inch HMI ESP32-S3 Screen V1.3 and uses Arduino IDE as the development platform. The course starts with timed serial output verification, then gradually covers WiFi audio playback, the LVGL desk lamp control interface, SD card image slideshow, DHT20 temperature and humidity display, nRF24L01 communication, LoRaWAN AT command control, Zigbee light control, and microphone recording and playback.

The 4.3inch version uses an 800 x 480 IPS touchscreen and ESP32-S3. It is intended for AI HMI and smart touchscreen applications, and is suitable for learning large-screen human-machine interaction, audio playback, sensor acquisition, image display, and wireless module expansion development.

The course content and course links are shared by the 4.3-inch, 5.0-inch, and 7.0-inch screens. This guide focuses on the 4.3inch V1.3 version.

After completing this course, users will understand the basic development workflow for this screen on the Arduino platform and will be able to expand their own HMI applications based on large-format display, touch, audio, sensors, and wireless modules.

2. Preparation Before You Start

  • Hardware: CrowPanel Advance 4.3-Inch HMI ESP32-S3 Screen V1.3
  • USB Cable: Use a USB cable that supports data transfer
  • Development Software: Arduino IDE
  • Getting Started with Arduino IDE: https://www.elecrow.com/pub/wiki/arduino_advance.html
  • Development Board: ESP32S3 Dev Module
  • Flash Size: 16MB (128Mb)
  • PSRAM: OPI PSRAM
  • Partition Scheme: Huge APP (3MB No OTA/1MB SPIFFS)
  • Screen Resolution: 800 x 480

The board package must be esp32 by Espressif Systems version 3.3.8.

3. Library Version Requirements

The course documentation requires importing the library files needed for the course according to the instructions in Lesson 01, and keeping the library files consistent with the screen size. The 4.3 / 5.0 / 7.0-inch Arduino courses share the following libraries or components:

Library Import: Link to two ways to import third-party Arduino IDE libraries

Library / Component Version / Source Purpose
esp32 by Espressif Systems 3.3.8 ESP32-S3 Arduino Core, explicitly required for Lessons 01/03/09/10
lvgl 9.1.0 LVGL UI and SquareLine Studio exported projects
LovyanGFX 1.2.25 Arduino graphics display and RGB screen driver
TAMC_GT911 1.0.2 Touchscreen support library
ESP32-audioI2S-master 3.4.7 WiFi audio playback
RF24 1.6.1 nRF24L01 wireless communication
RadioLib 7.7.1 Wireless module support related to LoRaWAN AT command control
Crowbits_DHT20 Use the course-provided library files DHT20 temperature and humidity sensor
lv_conf.h Use the course-provided configuration file LVGL configuration file
ESP_I2S.h Built into Arduino-ESP32 3.3.8 Microphone recording and audio playback
Wire / SPI / FS / SD Built into Arduino / ESP32 Core I2C, SPI, file system, and SD card

Note: Use LVGL 9.1.0 for LVGL projects. When creating a project in SquareLine Studio, also select LVGL 9.1.0 and set the LVGL Include Path to lvgl.h.

4. ESP32S3_120M Notes

After installing the ESP32 board package, you need to replace the corresponding files in the ESP32 framework directory. Download the officially provided ESP32S3_120M files:

ESP32S3_120M file

Copy the files in the ESP32S3_120M folder to the corresponding idf-release_* directory of the Arduino ESP32 framework, and replace the existing files when prompted. The directory name changes with the ESP32 Core version. Use the actual directory for esp32 by Espressif Systems version 3.3.8 installed on your computer:

C:\Users\your-username\AppData\Local\Arduino15\packages\esp32\tools\esp32-arduino-libs\idf-release_*

1

ESP32S3_120M contains ESP32 framework files recompiled after enabling high-speed PSRAM communication mode. After replacement, the PSRAM frequency can be increased to 120 MHz, helping improve the display refresh performance of large screens and reduce flickering or jitter during operation.

5. Course Directory

Lesson Lesson Name Main Content
01 Timed Serial Output Timed serial output and upload verification
02 WiFi Audio Playback WiFi audio playback
03 LVGL Desk Lamp Interface LVGL desk lamp control interface
04 SD Image Slideshow SD card image slideshow display
05 DHT20 Temperature and Humidity DHT20 temperature and humidity display
06 nRF24L01 Communication nRF24L01 wireless communication
07 LoRaWAN AT Commands LoRaWAN AT command control
09 Zigbee Light Control Zigbee light control
10 Microphone Record Playback Microphone recording and playback

There is no Lesson 8 in this series. Study in the order of Lessons 1-7, Lesson 9, and Lesson 10.

Main Code Link: https://github.com/Elecrow-RD/CrowPanel-Advance-4.3-HMI-ESP32-S3-AI-Powered-IPS-Touch-Screen-800x480/tree/master/example/V1.1_and_V1.2_and_V1.3/Arduino

Lesson 01 | Timed Serial Output

Lesson Link: https://www.elecrow.com/wiki/4.3_5.0_7.0_Arduino-01-Timed_Serial_Output.html


Lesson 02 | WiFi Audio Playback

Lesson Link: https://www.elecrow.com/wiki/4.3_5.0_7.0_Arduino-02-WiFi_Audio_Playback.html


Lesson 03 | LVGL Desk Lamp Interface

Lesson Link: https://www.elecrow.com/wiki/4.3_5.0_7.0_Arduino-03-LVGL_Desk_Lamp_Interface.html


Lesson 04 | SD Image Slideshow

Lesson Link: https://www.elecrow.com/wiki/4.3_5.0_7.0_Arduino-04-SD_Image_Slideshow.html


Lesson 05 | DHT20 Temperature and Humidity

Lesson Link: https://www.elecrow.com/wiki/4.3_5.0_7.0_Arduino-05-DHT20_Temperature_and_Humidity.html


Lesson 06 | nRF24L01 Communication

Lesson Link: https://www.elecrow.com/wiki/4.3_5.0_7.0_Arduino-06-nRF24L01_Communication.html


Lesson 07 | LoRaWAN AT Commands

Lesson Link: https://www.elecrow.com/wiki/4.3_5.0_7.0_Arduino-07-LoRaWAN_AT_Commands.html


Lesson 09 | Zigbee Light Control

Lesson Link: https://www.elecrow.com/wiki/4.3_5.0_7.0_Arduino-09-Zigbee_Light_Control.html


Lesson 10 | Microphone Recording and Playback

Lesson Link: https://www.elecrow.com/wiki/4.3_5.0_7.0_Arduino-10-Microphone_Record_Playback.html


  1. Basic Verification: Complete Lesson 01 first to confirm that Arduino IDE, the board package, serial output, and program upload are working properly.
  2. Audio and Interface: Learn WiFi audio playback and the LVGL desk lamp control interface in Lessons 02-03.
  3. Peripheral Display: Learn SD card image display and DHT20 temperature and humidity data display in Lessons 04-05.
  4. Wireless Expansion: Learn nRF24L01 and LoRaWAN AT command control in Lessons 06-07.
  5. Application Expansion: Learn Zigbee light control and microphone recording and playback in Lessons 09-10.

**Start with serial verification, then gradually complete large-screen display, audio, sensor, and wireless communication functions to build a complete foundation for Arduino HMI applications.**