Estardyn 2.25 inch TFT

Estardyn 2.25-inch TFT LCD ST7789 Module User Manual

Model: 2.25 inch TFT

1. Introduction

This manual provides detailed instructions for the Estardyn 2.25-inch TFT LCD module, featuring the ST7789 driver IC. This compact, full-view color display utilizes a 4-wire SPI interface, making it suitable for a wide range of embedded applications requiring a small, vibrant screen.

Estardyn 2.25-inch TFT LCD module front and back view with key features
Figure 1: Front and back view of the Estardyn 2.25-inch TFT LCD module, highlighting its ST7789 IC, 76*284 resolution, 4-wire SPI interface, and 2.25-inch size.

2. Specifications

The following table outlines the key technical specifications of the 2.25-inch TFT LCD module:

Product parameters and pin definition for Estardyn 2.25-inch TFT LCD
Figure 2: Detailed product parameters and pin definitions for the LCD module.
FeatureDescription
Model Number2.25 inch TFT
TypeTFT
Brand NameEstardyn
OriginMainland China
Size2.25 inches
Resolution76*284 pixels
Display Mode76*284
Driver ICST7789
Interface4-wire SPI
Display ColorColorful
Power Supply2.8V ~ 3.3V
Operating Temperature-20°C ~ 70°C
Linking MethodCOG (Chip-on-Glass)
Screen Size (mm)17.9 * 62.5 * 2.36
Module Size (mm)21.08 * 73.15 * 3.56
Display Size (mm)14.797 * 55.295

3. Setup and Pin Definition

The module communicates via a 4-wire SPI interface. Proper connection to your microcontroller is crucial for correct operation. Refer to the pin definition table and the module's physical layout for wiring.

Top and bottom view of the LCD module showing FFC and pin labels
Figure 3: Top and bottom view of the LCD module, illustrating the flexible flat cable (FFC) connection and clearly labeled pin headers.

3.1 Pin Definition Table

PINSYMBOLDescription
1GNDGround connection
2VCCPower supply (2.8V - 3.3V)
3SCLSPI Clock Line
4SDASPI Data Line
5RSTReset Pin (Active Low)
6DCData/Command Selection (High for Data, Low for Command)
7CSChip Select (Active Low)
8BLBacklight Control (Typically High for ON)

3.2 Basic Wiring Diagram

Connect the module to your microcontroller as follows:

  • VCC to 3.3V power supply.
  • GND to Ground.
  • SCL to your microcontroller's SPI Clock (SCK) pin.
  • SDA to your microcontroller's SPI Data Out (MOSI) pin.
  • RST to a GPIO pin on your microcontroller.
  • DC to a GPIO pin on your microcontroller.
  • CS to a GPIO pin on your microcontroller.
  • BL to 3.3V for backlight ON, or a PWM-capable GPIO for brightness control.

Ensure all connections are secure and correctly oriented before applying power.

4. Operating Instructions

Operating the ST7789 display involves sending commands and data via the SPI interface. A typical operation sequence includes initialization, setting display parameters, and writing pixel data.

4.1 Initialization Sequence

After power-up, the display requires an initialization sequence to configure the ST7789 driver. This usually involves:

  1. Hardware Reset: Toggle the RST pin (low, then high).
  2. Software Reset: Send the software reset command (0x01).
  3. Sleep Out: Send the sleep out command (0x11).
  4. Color Mode: Set the pixel format (e.g., 16-bit or 18-bit color) using command 0x3A.
  5. Display On: Send the display on command (0x29).
  6. Other configurations: Set gamma, power control, etc., as per the ST7789 datasheet.

4.2 Displaying Graphics and Text

To display content, you typically follow these steps:

  1. Set Address Window: Define the rectangular area on the display where pixels will be written using commands 0x2A (Column Address Set) and 0x2B (Row Address Set).
  2. Write to GRAM: Send the Memory Write command (0x2C), then continuously send pixel data. Each pixel's color is typically represented by 2 bytes (16-bit color) or 3 bytes (18-bit color).
  3. Backlight Control: Ensure the BL pin is high to illuminate the display. For brightness control, use PWM on the BL pin if supported by your microcontroller.
Estardyn 2.25-inch TFT LCD module displaying a vibrant image
Figure 4: The 2.25-inch TFT LCD module in operation, displaying a colorful image.

5. Maintenance

To ensure the longevity and optimal performance of your LCD module, follow these maintenance guidelines:

  • Handling: Always handle the module by its edges. Avoid touching the display surface or the flexible flat cable (FFC) directly.
  • Static Discharge: LCD modules are sensitive to electrostatic discharge (ESD). Use appropriate ESD precautions (e.g., anti-static wrist strap, grounded workstation) when handling.
  • Cleaning: If the display surface becomes dirty, gently wipe it with a soft, lint-free cloth moistened with isopropyl alcohol or a specialized LCD cleaning solution. Do not use abrasive cleaners, solvents, or excessive pressure.
  • Storage: Store the module in its original packaging or an anti-static bag in a cool, dry place, away from direct sunlight and extreme temperatures.
  • Power Supply: Ensure the power supply voltage is within the specified range (2.8V - 3.3V). Over-voltage can permanently damage the module.

