LilyGo TTGO T-Display 1.14 Inch LCD ESP32

ESP32 dev board with built-in 1.14" color display - perfect for dashboards, wearables, and visual IoT interfaces.

USB-C
LilyGo TTGO T-Display 1.14 Inch LCD ESP32 board
51.52 × 25.04 mm
ESP32
MCU
240MHz
clock
4MB
flash
520KB
SRAM
16· 13 ADC
GPIO
BLE 4.2+ WiFi
radio
On this page

Pinout

24 pins · 2.54 mm pitch
View:
LilyGo TTGO T-Display 1.14 Inch LCD ESP32 pinout diagram
PinGPIOLabelsStatusCapabilitiesNotes
1-GNDground-Left header; ground
2-GNDground-Left header; ground
321GPIO21SDAsafepwm · i2cLeft header; default I2C SDA (10k pull-up fitted on board)
422GPIO22SCLsafepwm · i2cLeft header; default I2C SCL (10k pull-up fitted on board)
517GPIO17strappingpwmLeft header; free GPIO (UART2 TX capable)
62GPIO2T2strappingadc · touch · pwmLeft header; strapping pin, ADC2_CH2 / Touch2
715GPIO15T3strappingadc · touch · pwmLeft header; strapping pin, ADC2_CH3 / Touch3
813GPIO13T4strappingadc · touch · pwmLeft header; ADC2_CH4 / Touch4
912GPIO12T5strappingadc · touch · pwmLeft header; strapping pin (hold low at boot), ADC2_CH5 / Touch5
10-GNDground-Left header; ground
11-GNDground-Left header; ground
12-3V33.3Vpower-Left header; 3.3V output
13-3V33.3Vpower-Right header; 3.3V output
1436GPIO36SVPstrappingadcRight header; input-only, ADC1_CH0 (SENSOR_VP); 270pF cap to GPIO37
1537GPIO37strappingadcRight header; input-only, ADC1_CH1; 270pF cap to GPIO36
1638GPIO38strappingadcRight header; input-only, ADC1_CH2; 270pF cap to GPIO39
1739GPIO39SVNstrappingadcRight header; input-only, ADC1_CH3 (SENSOR_VN); 270pF cap to GPIO38
1832GPIO32T9safeadc · touch · pwmRight header; ADC1_CH4 / Touch9
1933GPIO33T8safeadc · touch · pwmRight header; ADC1_CH5 / Touch8
2025GPIO25DAC1safeadc · pwm · dacRight header; DAC1 / ADC2_CH8
2126GPIO26DAC2safeadc · pwm · dacRight header; DAC2 / ADC2_CH9
2227GPIO27T7safeadc · touch · pwmRight header; ADC2_CH7 / Touch7
23-GNDground-Right header; ground
24-5VVINpower-Right header; 5V from USB / VIN

Start with these

7 pins with no boot or system involvement
GPIO21SDAGPIO22SCLGPIO32T9GPIO33T8GPIO25DAC1GPIO26DAC2GPIO27T7

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
GPIO2GPIO2If driven HIGH on reset (while IO0 is LOW), selects an unsupported SDIO boot mode, causing boot failure.Strapping
GPIO15MTDO (GPIO15)Keep HIGH during boot (internal PU); if LOW on reset, bootloader log is silenced and boot mode may change.Strapping
GPIO13MTCK (GPIO13)Used for JTAG debugging (TCK); avoid using as GPIO if JTAG is needed.Other
GPIO12MTDI (GPIO12)Keep LOW during boot (internal PD); pulling HIGH at reset selects 1.8V flash mode, causing flash brownout if 3.3V flash is used.Strapping
GPIO36GPIO36 (SENSOR_VP)Cannot be used as output; only suitable for input (e.g., analog read).Other
GPIO37GPIO37 (SENSOR_CAPP)Cannot be used as output; only suitable for input.Other
GPIO38GPIO38 (SENSOR_CAPN)Cannot be used as output; only suitable for input.Other
GPIO39GPIO39 (SENSOR_VN)Cannot be used as output; only suitable for input.Other

Only if you know the tricks

wired to flash or USB - expect a fight
PinLabelWhat to knowRole
GPIO17GPIO17Connected to internal PSRAM on PSRAM-enabled modules; not usable as GPIO on those modules.Flash
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 LilyGo TTGO T-Display 1.14 Inch LCD ESP32 pinout brings out 24 pins at a 2.54 mm pitch - 16 usable GPIO alongside the GND , 3V3 and 5V power rails.…

