Espressif ESP32-C3-LCDKit

ESP32-C3 board with integrated display support - ideal for UI-centric IoT prototypes and HMI panels.

USB-C Native USB
Espressif ESP32-C3-LCDKit board
ESP32-C3
RISC-V MCU
160MHz
clock
4MB
flash
400KB
SRAM
22· 5 ADC
GPIO
BLE 5.0+ WiFi
radio
On this page

Pinout

22 pins
View:
Espressif ESP32-C3-LCDKit pinout diagram
PinGPIOLabelsStatusCapabilitiesNotes
10A0PWMsafeadc
21A1PWMsafeadc
32A2PWMstrappingadc
43A3PWMsafeadc
54A4PWMstrappingadc
65PWMstrapping-
76PWMstrapping-
87PWMstrapping-
98PWMstrapping-
109PWMstrapping-
1110PWMsafe-
1211PWMstrapping-
1312PWMstrapping-
1413PWMstrapping-
1514PWMstrapping-
1615PWMstrapping-
1716PWMstrapping-
1817PWMstrapping-
1918PWMuart-
2019PWMuart-
2120PWMuart-
2221PWMuart-

Start with these

4 pins with no boot or system involvement
A0PWMA1PWMA3PWMPWM

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
A2GPIO2Must be held high during boot (if low on reset, normal flash boot may fail)Strapping
A4MTMSUsed during boot; JTAG TMS for debugging; acts as Quad-SPI flash IO (hold data line) in internal-flash variantsJTAG
PWMMTDIUsed during boot; JTAG TDI for debugging; acts as Quad-SPI flash IO (write-protect data line) in internal-flash variantsJTAG
PWMMTCKUsed during boot; JTAG TCK for debugging; provides flash clock in internal-flash variantsJTAG
PWMMTDOUsed during boot; JTAG TDO for debugging; acts as Quad-SPI flash IO (data line) in internal-flash variantsJTAG
PWMGPIO8Must be held high during reset (if low, UART flashing/boot may not work)Strapping
PWMGPIO9Controls boot mode on reset (HIGH for normal flash boot, LOW enters serial download mode)Strapping
PWMU0RXDUsed as UART0 receive (console/bootloader); repurposing may disable serial programming and debug logsUART
PWMU0TXDUsed as UART0 transmit (console/bootloader); repurposing may disable serial console output and printingUART

Only if you know the tricks

wired to flash or USB - expect a fight
PinLabelWhat to knowRole
PWMVDD_SPIBy default powers the SPI flash; only configurable as GPIO if the flash is powered externally (not recommended otherwise)Flash
PWMSPIHDConnected to flash HOLD#; not recommended for other use as it’s reserved for flash communicationFlash
PWMSPIWPConnected to flash WP#; not recommended for other use (used to interface with SPI flash)Flash
PWMSPICS0Dedicated chip-select for SPI flash memory; cannot be repurposed for general I/OFlash
PWMSPICLKDedicated clock line for SPI flash; cannot be used as general GPIO without interfering with flashFlash
PWMSPIDUsed for SPI flash data transfer (data-out from flash); not available for other functionsFlash
PWMSPIQUsed for SPI flash data transfer (data-in to flash); not available for other functionsFlash
PWMUSB_D-By default connected to on-chip USB Serial/JTAG controller; to use as GPIO it must be reconfigured from its USB functionUSB
PWMUSB_D+By default connected to on-chip USB Serial/JTAG controller; not available for GPIO use unless USB functionality is disabled or remappedUSB
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 The Espressif ESP32-C3-LCDKit pinout brings out 22 GPIO pins - every one of them usable in your project. On the analog side there are 5 ADC-capable pins for…

The Espressif ESP32-C3-LCDKit pinout brings out 22 GPIO pins - every one of them usable in your project.

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

If you want zero surprises, A0, A1, A3 and PWM are free of any such role - the safest first picks. 9 of the exposed pins carry boot-time or system duties on the ESP32-C3 (A2, A4, PWM and 6 more).

Getting started

