The UGE ST7588i LCD Module is a high-quality 3.6-inch 128×64 dot matrix graphic display featuring a vivid orange background and dark pixel contrast.
Powered by the reliable ST7588i controller, it provides a crisp and stable image with low power consumption — ideal for embedded applications, measurement instruments, control panels, and custom electronics.
This module communicates via a 2-wire I²C interface, reducing wiring complexity and making it perfectly compatible with Arduino, ESP32, STM32, AVR, and most modern microcontrollers.
The module includes on-board voltage selection jumpers for 3.3 V or 5 V logic, reset pin, and optional backlight control, making integration effortless for both beginners and professionals.
Resolution: 128 × 64 graphic pixels
Display Color: Orange background with dark text/graphics
Controller: ST7588i (built-in)
Interface: I²C (2-wire serial)
Operating Voltage: 3.3 V / 5 V (selectable via jumper)
Backlight: Controlled via onboard jumper
Display area: 3.6 inches diagonal
Compact PCB with 4 mounting holes
Fully compatible with U8g2 graphics library
#include <Arduino.h>
#include <U8g2lib.h>
#include <Wire.h>
// Create display instance for your module
U8G2_ST7588_JLX12864_1_HW_I2C u8g2(U8G2_R2, /* reset=*/ U8X8_PIN_NONE);
void setup() {
u8g2.begin();
u8g2.setContrast(150); // Adjust brightness if needed
}
void loop() {
u8g2.firstPage();
do {
// Large title
u8g2.setFont(u8g2_font_helvB14_tr);
uint8_t w1 = u8g2.getStrWidth(“UGE Electronics”);
u8g2.drawStr((128 – w1) / 2, 38, “UGE Electronics”);
// Middle line – website
u8g2.setFont(u8g2_font_9x15_tr);
uint8_t w2 = u8g2.getStrWidth(“UGE-ONE.COM”);
u8g2.drawStr((128 – w2) / 2, 52, “UGE-ONE.COM”);
// Bottom – module info
u8g2.setFont(u8g2_font_4x6_tr);
uint8_t w3 = u8g2.getStrWidth(“128×64 I2C Graphics LCD Module”);
u8g2.drawStr((128 – w3) / 2, 61, “128×64 I2C Graphics LCD Module”);
} while (u8g2.nextPage());
while (1); // Keep static screen
}
Industrial control panels
Embedded systems and IoT devices
Measuring instruments
Data loggers and dashboards
Educational trainer boards
Consumer electronics displays
| Parameter | Description |
|---|---|
| Display Type | STN Graphic LCD |
| Resolution | 128 × 64 pixels |
| Interface | I²C |
| Controller | ST7588i |
| Operating Voltage | 3.3 V or 5 V (selectable) |
| Backlight | Orange LED, active low |
| Dimensions | 3.6-inch module |
| Mounting Holes | 4 × M3 |
| Default I²C Address | 0x3F |
| Logic Level | 3.3 V / 5 V compatible please check the modification method written on the Module Back |
You must be logged in to post a review.
Reviews
There are no reviews yet.