Waveshare ESP32-S3 ePaper 1.54G

Cased ESP32-S3 AIoT board with a 1.54" 4-color e-paper display, mic and speaker, SHTC3 sensor, RTC, microSD slot, and Li-ion battery management.

USB-C Native USB
Waveshare ESP32-S3 ePaper 1.54G board
53 × 39.8 mm
ESP32-S3
MCU
240MHz
clock
8MB
flash
512KB
SRAM
9· 5 ADC
GPIO
BLE 5.0+ WiFi
radio

Pinout

12 pins · 2.54 mm pitch
View:
Waveshare ESP32-S3 ePaper 1.54G pinout diagram
PinGPIOLabelsStatusCapabilitiesNotes
144RXDstrappinguartUART0 RX
247SDAstrappingi2cShared I2C bus with RTC, SHTC3 and ES8311
348SCLstrappingi2cShared I2C bus with RTC, SHTC3 and ES8311
4-GNDground-
5-3V3power-3.3V output from onboard MP1605 buck
6-VSYSpower-System supply rail (USB 5V or battery)
743TXDstrappinguartUART0 TX
820GP20USB_D+uartadcNative USB D+
919GP19USB_D-uartadcNative USB D-
103GP3strappingadc · touchAlso drives the green user LED (active low)
112GP2safeadc · touch
121GP1safeadc · touch

Start with these

2 pins with no boot or system involvement
GP2GP1

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
RXDU0RXD (GPIO44)Used for bootloader input (download mode via serial). If repurposed, you cannot use the default UART0 download mode for programming the chip.Other
TXDU0TXD (GPIO43)Used for bootloader output and UART console logs. If repurposed, you will lose the default serial output (and programming via UART0).Other
GP3GPIO3Sampled at reset to select JTAG interface (USB Serial/JTAG controller vs. external pins). Improper use can disable external JTAG or alter debug interface.Strapping

Only if you know the tricks

wired to flash or USB - expect a fight
PinLabelWhat to knowRole
SDASPICLK_PUsed only on variants with Octal SPI interface (e.g. ESP32-S3R16V) as part of the differential clock pair. On such chips it operates at 1.8 V and is reserved for the high-speed octal SPI clock, not for general GPIO use.Flash
SCLSPICLK_NUsed only on variants with Octal SPI interface, as the negative leg of the differential clock&. On such chips it operates at 1.8 V; it should be avoided for GPIO to prevent conflicts with the octal flash/PSRAM clock.Flash
GP20USB_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
GP19USB_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 (2.54 mm pitch), the Waveshare ESP32-S3 ePaper 1.54G exposes 9 GPIO plus GND , 3V3 and VSYS for power. For peripherals, I²C is mapped to SDA on…

Across 12 pins (2.54 mm pitch), the Waveshare ESP32-S3 ePaper 1.54G exposes 9 GPIO plus GND, 3V3 and VSYS for power.

For peripherals, I²C is mapped to SDA on GPIO47 and SCL on GPIO48.

On the analog side there are 5 ADC-capable pins for sensors and battery monitoring and 3 capacitive-touch inputs.

If you want zero surprises, GP2 and GP1 are free of any such role - the safest first picks. 3 of the exposed pins carry boot-time or system duties on the ESP32-S3 (RXD, TXD and GP3).

Guides & tutorials

Getting started

flash your first firmware in ~2 minutes
Tool:
1
Connect over USB
Native USB - no driver, no serial chip. 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 GPIO2 - swap for your board's LED pin if different.
Tools → Board settings Copy
Board:            Esp32s3 Dev
USB CDC On Boot:  Enabled
Flash Size:       8MB · QIO
Upload Speed:     921600

// blink
pinMode(2, OUTPUT);
digitalWrite(2, LOW);   // on (often inverted)
platformio.ini Copy
[env:waveshare-esp32-s3-epaper-1-54g]
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: esp32s3
  framework:
    type: esp-idf

# blink - GPIO2
output:
  - platform: gpio
    pin: 2
    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 1310720 B · data 327680 B · QIO

Good to know

board-specific quirks worth 60 seconds
The PWR button is a firmware power latch illustration
The PWR button is a firmware power latch
On battery there is no hardware power switch: the PWR button is sensed on GPIO18 and power is held by GPIO17 . Your firmware must drive GPIO17 HIGH early at boot, otherwise the board switches off the moment the button is released. A long press is whatever your firmware decides it is. In ESPHome, set a GPIO17 output to ON in on_boot at priority 600, and use gpio_hold_en() before deep sleep so the latch survives…

On battery there is no hardware power switch: the PWR button is sensed on GPIO18 and power is held by GPIO17. Your firmware must drive GPIO17 HIGH early at boot, otherwise the board switches off the moment the button is released. A long press is whatever your firmware decides it is.

In ESPHome, set a GPIO17 output to ON in on_boot at priority 600, and use gpio_hold_en() before deep sleep so the latch survives it. Our climate display tutorial has the full pattern.

Panel power on GPIO6 is inverted illustration
Panel power on GPIO6 is inverted

GPIO6 LOW powers the e-paper panel, HIGH cuts it. Cut panel power during deep sleep: the image persists with the panel unpowered, which is exactly what e-paper is for. Miss the inversion and you get a blank display and no error anywhere.

