GODIYMODULES ST7789

Uživatelská příručka k GODIYMODULES 1.54 palcovému IPS TFT displeji s rozlišením 240x240 ST7789

1. Úvod

This manual provides comprehensive instructions for the GODIYMODULES 1.54 Inch Full Color TFT Display Module, featuring an HD IPS LCD LED screen with a 240x240 resolution and an ST7789 controller. Designed for integration with microcontrollers such as Arduino, ESP32, Raspberry Pi, 8051, PIC, and AVR, this module utilizes a Serial Peripheral Interface (SPI) for communication. This document covers product overview, setup, wiring, operation, specifications, troubleshooting, and maintenance to ensure proper use and functionality.

GODIYMODULES 1.54 Inch TFT Display Module with header pins

Obrázek 1: Přední strana view of the 1.54-inch TFT display module, showing the screen and the included male header pins for connection.

2. Konec produktuview

2.1 Klíčové vlastnosti

  • Typ displeje: 1.54-inch Full Color TFT IPS LCD
  • Rezoluce: 240x240 pixelů
  • Controller IC: ST7789
  • Rozhraní: Serial Peripheral Interface (SPI)
  • Kompatibilita: Designed for use with various Microcontroller Units (MCUs) including Arduino, ESP32, Raspberry Pi, 8051, PIC, and AVR.
  • Kvalita zobrazení: HD IPS panel for superior viewúhly a zářivé barvy.

2.2 Součásti zahrnuté v balení

  • 1 x GODIYMODULES 1.54 Inch TFT Display Module
  • 1 x Male Header Pin Strip (for soldering)

3. Nastavení a zapojení

The 1.54-inch TFT display module communicates via SPI. Proper wiring is essential for correct operation. The module requires soldering the included header pins before use.

3.1 Popis pinoutu

Back of GODIYMODULES 1.54 Inch TFT Display Module showing driver IC and pin labels

Obrázek 2: Zadní view of the display module circuit board, detailing the ST7789 driver IC and connection pins.

Table 1: Display Module Pinout
Pin štítekPopis
GNDZemní spojení.
VCCPower supply (typically 3.3V or 5V, refer to MCU specifications).
SCLSerial Clock (SPI Clock).
SDASerial Data (SPI MOSI - Master Out Slave In).
RESReset pin.
DCData/Command selection pin.
CSChip Select pin.
BLKBacklight control (can be left unconnected if not used).

3.2 Wiring Diagram for Arduino

Below is a typical wiring configuration for connecting the display module to an Arduino board. Note that specific pin assignments may vary slightly depending on the Arduino model (e.g., Uno, Nano, ESP32). Always consult your MCU's documentation for hardware SPI pins.

Wiring diagram for 1.54 Inch TFT Display Module with MCU and Arduino pin assignments

Figure 3: Wiring diagram showing connections between an MCU (e.g., Arduino) and the 1.54-inch TFT display module.

Tabulka 2: Přample Arduino Wiring (Arduino Nano/Uno)
Displej PinArduino PinPoznámky
GNDGNDSpolečná půda.
VCC5VPower supply for the module.
SCLD13 (SCK)SPI Clock pin.
SDAD11 (MOSI)SPI Master Out Slave In pin.
RESD8Digital pin for Reset.
DCD9Digital pin for Data/Command selection.
CSD10Digital pin for Chip Select.
BLK(Volitelný)Can be left unconnected or connected to a digital pin for backlight control.

Poznámka: The silkscreen labels on the module for SCL and SDA refer to SPI communication, not I2C. Do not confuse them with I2C pins (e.g., A4 & A5 on some Arduinos).

4. Návod k obsluze

To operate the display module, you will typically use a compatible library for your chosen microcontroller. For Arduino, libraries such as Adafruit GFX Library and Adafruit ST7789 Library are commonly used.

4.1 Software Setup (Arduino Example)

  1. Instalace knihoven: Open your Arduino IDE. Go to Skica > Zahrnout knihovnu > Spravovat knihovny... Hledat "Adafruit GFX" and "Adafruit ST7789" and install them.
  2. Include Headers: In your Arduino sketch, include the necessary headers:
    #include <Adafruit_GFX.h>
    #include <Adafruit_ST7789.h>
  3. Define Pins: Define the pins connected to the display module in your sketch. For example, using the pins from Table 2:
    #define TFT_CS    10
    #define TFT_DC 9
    #define TFT_RST 8 // Or set to -1 if you share Arduino reset pin
  4. Initialize Display: Initialize the display object in your setup function:
    Adafruit_ST7789 tft = Adafruit_ST7789(TFT_CS, TFT_DC, TFT_RST);

    void setup() {
    tft.init(240, 240); // Initialize ST7789 screen
    tft.setRotation(2); // Adjust rotation as needed
    tft.fillScreen(ST77XX_BLACK);
    tft.setTextWrap(false);
    tft.setTextColor(ST77XX_WHITE);
    tft.setTextSize(1);
    tft.setCursor(0, 0);
    tft.print("Hello, World!");
    }
  5. Drawing Functions: Use the GFX library functions to draw text, shapes, and images on the display. Refer to the Adafruit GFX library documentation for a full list of functions.

5. Specifikace

