

The LCD TFT 1.44 is a 1.44-inch thin-film transistor (TFT) liquid crystal display (LCD) that delivers high-resolution color output. This compact display module is ideal for applications requiring vibrant graphics and text in a small form factor. It is commonly used in embedded systems, handheld devices, and DIY electronics projects.








Below are the key technical details for the LCD TFT 1.44 module:
| Parameter | Value |
|---|---|
| Display Type | TFT LCD |
| Screen Size | 1.44 inches |
| Resolution | 128 x 128 pixels |
| Color Depth | 65K colors (16-bit RGB) |
| Interface Type | SPI (Serial Peripheral Interface) |
| Operating Voltage | 3.3V to 5V |
| Backlight Voltage | 3.3V |
| Current Consumption | ~50mA (with backlight on) |
| Dimensions | 40mm x 35mm x 5mm |
The LCD TFT 1.44 module typically has an 8-pin interface. Below is the pinout and description:
| Pin | Name | Description |
|---|---|---|
| 1 | GND | Ground connection |
| 2 | VCC | Power supply (3.3V or 5V) |
| 3 | SCL | Serial Clock Line for SPI communication |
| 4 | SDA | Serial Data Line for SPI communication |
| 5 | RES | Reset pin (active low) |
| 6 | DC | Data/Command control pin (High for data, Low for command) |
| 7 | CS | Chip Select (active low) |
| 8 | BL | Backlight control (connect to VCC for always-on backlight or PWM for dimming) |
To use the LCD TFT 1.44 with an Arduino UNO, follow these steps:
Wiring: Connect the module to the Arduino UNO as shown below:
Install Required Libraries:
Adafruit_GFX and Adafruit_ST7735 libraries from the Arduino Library Manager.Example Code: Use the following code to display text and graphics on the screen:
// Include necessary libraries
#include <Adafruit_GFX.h> // Graphics library for drawing shapes and text
#include <Adafruit_ST7735.h> // Library for ST7735-based TFT displays
#include <SPI.h> // SPI communication library
// Define pin connections
#define TFT_CS 10 // Chip Select pin
#define TFT_RST 8 // Reset pin
#define TFT_DC 9 // Data/Command pin
// Initialize the display object
Adafruit_ST7735 tft = Adafruit_ST7735(TFT_CS, TFT_DC, TFT_RST);
void setup() {
// Initialize the display
tft.initR(INITR_144GREENTAB); // Initialize for 1.44" TFT with green tab
tft.fillScreen(ST77XX_BLACK); // Clear the screen with black color
// Display text
tft.setTextColor(ST77XX_WHITE); // Set text color to white
tft.setTextSize(1); // Set text size
tft.setCursor(10, 10); // Set cursor position
tft.println("Hello, World!"); // Print text to the screen
// Draw a rectangle
tft.drawRect(20, 30, 50, 50, ST77XX_RED); // Draw a red rectangle
}
void loop() {
// Nothing to do in the loop
}
BL pin to a PWM-capable pin on your microcontroller.Blank Screen:
Distorted or Noisy Display:
Backlight Not Turning On:
BL pin not connected or insufficient voltage.BL pin to 3.3V or 5V. For dimming, use a PWM signal.Can I use this module with a 3.3V microcontroller?
What is the maximum SPI clock speed supported?
Can I display images on this screen?
Is the backlight brightness adjustable?
BL pin to a PWM-capable pin on your microcontroller to control brightness.By following this documentation, you can effectively integrate and use the LCD TFT 1.44 module in your projects.