CYD ESP32-8048S050

A CYD development board featuring a 5.0-inch display and ESP32-S3, suitable for HMI applications.

USB-C
CYD ESP32-8048S050 board
137 × 84 mm
ESP32-S3
MCU
240MHz
clock
16MB
flash
512KB
SRAM
9· Two 12-bit, 20 Channels ADC
GPIO
BLE 5.0+ WiFi
radio
On this page

Pinout

12 pins
View:
CYD ESP32-8048S050 pinout diagram
PinGPIOLabelsStatusCapabilitiesNotes
1-3V33.3Vpower-3.3V output on the P4 and P5 expansion connectors
2-5VVINpower-5V input on the P1 serial connector
3-GNDground-Ground - present on the P1, P4 and P5 connectors
411IO11MOSIGPIO11strappingspiP2 SPI connector - shared with the onboard microSD card (MOSI)
512IO12SCKGPIO12strappingspiP2 SPI connector - shared with the onboard microSD card (SCK)
613IO13MISOGPIO13strappingspiP2 SPI connector - shared with the onboard microSD card (MISO)
717IO17GPIO17safepwmP3, P4 and P5 connectors - carries I2S data to the onboard MAX98357 audio amplifier
818IO18GPIO18safepwmP3, P4 and P5 connectors - I2S word-select to the audio amp; also the GT911 touch INT (needs a hardware mod)
919IO19SDAGPIO19uarti2cP2 and P3 connectors - GT911 capacitive touch I2C SDA (also the native USB D- pin)
1020IO20SCLGPIO20uarti2cP3 connector - GT911 capacitive touch I2C SCL (also the native USB D+ pin)
1143IO43TXGPIO43strappinguartP1 serial connector - U0TXD, shared with the CH340C USB programming/serial
1244IO44RXGPIO44strappinguartP1 serial connector - U0RXD, shared with the CH340C USB programming/serial

Start with these

2 pins with no boot or system involvement
IO17GPIO17IO18GPIO18

Freely assignable - no strapping, flash, USB or JTAG duties. Ideal first picks for buttons, sensors and LEDs.

Fine - with a little care

sampled at boot or shared with debug/serial
PinLabelWhat to knowRole
IO43U0TXD (GPIO43)Used for bootloader output and UART console logs. If repurposed, you will lose the default serial output (and programming via UART0).Other
IO44U0RXD (GPIO44)Used for bootloader input (download mode via serial). If repurposed, you cannot use the default UART0 download mode for programming the chip.Other

Only if you know the tricks

wired to flash or USB - expect a fight
PinLabelWhat to knowRole
IO11FSPIDUsed as a data line for flash (and in-package PSRAM). It should not be used as GPIO when the flash/PSRAM is in use.Flash
IO12FSPICLKDrives the flash (and PSRAM) clock. This critical signal must be reserved for memory and not used as general GPIO.Flash
IO13FSPIQUsed as a data line for flash/PSRAM transfers. Not available for other uses when flash/PSRAM is connected.Flash
IO19USB_D-By default connected to the on-chip USB Serial/JTAG controller. Using it as general GPIO without reconfiguring IO MUX will interfere with USB functionality.USB
IO20USB_D+By default connected to the on-chip USB Serial/JTAG controller. Using it as general GPIO without reconfiguring IO MUX will interfere with USB functionality.USB
These are recommendations, not hard rules - with the right pull-ups, timing and boot-state awareness most pins can be made to work. When in doubt, start green.
Pinout notes Across 12 pins, the CYD ESP32-8048S050 exposes 9 GPIO plus 3V3 , 5V and GND for power. Peripheral wiring is straightforward: I²C is mapped to SDA on GPIO19 and…

Across 12 pins, the CYD ESP32-8048S050 exposes 9 GPIO plus 3V3, 5V and GND for power.

Peripheral wiring is straightforward: I²C is mapped to SDA on GPIO19 and SCL on GPIO20; the SPI bus (MOSI, MISO, SCK) is broken out in full; TX/RX on GPIO43 and GPIO44 cover serial logging and flashing.

Beyond plain digital I/O you get PWM on 2 pins.

2 of the exposed pins carry boot-time or system duties on the ESP32-S3 (IO43 and IO44) - check the guidance above before wiring anything to them. IO17 and IO18 are free of any such role - the safest first picks.

Getting started

flash your first firmware in ~2 minutes
Tool:
1
Connect over USB
Serial chip: CH340C. Not detected? Hold BOOT while plugging in.
2
Flash with your tool
Arduino IDE, PlatformIO, ESPHome or esptool - copy the settings on the right.
3
Verify it runs
The blink example uses GPIO17 - swap for your board's LED pin if different.
Tools → Board settings Copy
Board:            Cyd Esp32 8048s050
Flash Size:       16MB · DIO
Upload Speed:     921600

// blink
pinMode(17, OUTPUT);
digitalWrite(17, LOW);   // on (often inverted)
platformio.ini Copy
[env:cyd-esp32-8048s050]
platform = espressif32
board = esp32-s3-devkitc-1
framework = arduino
monitor_speed = 115200
upload_speed = 921600
device.yaml Copy
esp32:
  board: esp32-s3-devkitc-1
  variant: cyd_esp32_8048s050
  framework:
    type: esp-idf

# blink - GPIO17
output:
  - platform: gpio
    pin: 17
    id: led_out
light:
  - platform: binary
    name: "LED"
    output: led_out
shell Copy
esptool.py --chip esp32s3 --port /dev/ttyACM0 \
  write_flash 0x0 firmware.bin
Build details: sketch space 3145728 B · data 327680 B · DIO

Specifications

ESP32-S3 · 137 × 84 mm
Compute
MCU
ESP32-S3
Clock
240 MHz
SRAM · Flash
512 KB · 16MB · 8MB (OPI) PSRAM
Radio
Wi-Fi
802.11 b/g/n
Bluetooth
5.0 LE
Antenna
PCB
I/O
GPIO · ADC
9 · Two 12-bit, 20 Channels
UART · I²C · SPI
3 · 2 · 4
PWM
8 channels
Power
USB
USB-C
Serial
CH340C
Boot address
0x0
Display
Screen
IPS LCD · 5.0" · 800x480
Driver
ST7262
Touch
GT911
Flashing
Upload · OTA
esptool_py · esp_ota
Flash · Boot mode
DIO · QIO
Sketch · Data
3 MB · 320 KB
84 mm137 mm
137 × 84 mm
The CYD ESP32-8048S050 uses esptool_py for firmware uploads, esp_ota for over-the-air (OTA) updates. Flash mode is DIO with QIO boot mode. The maximum sketch size is 3 MB with 320 KB available for data.

About this board

Inside sits the ESP32-S3 - a dual-core Xtensa with vector extensions suited to AI workloads. Sibling CYD boards cover the ESP32-C3 and ESP32, so you can change radios or horsepower without changing the footprint.

At $34.00 it's on the expensive side for a CYD board - most land around $22.

Around the module: 8MB (OPI) PSRAM, an IPS LCD 5.0" 800x480 display with touch, a microSD slot, a speaker connector, an amplifier (MAX98357) and Reset/Boot buttons.

Where to buy

prices are typical street prices
CYD ESP32-8048S050
CYD ESP32-8048S050
$34.00per unit, typical

Resources

Similar boards

All Cyd boards →