JESSINIE 1.8 Inch TFT LCD Screen Display Module

JESSINIE 1.8 Inch TFT LCD Screen Display Module

Model: 1.8 Inch TFT LCD Screen Display Module

Introducció

This manual provides essential information for the proper setup, operation, and maintenance of your JESSINIE 1.8 Inch TFT LCD Screen Display Module. This module is designed for integration with microcontrollers like Arduino, offering a compact and vibrant display solution for various electronic projects.

Característiques del producte

  • Mida de la pantalla: 1.8-inch TFT LCD screen.
  • Resolució: 128RGB*160 Dot-matrix for clear visuals.
  • Xip de controlador: ST7735S for reliable operation.
  • Interfície: SPI-4wire for easy communication.
  • Profunditat de color: Full-color display capabilities.
  • Vol. Operatiutage: 3.3V.
  • Consum actual: Aproximadament 30 mA.
  • Disseny del pin: 8-pin header with 2.54mm pitch for convenient connectivity.
  • Dimensions: 35.00 mm (A) x 56 mm (Alt) x 3.45 mm (P).
  • Àrea de visualització: 28.03mm (W) x 35.04mm (H).
  • Mida de píxels: 0.219mm (W) x 0.219mm (H).
  • Viewangle: Ample viewing angle (12 o'clock direction).
  • Temperatura de funcionament: -20 °C a 70 °C.

Especificacions

CaracterísticaDetall
MarcaJESSINIE
Nom del modelJESSINIE LCD Screen
Tecnologia de connectivitatSPI-4wire
Dispositius compatiblesArduino Uno, Arduino Mega, Arduino Nano, etc.
Dimensions de l'article (L x A x A)2.2" x 1.38" x 0.14" (56 mm x 35 mm x 3.45 mm)
FabricantJESSINIE

Descripció del pinout

The module features an 8-pin header for connection to your microcontroller. Understanding each pin's function is crucial for correct wiring.

Davant view of the JESSINIE 1.8 Inch TFT LCD Screen Display Module, showing the screen and pin headers.

Figura 1: Frontal view of the 1.8-inch TFT LCD module, showing the display and pin headers.

  • GND: Ground connection. Connect to the ground (0V) of your microcontroller.
  • VCC: Power supply input. Connect to 3.3V from your microcontroller.
  • SCL: Serial Clock. SPI clock signal.
  • SDA: Serial Data. SPI data input/output (MOSI).
  • RES: Reset. Connect to a digital pin on your microcontroller for hardware reset.
  • DC: Data/Command. Selects between data and command mode.
  • CS: Chip Select. Active low signal to enable communication with the display.
  • BL: Backlight. Controls the display backlight. Typically connected to 3.3V or a PWM pin for brightness control.
Enrere view of the JESSINIE 1.8 Inch TFT LCD Screen Display Module, showing the driver IC ST7735 and circuit board.

Figura 2: Esquena view of the LCD module, showing the ST7735 driver IC and circuit board.

Configuració

1. Connexió de maquinari

Connect the LCD module to your Arduino board using the following typical wiring scheme. Ensure your Arduino operates at 3.3V logic levels or use a logic level shifter if using a 5V Arduino to prevent damage.

  • GND → Terra d'Arduino
  • VCC → Arduino 3.3V
  • SCL → Arduino SPI Clock Pin (e.g., D13 for Uno, D18 for Mega)
  • SDA → Arduino SPI MOSI Pin (e.g., D11 for Uno, D51 for Mega)
  • RES → Arduino Digital Pin (e.g., D9)
  • DC → Arduino Digital Pin (e.g., D8)
  • CS → Arduino Digital Pin (e.g., D10)
  • BL → Arduino 3.3V (for full brightness) or a PWM pin for control.

2. Software Setup (Arduino IDE)

  1. Instal·leu l'IDE d'Arduino: If not already installed, download and install the Arduino IDE from the official Arduino weblloc.
  2. Instal·lar biblioteques: This module typically uses the Adafruit ST7735 and Adafruit GFX libraries.
    • Obriu l'IDE Arduino.
    • Vés a Sketch > Include Library > Manage Libraries...
    • Cerca "Adafruit ST7735" and install it.
    • Cerca "Adafruit GFX" and install it.
  3. Carrega Example Sketch: Navega a File > Examples > Adafruit ST7735 > graphicstest. Aquest example sketch demonstrates various display functions.
  4. Configura els pins: En l'example sketch, modify the pin definitions to match your wiring. For exampLI:
    #define TFT_CS 10
    #define TFT_DC 8
    #define TFT_RST 9 // Or set to -1 and connect to Arduino RESET pin
  5. Select Board and Port: Choose your Arduino board (e.g., Arduino Uno) and the correct COM port from Tools > Board i Tools > Port.
  6. Upload Sketch: Click the "Upload" button to compile and upload the sketch to your Arduino.

Instruccions de funcionament

Once the module is correctly wired and the software is uploaded, the display will execute the commands from your Arduino sketch. The Adafruit GFX library provides a rich set of functions for drawing pixels, lines, circles, rectangles, text, and images.

Basic Display Functions:

  • tft.initR(INITR_GREENTAB);: Initializes the display (use appropriate tab color for your module, e.g., INITR_BLACKTAB, INITR_REDTAB).
  • tft.setRotation(1);: Sets the display orientation (0-3).
  • tft.fillScreen(ST7735_BLACK);: Fills the entire screen with a specified color.
  • tft.drawPixel(x, y, color);: Draws a single pixel.
  • tft.setTextWrap(false);: Prevents text from wrapping.
  • tft.setTextColor(ST7735_WHITE);: Sets text color.
  • tft.setTextSize(1);: Sets text size.
  • tft.setCursor(0, 0);: Sets the cursor position for text.
  • tft.print("Hello World!");: Prints text to the display.

Refer to the Adafruit ST7735 and Adafruit GFX library documentation and examples for advanced usage and more detailed function descriptions.

Manteniment

  • Neteja: Gently wipe the screen surface with a soft, dry, lint-free cloth. Avoid using abrasive cleaners or solvents.
  • Manipulació: Handle the module by its edges to avoid touching the display area or damaging components on the PCB.
  • Emmagatzematge: Emmagatzemeu el mòdul en un entorn sec i antiestàtic, allunyat de la llum solar directa i de temperatures extremes.
  • Potència: Always ensure the correct 3.3V power supply is used. Over-voltage can permanently damage the module.

Resolució de problemes

  • Pantalla en blanc:
    • Check all wiring connections, especially VCC, GND, CS, DC, RES, SCL, and SDA.
    • Ensure the backlight (BL pin) is connected to 3.3V or a configured PWM pin.
    • Verify that the correct libraries (Adafruit ST7735, Adafruit GFX) are installed and included in your sketch.
    • Confirm the correct pin definitions in your Arduino sketch match your physical wiring.
    • Comproveu si el tft.initR() function is called with the correct display type (e.g., INITR_GREENTAB).
  • Incorrect Colors or Distorted Display:
    • Ensure the correct initialization sequence is used for your specific ST7735 variant. Some modules might require different initialization parameters.
    • Verify SPI connections (SCL, SDA) are secure and not swapped.
    • Check for proper power supply (3.3V).
  • Sense comunicació:
    • Double-check SPI pin assignments (SCL, SDA, CS, DC, RES).
    • Ensure your microcontroller's SPI hardware is correctly configured or that software SPI is used if necessary.
    • Confirm the module is receiving power (VCC and GND).
  • Code Compilation Errors:
    • Ensure all required libraries are installed and updated.
    • Check for typos in your code, especially pin definitions and function calls.

Garantia i Suport

For warranty information, technical support, or further assistance, please refer to the product listing on the retailer's website or contact JESSINIE customer service directly. Keep your purchase receipt for any warranty claims.

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.