---
product_id: 484340869
title: "LILYGO TTGO T4 V1.3 ILI9341 2.4 inch LCD Display Backlight Adjustment ESP32 Development Board TTGO Modul"
brand: "lilygo"
price: "VT7524"
currency: VUV
in_stock: true
reviews_count: 1
url: https://www.desertcart.vu/products/484340869-lilygo-ttgo-t4-v1-3-ili9341-2-4-inch-lcd
store_origin: VU
region: Vanuatu
---

# 4MB Flash 2.4" LCD 8MB PSRAM LILYGO TTGO T4 V1.3 ILI9341 2.4 inch LCD Display Backlight Adjustment ESP32 Development Board TTGO Modul

**Brand:** lilygo
**Price:** VT7524
**Availability:** ✅ In Stock

## Summary

> 🚀 Elevate Your Projects with LILYGOTTGO!

## Quick Answers

- **What is this?** LILYGO TTGO T4 V1.3 ILI9341 2.4 inch LCD Display Backlight Adjustment ESP32 Development Board TTGO Modul by lilygo
- **How much does it cost?** VT7524 with free shipping
- **Is it available?** Yes, in stock and ready to ship
- **Where can I buy it?** [www.desertcart.vu](https://www.desertcart.vu/products/484340869-lilygo-ttgo-t4-v1-3-ili9341-2-4-inch-lcd)

## Best For

- lilygo enthusiasts

## Why This Product

- Trusted lilygo brand quality
- Free international shipping included
- Worldwide delivery with tracking
- 15-day hassle-free returns

## Key Features

- • **Compact Powerhouse:** At just 2.6 x 1.7 x 0.47 inches, it packs a punch without taking up space.
- • **User-Friendly Design:** Onboard buttons for Boot and RST make it easy to navigate and control your projects.
- • **Seamless Connectivity:** Equipped with Bluetooth and Wi-Fi, this board ensures you stay connected and ahead of the curve.
- • **Unleash Your Creativity:** The T4 V1.3 empowers you with a vibrant 2.4-inch LCD display, perfect for your next innovative project.
- • **Explore Endless Possibilities:** Dive into the world of development with access to extensive resources on GitHub.

## Overview

The LILYGOTTGO T4 V1.3 is a cutting-edge ESP32 development board featuring a 2.4-inch LCD display, 4MB Flash memory, and 8MB PSRAM. Designed for tech enthusiasts and professionals alike, it offers seamless Bluetooth and Wi-Fi connectivity, compact dimensions, and user-friendly onboard functions, making it an ideal choice for innovative projects.

## Description

LILYGOTTGO T4 V1.3 ILI9341 2.4 inch LCD Display Backlight Adjustment ESP32 Development Board TTGO Modul

## Features

- - Flash:4MB , PSRAM:8MB.
- - Onboard functions: Buttons :Boot+RST, battery power detection.
- - T4 V1.3 development board is equipped with 2.4 inch LCD oversized Display .
- - More Information : github.com/Xinyuan-LilyGO/TTGO-T4-TestCode.
- - T4 V1.3 development board MUC is ESP32 chip, Provide you with display and WIFI bluetooth function.

## Technical Specifications

| Specification | Value |
|---------------|-------|
| Processor | 240 MHz |
| Wireless Type | Bluetooth |
| Brand | LILYGO |
| Product Dimensions | 2.6 x 1.7 x 0.47 inches |
| Item Dimensions  LxWxH | 2.6 x 1.7 x 0.47 inches |
| Number of Processors | 1 |
| Computer Memory Type | DIMM |
| Manufacturer | LILYGO |
| ASIN | B0BJV77547 |
| Country of Origin | China |
| Date First Available | October 20, 2022 |

## Images

![LILYGO TTGO T4 V1.3 ILI9341 2.4 inch LCD Display Backlight Adjustment ESP32 Development Board TTGO Modul - Image 1](https://m.media-amazon.com/images/I/51xWqtJRpLL.jpg)
![LILYGO TTGO T4 V1.3 ILI9341 2.4 inch LCD Display Backlight Adjustment ESP32 Development Board TTGO Modul - Image 2](https://m.media-amazon.com/images/I/418G3RbrH2L.jpg)
![LILYGO TTGO T4 V1.3 ILI9341 2.4 inch LCD Display Backlight Adjustment ESP32 Development Board TTGO Modul - Image 3](https://m.media-amazon.com/images/I/51+jaIRE3lL.jpg)
![LILYGO TTGO T4 V1.3 ILI9341 2.4 inch LCD Display Backlight Adjustment ESP32 Development Board TTGO Modul - Image 4](https://m.media-amazon.com/images/I/61vUdZ7Wg+L.jpg)
![LILYGO TTGO T4 V1.3 ILI9341 2.4 inch LCD Display Backlight Adjustment ESP32 Development Board TTGO Modul - Image 5](https://m.media-amazon.com/images/I/61uPDLYcXNL.jpg)

## Customer Reviews

### ⭐⭐⭐⭐⭐ 5.0 out of 5 stars







  
  
    Worked with micropython and nano-gui
  

*by G***Y on Reviewed in the United States on January 12, 2024*

This took more work than I should admit, but I managed to get this working with micropython and nano-gui. I used the micropython firmware for ESP32 / WROOM.One thing to keep and mind, and where I stumbled, is that this device's TFT has a backlight on it. If you're using the nano-gui demo libraries to test, you need to make sure and enable it.I used the following color_setup.py to get it to work.<<<from machine import Pin, SPIimport gc# *** Choose your color display driver here ***# ili9341 specific driverfrom drivers.ili93xx.ili9341 import ILI9341 as SSDTFT_MISO  = 12TFT_MOSI  = 23TFT_SCLK  = 18TFT_CS  = 27TFT_DC  = 32TFT_RST  = 5TFT_BL  = 4pdc = Pin(TFT_DC, Pin.OUT, value=0)  # Arbitrary pinspcs = Pin(TFT_CS, Pin.OUT, value=1)prst = Pin(TFT_RST, Pin.OUT, value=1)bl = Pin(TFT_BL, Pin.OUT, value=1) #Turn on Backlight# Kept as ssd to maintain compatabilitygc.collect()  # Precaution before instantiating framebufspi = SPI(1, 10_000_000, sck=Pin(TFT_SCLK), mosi=Pin(TFT_MOSI), miso=Pin(TFT_MISO))ssd = SSD(spi, dc=pdc, cs=pcs, rst=prst)>>>I was able to compile the stock Arduino code from their github and install it successfully while testing. The left button supposedly turns on a buzzer, but mine does not seem to have one. I didn't purchase it for that. The middle button will scan WiFi and it was able to see all the networks in the area. I did not put a microSD card into the slot to verify it works yet.

---

## Why Shop on Desertcart?

- 🛒 **Trusted by 1.3+ Million Shoppers** — Serving international shoppers since 2016
- 🌍 **Shop Globally** — Access 737+ million products across 21 categories
- 💰 **No Hidden Fees** — All customs, duties, and taxes included in the price
- 🔄 **15-Day Free Returns** — Hassle-free returns (30 days for PRO members)
- 🔒 **Secure Payments** — Trusted payment options with buyer protection
- ⭐ **TrustPilot Rated 4.5/5** — Based on 8,000+ happy customer reviews

**Shop now:** [https://www.desertcart.vu/products/484340869-lilygo-ttgo-t4-v1-3-ili9341-2-4-inch-lcd](https://www.desertcart.vu/products/484340869-lilygo-ttgo-t4-v1-3-ili9341-2-4-inch-lcd)

---

*Product available on Desertcart Vanuatu*
*Store origin: VU*
*Last updated: 2026-05-12*