Tabulka 3: Technické specifikace
FunkceDetail
Velikost displeje1.54 palců
Rezoluce240x240 pixelů
Typ zobrazeníFull Color TFT IPS LCD
Driver ICST7789
RozhraníSPI (Serial Peripheral Interface)
Provozní svtageTypically 3.3V or 5V (VCC)
Kompatibilní zařízeníArduino, Raspberry Pi, ESP32, 8051, PIC, AVR
Hmotnost položky0.634 unce (cca 18 gramů)
Rozměry balení5.63 x 4.88 x 1.38 palce

6. Řešení problémů

  • Display is blank or shows garbage:
    • Zkontrolujte zapojení: Verify all connections (GND, VCC, SCL, SDA, RES, DC, CS) are secure and correctly connected to the appropriate microcontroller pins as per the wiring diagram. Pay close attention to SPI pin assignments (SCL/SCK, SDA/MOSI).
    • Napájení: Ensure the VCC pin receives the correct voltage (typically 3.3V or 5V, depending on your MCU's logic level and the module's tolerance).
    • Library Installation: Confirm that all necessary libraries (e.g., Adafruit GFX, Adafruit ST7789) are correctly installed in your IDE.
    • Inicializační kód: Double-check your code for correct pin definitions and display initialization parameters (e.g., tft.init(240, 240)).
    • SPI vs. I2C Confusion: This module uses SPI. Ensure you are not attempting to connect it using I2C pins or I2C libraries, despite some pin labels potentially causing confusion.
  • Colors are incorrect or washed out:
    • Nastavení rotace: Nesprávný setRotation() might affect how colors are interpreted or displayed. Experiment with different rotation values.
    • Library Version: Ensure you are using up-to-date libraries.
  • Display works on one MCU (e.g., ESP32) but not another (e.g., Arduino):
    • Kompatibilita pinů: Verify that the SPI pins and other control pins are correctly mapped for the specific MCU you are using. Pin numbers for SPI can differ between Arduino boards (Uno, Nano, Mega) and other platforms like ESP32 or Raspberry Pi.
    • Logické úrovně: Zajistit svtage compatibility. Some MCUs operate at 3.3V logic, while others use 5V. The display module typically supports both, but incorrect voltage levels can cause issues.

7. Údržba

The 1.54-inch TFT display module is a delicate electronic component. Follow these guidelines for proper maintenance:

  • Zacházení: Always handle the module by its edges to avoid touching the screen surface or electronic components.
  • Čištění: If necessary, gently clean the screen with a soft, lint-free cloth. Avoid abrasive materials or harsh chemical cleaners.
  • Skladování: Store the module in an anti-static bag in a dry, cool environment away from direct sunlight and extreme temperatures.
  • Pájení: When soldering header pins, use appropriate soldering techniques to prevent damage to the board or components.

8. Záruka a podpora

Specific warranty information for this product is not provided in the available documentation. For any technical support, warranty claims, or further inquiries, please contact the seller or manufacturer directly through the platform where the product was purchased.

Související dokumenty - ST7789

Předview Uživatelská příručka k 32palcovému IPS displeji ESP32-32E pro E32R3.2P a E32N32P
Komplexní uživatelská příručka pro 32palcový IPS ESP32-32E displej E32R3.2P a E32N32P, která zahrnuje popisy zdrojů, softwarové pokyny a podrobné vysvětlení hardwaru.
Předview Uživatelská příručka k 32palcovému IPS displeji ESP32-32E pro E32R3.2P a E32N32P
This user manual provides a comprehensive guide to the E32R32P and E32N32P 3.2-inch IPS ESP32-32E Display Modules. It covers resource descriptions, software and hardware instructions, detailed explanations of schematic diagrams, and precautions for use. The manual details the module's components, including the LCD screen, resistive touch screen, ESP32-WROOM-32E module, various interface circuits, and power management.
Předview Uživatelská příručka LILYGO T-Deck ESP32-S3 pro vývoj na Arduinu
Komplexní uživatelská příručka pro vývojovou desku LILYGO T-Deck, podrobný popis nastavení Arduino IDE, konfigurace ESP32-S3, funkcí Wi-Fi a LoRa a reference příkazů SSC pro aplikace IoT.
Předview Blockstream Jade V1.1 Technické ukončeníview a Specifikace
Technický konecview o Blockstream Jade V1.1 s podrobným popisem hardwarového složení, funkčního popisu, procesoru a paměti, úložiště a funkcí správy napájení. Zahrnuje informace o shodě s FCC.
Předview N133-2424TBBIG01-H12: 1.3-inch 240RGBx240 TFT LCD Module Datasheet
Technical datasheet for the Shenzhen Jinma Ding Electronics N133-2424TBBIG01-H12, a 1.3-inch 240RGBx240 dot-matrix TFT LCD module. Includes specifications, features, electrical and optical characteristics, reliability, package details, and handling precautions.
Předview 2.25 inch TFT Display Schematic with XC6206 Voltage Regulator and S8550 Transistor
Schematic diagram detailing the connection of a 2.25-inch TFT display, an XC6206P332MR-MS voltage regulator, and an S8550 transistor for backlight control. Includes IIC circuit and power filtering.