flash your first firmware in ~2 minutes
Tool:
1
Connect over USB
Native USB - shows up as a port right away, no driver needed. Not detected? Hold BOOT while plugging in.
2
Match & flash
Set the Tools options shown, then click Upload.
3
Verify it runs
The onboard LED on GPIO0 blinks - swap the pin if your board's LED differs.
Set these in Tools · leave everything else at default
Arduino IDE 2.x — Tools Copy
Board: "ESP32C3 Dev Module"
USB CDC On Boot: "Enabled"
Flash Size: "4MB (32Mb)"
Flash Mode: "DIO"
Partition Scheme: "Default 4MB with spiffs (1.2MB APP / 1.5MB SPIFFS)" (default)
Upload Speed: "921600"
▸ every other Tools option — leave at default
Board: ESP32C3 Dev Module
USB CDC On Boot: Enabled
Flash Size: 4MB (32Mb)
Flash Mode: DIO
Partition Scheme: Default 4MB with spiffs (1.2MB APP / 1.5MB SPIFFS)
Upload Speed: 921600
Find it: Tools ▸ Board ▸ ESP32 Arduino ▸ ESP32C3 Dev Module
blink.ino Copy
// blink the onboard LED
void setup() {
  pinMode(0, OUTPUT);
}
void loop() {
  digitalWrite(0, HIGH); delay(500);
  digitalWrite(0, LOW);  delay(500);
}
board to selectesp32-c3-devkitm-1⧉ copy
platformio.ini Copy
[env:esp32-c3-lcdkit]
platform = espressif32
board = esp32-c3-devkitm-1
framework = arduino
monitor_speed = 115200
upload_speed = 921600
Find it: PlatformIO Home ▸ Boards, search esp32-c3-devkitm-1 — or type it after board =.
board to selectesp32-c3-devkitm-1⧉ copy
device.yaml Copy
esp32:
  board: esp32-c3-devkitm-1
  variant: esp32_c3_lcdkit
  framework:
    type: esp-idf

# blink - GPIO0
output:
  - platform: gpio
    pin: 0
    id: led_out
light:
  - platform: binary
    name: "LED"
    output: led_out
Find it: search ESPHome's board list for esp32-c3-devkitm-1 (same ids as PlatformIO).
esptool doesn't pick board settings — a prebuilt .bin already has them baked in. This is just the raw flash command.
terminal Copy
esptool.py --chip esp32c3 --port /dev/ttyACM0 \
  --baud 921600 write_flash 0x0 firmware.bin
--port = your /dev/tty* (macOS/Linux) or COMx (Windows).
Build details: sketch space 1310720 B · data 327680 B · DIO

Specifications

ESP32-C3
Compute
MCU
ESP32-C3 · RISC-V
Clock
160 MHz
SRAM · Flash
400 KB · 4MB
Radio
Wi-Fi
802.11 b/g/n
Bluetooth
5.0 LE
Antenna
PCB
I/O
GPIO · ADC
22 · 5
UART · I²C · SPI
2 · 1 · 3
PWM
6 channels
Power
USB
USB-C
Serial
Native (CDC)
Boot address
0x0
Display
Screen
LCD · 1.28" · 240x240
Driver
GC9A01
Touch
No
Flashing
Upload · OTA
esptool_py · esp_ota
Flash · Boot mode
DIO · DIO
Sketch · Data
1.25 MB · 320 KB
The Espressif ESP32-C3-LCDKit uses esptool_py for firmware uploads, esp_ota for over-the-air (OTA) updates. Flash mode is DIO with DIO 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-C3 - a single-core RISC-V and the budget low-power pick.

Expect to pay about $19.00 - above the ~$10 typical for ESP32-C3 boards.

22 GPIO are broken out - more than most ESP32-C3 boards, so the pin budget is rarely the constraint.

Onboard you'll find an LCD 1.28" 240x240 display, a speaker, an amplifier (NS4150), an addressable RGB LED (GPIO8), an IR transceiver, a rotary encoder and Reset buttons.

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


The ESP32-C3-LCDKit is a development board designed for evaluating and verifying ESP32-C3 screen applications. It consists of a mainboard and a subboard, featuring a 1.28” LCD screen with SPI interface and 240x240 resolution. The mainboard integrates the ESP32-C3-MINI-1 module and provides ports for connection to the LCD subboard. Additional features include an RGB LED, speaker, rotary encoder switch, and infrared transmitter and receiver.

Where to buy

prices are typical street prices
Espressif ESP32-C3-LCDKit
Espressif ESP32-C3-LCDKit
$19.00per unit, typical
As an Amazon Associate, ESPboards earns from qualifying purchases.

Resources

Similar boards