The LilyGo TTGO T-Display 1.14 Inch LCD ESP32 pinout brings out 24 pins at a 2.54 mm pitch - 16 usable GPIO alongside the GND, 3V3 and 5V power rails.

Peripheral wiring is straightforward: I²C is mapped to SDA on GPIO21 and SCL on GPIO22.

Beyond plain digital I/O you get 13 ADC-capable pins for sensors and battery monitoring, PWM on 12 pins, 7 capacitive-touch inputs and 2 true DAC outputs.

8 of the exposed pins carry boot-time or system duties on the ESP32 (GPIO2, GPIO15, GPIO13 and 5 more) - check the guidance above before wiring anything to them. GPIO21, GPIO22, GPIO32, GPIO33 and 3 more are free of any such role - the safest first picks.

Getting started

flash your first firmware in ~2 minutes
Tool:
1
Connect over USB
Install your USB-serial driver (CH340 / CP210x) if no port appears. 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 GPIO21 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: "ESP32 Dev Module"
Flash Size: "4MB (32Mb)"
Flash Mode: "QIO"
Partition Scheme: "Default 4MB with spiffs (1.2MB APP / 1.5MB SPIFFS)" (default)
Upload Speed: "921600"
▸ every other Tools option — leave at default
Board: ESP32 Dev Module
Flash Size: 4MB (32Mb)
Flash Mode: QIO
Partition Scheme: Default 4MB with spiffs (1.2MB APP / 1.5MB SPIFFS)
Upload Speed: 921600
Find it: Tools ▸ Board ▸ ESP32 Arduino ▸ ESP32 Dev Module
blink.ino Copy
// blink the onboard LED
void setup() {
  pinMode(21, OUTPUT);
}
void loop() {
  digitalWrite(21, HIGH); delay(500);
  digitalWrite(21, LOW);  delay(500);
}
board to selectesp32dev⧉ copy
platformio.ini Copy
[env:lilygo_ttgo_t_display_1_14]
platform = espressif32
board = esp32dev
framework = arduino
monitor_speed = 115200
upload_speed = 921600
Find it: PlatformIO Home ▸ Boards, search esp32dev — or type it after board =.
board to selectesp32dev⧉ copy
device.yaml Copy
esp32:
  board: esp32dev
  variant: lilygo_ttgo_t_display_1_14
  framework:
    type: esp-idf

# blink - GPIO21
output:
  - platform: gpio
    pin: 21
    id: led_out
light:
  - platform: binary
    name: "LED"
    output: led_out
Find it: search ESPHome's board list for esp32dev (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 esp32 --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 · QIO

Specifications

ESP32 · 51.52 × 25.04 mm
Compute
MCU
ESP32
Clock
240 MHz
SRAM · Flash
520 KB · 4MB
Radio
Wi-Fi
802.11 b/g/n
Bluetooth
4.2 LE
Antenna
PCB
I/O
GPIO · ADC
16 · 13
UART · I²C · SPI
3 · 2 · 4
PWM
16 channels
Power
USB
USB-C
Serial
CH9102F
Boot address
0x1000
Display
Screen
LCD · 1.14" · 240x135
Driver
ST7789
Touch
No
Flashing
Upload · OTA
esptool_py · esp_ota
Flash · Boot mode
QIO · QIO
Sketch · Data
1.25 MB · 320 KB
25.04 mm51.52 mm
51.52 × 25.04 mm · pin pitch 2.54 mm
The LilyGo TTGO T-Display 1.14 Inch LCD ESP32 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

Inside sits the ESP32 - a dual-core Xtensa with both Bluetooth Classic and BLE.

At $15.99 it's cheaper than most ESP32 boards, which usually run around $20.

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

Around the module: an LCD 1.14" 240x135 display, battery charging (TP4054) via JST 1.25 and Reset/IO0/IO35 buttons.


The LilyGo TTGO T-Display 1.14 Inch LCD ESP32 is a compact development board featuring an ESP32 microcontroller with integrated WiFi and Bluetooth capabilities. It includes a 1.14-inch LCD driven by an ST7789 controller, offering a vibrant display for graphical applications.

With support for WiFi 802.11 b/g/n and Bluetooth 4.2, this board is ideal for IoT and embedded display projects. It also includes 4MB Flash and 520KB SRAM for versatile applications.

Where to buy

prices are typical street prices
LilyGo TTGO T-Display 1.14 Inch LCD ESP32
LilyGo TTGO T-Display 1.14 Inch LCD ESP32
$15.99per unit, typical

Resources

Similar boards