The busy pin (GPIO8) is also inverted on this panel: idle is HIGH, busy is LOW.

Full refresh takes about 20 seconds illustration
Full refresh takes about 20 seconds
The 4-color BWRY panel needs roughly 20 s for a full refresh (fast refresh about 15 s), flashing through its color cycle the whole time. Design for it: update rarely, never animate, and do not enter deep sleep mid-refresh or the panel is left in a half-drawn state. In ESPHome/LVGL set update_interval: never on the display, update_when_display_idle: false , animated: false on bars, and wait ~30 s after…

The 4-color BWRY panel needs roughly 20 s for a full refresh (fast refresh about 15 s), flashing through its color cycle the whole time. Design for it: update rarely, never animate, and do not enter deep sleep mid-refresh or the panel is left in a half-drawn state.

In ESPHome/LVGL set update_interval: never on the display, update_when_display_idle: false, animated: false on bars, and wait ~30 s after triggering a refresh before sleeping.

Specifications

ESP32-S3 · 53 × 39.8 mm
Compute
MCU
ESP32-S3
Clock
240 MHz
SRAM · Flash
512 KB · 8MB · 8MB (OPI) PSRAM
Radio
Wi-Fi
802.11 b/g/n
Bluetooth
5.0 LE
Antenna
Ceramic
I/O
GPIO · ADC
9 · 5
UART · I²C · SPI
3 · 2 · 4
PWM
8 channels
Power
USB
USB-C
Serial
Native (CDC)
Boot address
0x0
Display
Screen
ePaper · 1.54" · 200x200
Driver
-
Touch
No
Flashing
Upload · OTA
esptool_py · esp_ota
Flash · Boot mode
QIO · QIO
Sketch · Data
1.25 MB · 320 KB
39.8 mm53 mm
53 × 39.8 mm · pin pitch 2.54 mm
The Waveshare ESP32-S3 ePaper 1.54G uses esptool_py for firmware uploads, esp_ota for over-the-air (OTA) updates. Flash mode is QIO with QIO boot mode. The maximum sketch size is 1.25 MB with 320 KB available for data.

About this board

At its core is the ESP32-S3 - a dual-core Xtensa with vector extensions suited to AI workloads.

Expect to pay about $17.99 - less than the ~$30 most ESP32-S3 boards go for.

Only 9 GPIO are broken out, where most ESP32-S3 boards manage about 21 - worth checking the pinout covers what you need.

Onboard you'll find 8MB (OPI) PSRAM, an ePaper 1.54" 200x200 display, a microSD slot, a microphone, a speaker, a speaker connector (MX1.25 2PIN), an audio codec (ES8311), an amplifier (NS4150B), a PCF85063 RTC, an environmental sensor (SHTC3), battery charging (ETA6098) via GH1.25 2PIN, status LEDs (Charge, User (GPIO3)) and Boot/Power buttons.

It flashes over native USB - no serial-converter driver needed, which isn't a given among ESP32-S3 boards.

  • 4-color e-paper panel: red / yellow / black / white
  • Full refresh ~20 s, fast refresh ~15 s
  • ESP32-S3-PICO-1-N8R8 SiP - 8MB flash + 8MB PSRAM in-package
  • Battery voltage sensing on GPIO4 (ADC, 1/2 divider)
  • PWR button is a firmware-controlled power latch (GPIO18 sense, GPIO17 hold/cut)
  • Touch-panel FPC connector reserved on this variant (GPIO7 reset, GPIO21 interrupt)
  • Ships assembled in a snap-fit case; battery SKU includes a 3.7V Li-ion cell

FAQ

5 common questions
Why does the display take up to 20 seconds to refresh?
That's normal for the 4-color (G) e-paper panel - a full refresh takes about 20 s and the fast mode about 15 s. Color e-paper trades refresh speed for zero-power static display.
How do I switch the board on when it runs from the battery?
Press the PWR button on the side of the case. It works as a power latch - the button state is read on GPIO18 and firmware holds or cuts battery power via GPIO17, so your code can implement soft power-off.
Does the Waveshare ESP32-S3-ePaper-1.54G work with ESPHome?
Yes. The panel is driven by the epaper_spi component (model: Waveshare-1.54in-G), the SHTC3 sensor by shtcx, and the PCF85063 RTC has a native component. We published a complete battery-powered climate display config in our ESPHome tutorial.
How long does it run on battery?
Less than you would hope if you refresh often - in our test a 5-minute refresh cycle drained a small cell in under a day, because every wake costs 35-45 s of WiFi-connected uptime around the ~20 s panel refresh. Stretch the deep-sleep cycle to 30 minutes and the same hardware runs for days; the e-paper image persists with the panel completely unpowered between wakes, so slow cycles cost you nothing visually. Without deep sleep it is a matter of hours.
Can I use the GPIO pins for my own sensors?
Mostly through the onboard peripherals' spare capacity. The I2C bus (GPIO47/48) is exposed and shared with the RTC, SHTC3 and audio codec, so additional I2C devices are easy. Free GPIOs are limited because the display, audio, SD card and battery management consume most of the S3's pins; check the pinout table above before planning.

Where to buy

prices are typical street prices
Waveshare ESP32-S3 ePaper 1.54G
Waveshare ESP32-S3 ePaper 1.54G
$17.99per unit, typical

Resources

Similar boards