

The 1.14 Inch IPS TFT LCD Display by Estardyn is a compact and vibrant display module designed for embedded systems. Featuring IPS (In-Plane Switching) technology, it offers wide viewing angles and excellent color reproduction. With a resolution of 135x240 pixels, this display is ideal for applications requiring clear and detailed visuals in a small form factor.








Below are the key technical details of the 1.14 Inch IPS TFT LCD Display:
| Parameter | Specification |
|---|---|
| Manufacturer | Estardyn |
| Display Type | IPS TFT LCD |
| Screen Size | 1.14 inches |
| Resolution | 135x240 pixels |
| Interface | SPI (Serial Peripheral Interface) |
| Operating Voltage | 3.3V |
| Backlight Voltage | 3.0V to 3.3V |
| Current Consumption | ~20mA (typical, with backlight on) |
| Viewing Angle | 160° (horizontal and vertical) |
| Pixel Color Depth | 65K (16-bit RGB) |
| Driver IC | ST7789 |
| Operating Temperature | -20°C to 70°C |
| Dimensions | 28mm x 35mm x 2mm |
The display module has an 8-pin interface. Below is the pinout and description:
| Pin | Name | Description |
|---|---|---|
| 1 | GND | Ground connection |
| 2 | VCC | Power supply (3.3V) |
| 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 = Data, Low = Command) |
| 7 | BLK | Backlight control (connect to 3.3V for constant backlight or PWM for dimming) |
| 8 | CS | Chip Select (active low) |
Below is an example of how to interface the display with an Arduino UNO using the Adafruit_GFX and Adafruit_ST7789 libraries:
#include <Adafruit_GFX.h> // Core graphics library
#include <Adafruit_ST7789.h> // ST7789 driver library
#include <SPI.h>
// Define pin connections
#define TFT_CS 10 // Chip Select pin
#define TFT_RST 9 // Reset pin
#define TFT_DC 8 // Data/Command pin
// Initialize the display object
Adafruit_ST7789 tft = Adafruit_ST7789(TFT_CS, TFT_DC, TFT_RST);
void setup() {
// Initialize serial communication for debugging
Serial.begin(9600);
Serial.println("Initializing display...");
// Initialize the display with a 135x240 resolution
tft.init(135, 240);
// Set rotation (0-3 for different orientations)
tft.setRotation(1);
// Fill the screen with a solid color
tft.fillScreen(ST77XX_BLACK);
// Display a message
tft.setTextColor(ST77XX_WHITE);
tft.setTextSize(2);
tft.setCursor(10, 10);
tft.println("Hello, World!");
}
void loop() {
// Add your main code here
}
No Display Output:
Flickering or Unstable Display:
Incorrect Colors or Orientation:
tft.setRotation()).Display Not Responding After Reset:
Q: Can this display work with 5V microcontrollers?
A: Yes, but you must use a level shifter to convert 5V logic signals to 3.3V.
Q: Is the backlight brightness adjustable?
A: Yes, connect the BLK pin to a PWM-capable GPIO pin for brightness control.
Q: Can I use this display with Raspberry Pi?
A: Yes, the display is compatible with Raspberry Pi. Use the SPI interface and appropriate libraries (e.g., luma.lcd).
Q: What is the maximum SPI clock speed?
A: The recommended maximum SPI clock speed is 15MHz for stable operation.