6. Troubleshooting

If you encounter issues with your Estardyn 2.25-inch TFT LCD module, refer to the following troubleshooting tips:

6.1 No Display / Blank Screen

  • Power Check: Verify that VCC and GND are correctly connected and receiving the specified voltage (2.8V - 3.3V).
  • Backlight: Ensure the BL pin is connected and receiving power (typically 3.3V) to turn on the backlight.
  • Connections: Double-check all SPI connections (SCL, SDA, CS, DC, RST) for continuity and correct pin assignment.
  • Initialization Code: Review your microcontroller code for the correct ST7789 initialization sequence. Incorrect commands or timing can prevent the display from starting.
  • Reset Pin: Ensure the RST pin is properly toggled during initialization.

6.2 Garbled or Incorrect Display

  • SPI Mode: Confirm that your microcontroller's SPI settings (clock polarity, phase) match the requirements of the ST7789 driver.
  • Data/Command Pin (DC): Ensure the DC pin is correctly switched between high (data) and low (command) when sending bytes.
  • Data Format: Verify that pixel data is sent in the correct color format (e.g., 16-bit RGB565) and byte order.
  • Address Window: Check if the column and row address set commands (0x2A, 0x2B) are correctly defining the display area.
  • Timing: Ensure sufficient delays between commands if required by the ST7789 datasheet.

6.3 Backlight Not Working

  • BL Pin Connection: Confirm the BL pin is connected to a power source (e.g., 3.3V) or a GPIO pin configured for output.
  • Code Control: If using PWM for brightness, ensure your code is correctly generating the PWM signal.

7. User Tips

  • Reference Datasheet: Always refer to the official ST7789 datasheet for the most accurate and detailed information on commands and registers.
  • Community Resources: Many online communities and forums (e.g., Arduino, Raspberry Pi forums) have extensive resources and code examples for ST7789-based displays. Searching for "ST7789 Arduino library" or "ST7789 Raspberry Pi Python" can provide valuable starting points.
  • Start Simple: Begin with basic initialization and displaying a single color or simple shape to confirm functionality before moving to complex graphics.

8. Warranty and Support

For any technical assistance or inquiries regarding the Estardyn 2.25-inch TFT LCD module, please contact your vendor or the Estardyn Flagship Store directly. Specific warranty terms may vary by region and retailer. Please retain your proof of purchase for warranty claims.

Related Documents - 2.25 inch TFT

Preview SZYTF 1.8/2.4 Inch TFT Display and EC11 Rotary Encoder Module
Technical specifications and features for the SZYTF integrated 1.8-inch and 2.4-inch TFT display module with an EC11 rotary encoder and independent key interface.
Preview 1.54-inch TFT LCD Capacitive Touch Screen Display Module Specification
Technical specifications, mechanical dimensions, and pinout definitions for the 1.54-inch 240x240 TFT LCD capacitive touch display module.
Preview Gaqqee LCD Display Module with Keypad Technical Specifications
Technical specifications and features for Gaqqee LCD display modules with integrated keypads, available in 0.96, 1.3, 1.44, and 1.8-inch sizes with SPI interface support.
Preview ESP32 WiFi Bluetooth Development Board with 2.8-inch TFT ST7789 Display
Comprehensive overview of the 2.8-inch ESP32 WiFi Bluetooth Development Board, featuring a ST7789 TFT display, dual-core 240MHz CPU, integrated WiFi 802.11b/g/n and Bluetooth 4.2, 520KB SRAM, multiple interfaces (UART, SPI, I2C, etc.), and power-saving modes. Includes detailed specifications, connection diagrams, and packing list.
Preview 2inch LCD Module with ST7789 SPI Interface - Technical Guide
Technical documentation and usage guide for the 2inch LCD Module with ST7789 controller, featuring SPI interface, 240x320 resolution, and compatibility with Raspberry Pi, STM32, and Arduino platforms.
Preview SmarElex 2.8-inch TFT LCD Display with Resistive Touch (ILI9341, SPI)
Comprehensive guide to the SmarElex 2.8-inch TFT LCD display module featuring the ILI9341 driver, 240x320 resolution, resistive touch (XPT2046), and SPI interface. Includes hardware connection details and Arduino demo code for embedded systems and DIY projects.

Ask a question about this manual

Ask about setup, troubleshooting, compatibility, parts, safety, or missing instructions. Manuals+ will review the question and use this page’s manual context to help answer it.