Skip to main content

ESP32-S3-Touch-LCD-7C-BOX

ESP32-S3-Touch-LCD-7C-Onboard Resources

Product Introduction

Product Overview

This is a microcontroller development board designed by Waveshare, supporting 2.4GHz Wi-Fi and BLE 5, integrating Flash and PSRAM, and featuring an onboard 7inch capacitive touch LCD screen capable of running GUI programs such as LVGL. It provides a variety of peripheral interfaces for HMI and related application development with the ESP32-S3. The audio section offers both 3.5mm and MX1.25 audio connectors, with an onboard ES8389 audio codec and ES7210 audio capture chip for speaker output and microphone capture.

SKUProduct
34894ESP32-S3-Touch-LCD-7C-BOX

Features

  • Equipped with Xtensa 32-bit LX7 dual-core processor, main frequency up to 240MHz
  • Supports 2.4 GHz Wi-Fi (802.11 b/g/n) and Bluetooth 5 (LE) with an onboard antenna
  • Built-in 512KB SRAM and 384KB ROM, stacked with 32MB Flash and 16MB PSRAM
  • Onboard 7inch LCD capacitive touchscreen, 800 × 480 resolution, 65K colors
  • Supports I2C interface control for capacitive touch, with 5-point touch, and supports interrupts
  • Onboard ES8389 audio codec and ES7210 echo cancellation circuit
  • Onboard voltage regulator, supporting 7 ~ 36V wide-voltage power supply
  • Onboard RTC chip and battery holder, retaining time after power-off when a battery is installed
  • Onboard BQ27220 fuel gauge for real-time battery capacity monitoring
  • Onboard I2C interface, TF card slot, PH2.0 battery connector
  • Onboard LED indicators for power status, battery charging status, and a user-definable STA status LED
  • Supports flexible clock and independent power supply settings for precise control, enabling low-power modes in various scenarios

Onboard Resources

ESP32-S3-Touch-LCD-7C-Resource Introduction

ESP32-S3-Touch-LCD-7C-Resource Introduction

Interface Description

When using the ESP32-S3-Touch-LCD-7C, it's important to understand the hardware connections for different peripherals.

LCD Interface: Connector for the LCD cable (click to expand)
ESP32-S3LCDDescription
GPIO0G3Green data bit 3
GPIO1R3Red data bit 3
GPIO2R4Red data bit 4
GPIO3VSYNCVertical sync signal
GPIO5DEData enable signal
GPIO7PCLKPixel clock signal
GPIO8G6Green data bit 6
GPIO9G5Green data bit 5
GPIO10B7Blue data bit 7
GPIO14B3Blue data bit 3
GPIO17B6Blue data bit 6
GPIO18B5Blue data bit 5
GPIO21G7Green data bit 7
GPIO38B4Blue data bit 4
GPIO39G2Green data bit 2
GPIO40R7Red data bit 7
GPIO41R6Red data bit 6
GPIO42R5Red data bit 5
GPIO45G4Green data bit 4
GPIO46HSYNCHorizontal sync signal
IO EXTENSIONLCD-
EXIO0LCD_RSTLCD reset pin
EXIO2DISPBacklight enable pin
EXIO5LCD_VDD_ENVCOM voltage enable pin
Touch Interface: Connects to the touch cable (click to expand)
ESP32-S3TouchDescription
GPIO4CTP_IRQTouch interrupt pin
GPIO47TP_SDATouch data pin
GPIO48TP_SCLTouch clock pin
IO EXTENSIONTouch-
EXIO1CTP_RSTTouch reset pin
USB Interface: Used for power supply and flashing (click to expand)
ESP32-S3USBDescription
GPIO19USB_DNData line D-
GPIO20USB_DPData line D+
TF Card Interface: Connects to the TF card (click to expand)
ESP32-S3TFDescription
GPIO11MOSITF card input pin
GPIO12SCKTF card clock pin
GPIO13MISOTF card output pin
IO EXTENSIONTF-
EXIO4SD_CSTF card chip select pin, active low
I2C Interface: Connects to the I/O expander chip, touch interface, and external interfaces (click to expand)

The ESP32-S3 provides multiple hardware I2C buses. Currently, GPIO47 (SDA) and GPIO48 (SCL) are used as the I2C bus.

Peripherals such as the I/O expander chip and touch screen are connected via this I2C interface.

ESP32-S3I2CDescription
GPIO47SDAI2C data pin
GPIO48SCLI2C clock pin
I2S Interface: Audio data transmission (click to expand)

The ESP32-S3 provides an I2S peripheral. This product uses I2S to connect the onboard audio codec and audio capture chip. Pin definitions can be found in speaker_microphone.h.

The I2S interface enables speaker playback and microphone recording data transfer.

ESP32-S3I2SDescription
GPIO44I2S_SCLKI2S clock pin
GPIO6I2S_MCLKI2S master clock pin
GPIO16I2S_LCLKI2S left/right channel clock pin
GPIO15I2S_DOUTSpeaker playback data output
GPIO43I2S_DSINMicrophone input data
EXIO3PA_CTRLSpeaker enable pin

Dimensions

ESP32-S3-Touch-LCD-7C-Dimensions

Specifications

Screen Parameters

ItemSpecification
Resolution800 × 480
Display Color65K colors
Display InterfaceRGB
Display PanelIPS
Viewing Angle170°
Touch TypeCapacitive
Touch PanelTempered Glass

Peripheral Interfaces and Others

ItemSpecification
Communication InterfacesI2C, USB
Audio InterfacesMX1.25, 3.5mm
Product Dimensions (L×W)195.34 × 110.76mm

Development Methods

The ESP32-S3-Touch-LCD-7C supports two development frameworks: Arduino IDE and ESP-IDF, providing developers with flexible choices. You can select the appropriate development tool based on project requirements and personal preference.

Both development methods have their own advantages. Developers can choose based on their needs and skill levels. Arduino is simple to learn and quick to start, suitable for beginners and non-professionals. ESP-IDF provides more advanced development tools and stronger control capabilities, suitable for developers with professional backgrounds or higher performance requirements, and is more appropriate for complex project development.

  • Arduino IDE is a convenient, flexible, and easy-to-use open-source electronics prototyping platform. It requires minimal foundational knowledge, allowing for rapid development after a short learning period. Arduino has a huge global user community, providing a vast amount of open-source code, project examples, and tutorials, as well as a rich library ecosystem that encapsulates complex functions, enabling developers to implement various features rapidly. You can refer to the Working with Arduino to complete the initial setup, and the tutorial also provides related example programs for reference.

  • ESP-IDF, short for Espressif IoT Development Framework, is the development framework launched by Espressif Systems for its ESP series of chips. It is based on C language development and includes compilers, debuggers, flashing tools, etc. It supports development via command line or integrated development environments (such as Visual Studio Code with the Espressif IDF plugin), which provides features like code navigation, project management, and debugging. When developing with VS Code, refer to the Working with ESP-IDF for the specific configuration process, which also includes relevant example programs.