GODIYMODULES ST7789

GODIYMODULES 1.54 ഇഞ്ച് 240x240 IPS TFT ഡിസ്പ്ലേ മൊഡ്യൂൾ ST7789 യൂസർ മാനുവൽ

1. ആമുഖം

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

ചിത്രം 1: മുൻഭാഗം view of the 1.54-inch TFT display module, showing the screen and the included male header pins for connection.

2. ഉൽപ്പന്നം കഴിഞ്ഞുview

2.1 പ്രധാന സവിശേഷതകൾ

  • ഡിസ്പ്ലേ തരം: 1.54-inch Full Color TFT IPS LCD
  • റെസലൂഷൻ: 240x240 പിക്സലുകൾ
  • Controller IC: ST7789
  • ഇൻ്റർഫേസ്: സീരിയൽ പെരിഫറൽ ഇൻ്റർഫേസ് (SPI)
  • അനുയോജ്യത: Designed for use with various Microcontroller Units (MCUs) including Arduino, ESP32, Raspberry Pi, 8051, PIC, and AVR.
  • പ്രദർശന നിലവാരം: HD IPS panel for superior viewകോണുകളും ഊർജ്ജസ്വലമായ നിറങ്ങളും.

2.2 ഉൾപ്പെടുത്തിയ ഘടകങ്ങൾ

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

3. സജ്ജീകരണവും വയറിംഗും

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 പിൻഔട്ട് വിവരണം

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

ചിത്രം 2: പിൻഭാഗം view of the display module circuit board, detailing the ST7789 driver IC and connection pins.

Table 1: Display Module Pinout
പിൻ ലേബൽവിവരണം
ജിഎൻഡിഗ്രൗണ്ട് കണക്ഷൻ.
വി.സി.സിPower supply (typically 3.3V or 5V, refer to MCU specifications).
SCLSerial Clock (SPI Clock).
എസ്.ഡി.എSerial 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.

പട്ടിക 2: ഉദാample Arduino Wiring (Arduino Nano/Uno)
ഡിസ്പ്ലേ പിൻഅർഡ്വിനോ പിൻകുറിപ്പുകൾ
ജിഎൻഡിജിഎൻഡിപൊതു സ്ഥലം.
വി.സി.സി5VPower supply for the module.
SCLD13 (SCK)SPI Clock pin.
എസ്.ഡി.എD11 (MOSI)SPI Master Out Slave In pin.
RESD8Digital pin for Reset.
DCD9Digital pin for Data/Command selection.
CSD10Digital pin for Chip Select.
BLK(ഓപ്ഷണൽ)Can be left unconnected or connected to a digital pin for backlight control.

കുറിപ്പ്: 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. പ്രവർത്തന നിർദ്ദേശങ്ങൾ

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 Exampലെ)

  1. ലൈബ്രറികൾ ഇൻസ്റ്റാൾ ചെയ്യുക: Open your Arduino IDE. Go to സ്കെച്ച് > ലൈബ്രറി ഉൾപ്പെടുത്തുക > ലൈബ്രറികൾ കൈകാര്യം ചെയ്യുക... ഇതിനായി തിരയുക "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 സ്പെസിഫിക്കേഷനുകൾ

പട്ടിക 3: സാങ്കേതിക സവിശേഷതകൾ
ഫീച്ചർവിശദാംശങ്ങൾ
ഡിസ്പ്ലേ വലിപ്പം1.54 ഇഞ്ച്
റെസലൂഷൻ240x240 പിക്സലുകൾ
ഡിസ്പ്ലേ തരംFull Color TFT IPS LCD
ഡ്രൈവർ ഐ.സിST7789
ഇൻ്റർഫേസ്SPI (സീരിയൽ പെരിഫറൽ ഇൻ്റർഫേസ്)
ഓപ്പറേറ്റിംഗ് വോളിയംtageTypically 3.3V or 5V (VCC)
അനുയോജ്യമായ ഉപകരണങ്ങൾArduino, Raspberry Pi, ESP32, 8051, PIC, AVR
ഇനത്തിൻ്റെ ഭാരം0.634 ഔൺസ് (ഏകദേശം 18 ഗ്രാം)
പാക്കേജ് അളവുകൾ5.63 x 4.88 x 1.38 ഇഞ്ച്

6. പ്രശ്‌നപരിഹാരം

  • Display is blank or shows garbage:
    • വയറിംഗ് പരിശോധിക്കുക: 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).
    • വൈദ്യുതി വിതരണം: 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).
    • ലൈബ്രറി ഇൻസ്റ്റാളേഷൻ: Confirm that all necessary libraries (e.g., Adafruit GFX, Adafruit ST7789) are correctly installed in your IDE.
    • Initialization Code: 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:
    • റൊട്ടേഷൻ ക്രമീകരണം: തെറ്റാണ് 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):
    • Pin Compatibility: 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.
    • ലോജിക് ലെവലുകൾ: വോളിയം ഉറപ്പാക്കുകtage 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. പരിപാലനം

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

  • കൈകാര്യം ചെയ്യൽ: Always handle the module by its edges to avoid touching the screen surface or electronic components.
  • വൃത്തിയാക്കൽ: If necessary, gently clean the screen with a soft, lint-free cloth. Avoid abrasive materials or harsh chemical cleaners.
  • സംഭരണം: Store the module in an anti-static bag in a dry, cool environment away from direct sunlight and extreme temperatures.
  • സോൾഡറിംഗ്: When soldering header pins, use appropriate soldering techniques to prevent damage to the board or components.

8. വാറൻ്റിയും പിന്തുണയും

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.

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.