Displays
Introduction to Polarization Effect & White Screen Case Study
Brief Introduction to the Polarization (Dark Edge) Phenomenon
Previously, we encountered a phenomenon where, before the LCD fully powers on, a noticeable dark or black border appears around the edges of the screen.
We generally refer to this as a polarization phenomenon. It appears similar to the illustration below.
Characteristics of This Phenomenon
- Occurs only during initial power-on or cold start
- Most noticeable under full white or light-colored backgrounds
- Gradually disappears as the panel temperature rises during operation
- Does not affect display functionality
- Does not affect touch performance
- Does not impact panel lifetime
The dark border typically fades within a few seconds to several tens of seconds.
This is a normal optical characteristic of LCD panels, not a defect and not a quality issue.
Root Causes of the Dark Edge Phenomenon
When the LCD is first powered on, the liquid crystal molecules, voltage driving system, and backlight system have not yet reached a stable operating state. This causes slightly reduced brightness in edge areas, forming a visible dark border.
-
Initial Polarization of Liquid Crystal
At power-on:
- Liquid crystal molecular alignment is not fully established
- Vcom (common voltage) waveform is not yet fully stabilized
- Positive/negative polarity switching has not fully entered steady-state
The edge area is more sensitive to voltage variations due to:
- Seal glue (frame seal)
- Black Matrix (BM) limitations
Under a white background, the edges therefore appear darker than the center.
-
Low Temperature Effects
When the LCD temperature is low:
- Liquid crystal viscosity is higher
- Response time is slower
Edge areas warm up more slowly due to structural shielding, so brightness recovery is delayed — making the dark border more visible.
-
Backlight Startup Instability
At initial startup:
- Backlight LED brightness has not fully stabilized
- Light guide plate edge illumination is not yet uniform
This results in lower brightness at the edges compared to the center.
-
Structural Light Absorption
LCD edges inherently include several unavoidable structures:
- Seal glue (Seal)
- FPC circuit area
- Black Matrix masking area (BM)
- Backlight frame edges
These structures absorb more light during startup, amplifying the dark edge effect.
Solutions / Mitigation Methods
-
Software Optimization (Highly Recommended)
- Avoid displaying high-gray or pure white images during the first few seconds after power-on
- Use dark backgrounds (black / dark blue / dark gray) during startup
→ This almost completely hides the phenomenon - Delay full-white display by 1–3 seconds
- Apply gradual backlight ramp-up (soft start) to improve cold-start edge uniformity
-
Hardware Optimization (If Further Improvement Is Required)
- Improve panel preheating strategy
For example, briefly drive low gray levels at startup to accelerate stabilization - Fine-tune Vcom voltage (must be verified per panel specification)
Helps reduce initial polarization deviation - Optimize backlight startup curve
Allows the light guide plate to reach uniform brightness more quickly
-
Usage Recommendations
- Avoid displaying pure white high-brightness images immediately under very low temperature conditions
- At low temperatures, liquid crystal viscosity increases, making dark edges more noticeable
USB-C Sample White Screen Issue – Analysis & Improvement
-
Observed White Screen Condition
During testing, another issue was observed:
After testing, the display remained connected to the computer. The computer was powered off, but the power supply remained connected. Under this condition, the display panel turned completely white.
The factory initially suggested this was a polarization phenomenon. However, we believe it is more likely related to power supply, backlight control, or display driver logic.
When the laptop lid is closed, the system may enter sleep or standby mode. Although power remains connected, there is theoretically no video signal. In this condition:
- The display should go dark
- The backlight should turn off
-
First Improvement Verification
To resolve the issue, the engineer routed out a video signal detection pin to determine whether a valid video signal was present.
The logic implemented:
- When video signal is detected → turn on display power
- When no signal → cut off display power
Testing showed this method was effective:
- When the video signal was removed, the white screen did not appear
- However, during signal restoration, a brief white transition was visible
Since this was only a functional verification, further optimization will be implemented via software:
- When signal is detected, apply a short delay before powering on the display
- This avoids the visible white transition
-
Second Improvement Verification
Based on the first solution, further hardware and software optimizations were implemented.
An external MCU was used to control:
- Signal arrival detection
- Display power enable
- Backlight enable
Only after confirming valid signal arrival does the MCU power on the display and backlight.
Results:
- When the computer is shut down, the display shows no image
- The backlight is fully turned off
- The white screen issue is completely resolved
-
Minor Startup Backlight Flash Issue
Another minor issue was observed:
When the computer boots up and USB-C first supplies power to the display, the display circuitry is still in reset state. During this moment, the backlight briefly flashes.
Solution:
- Add a delay circuit stage
- Stagger the power timing between system reset and backlight enable
This eliminates the brief backlight flash.
The adjusted startup time is approximately 1–2 seconds.
If you have any questions, please contact our engineering.
How to Analyze I2C Waveforms
I2C is the most commonly used communication protocol in CTP systems. When customers report touch issues, we often use an oscilloscope to verify whether the CTP is functioning properly. Understanding how to analyze I2C waveforms is therefore essential for problem diagnosis and effective technical communication with customers.
Background of I2C
I2C (Inter-Integrated Circuit) was originally developed by Philips in 1982 for communication between its internal chips. The original specification supported speeds up to 100 kHz with 7-bit addressing. Although 7-bit addressing allows up to 128 addresses, some are reserved, so only 112 valid device addresses can be used on a bus.
In 1992, the first public specification introduced 400 kHz Fast Mode and extended 10-bit addressing. In many systems (for example, Arduino-compatible boards using the ATmega328 microcontroller), I2C support typically remains at Standard Mode (100 kHz) or Fast Mode (400 kHz), with either 7-bit or 10-bit addressing. Higher-speed modes (1 MHz to 5 MHz) exist but are less common.
*Serial vs Parallel Communication
Serial communication (e.g., I2C, UART, SPI, USB) transmits one bit at a time over a single data line in time sequence.
Data for I2C is typically as:
Clock
1 0 1 1 0 0 1 0 // I2C will transmit these data one bit by one bit
Parallel communication (e.g., MCU parallel bus, RGB interface) transmits multiple bits simultaneously in one clock cycle.
Data for RGB is typically as:
D7 D6 D5 D4 D3 D2 D1 D0
1 0 1 1 0 0 1 0 // 8 bits are transmitted in one clock cycle.
I2C Bus Architecture

I2C supports multi-master and multi-slave configurations and operates in half-duplex mode.
Customers often mention the term “node.” A node refers to any device connected to the I2C bus that has a valid address and is capable of communication. A node can function as either a master or a slave device.
A slave device, such as our Touch IC, cannot initiate communication. It can only respond to requests from the master. The slave must recognize its own address and will respond only when the received address matches its configured address.
For example, assume three slave devices have addresses 0x1A, 0x2A, and 0x3A. When the master transmits 0x2A on the SDA line, the second slave compares the received address with its own. If the address matches, communication is established.
Although all slave devices can detect the address transmitted by the master, only the device with the matching address will respond by sending an ACK (0). The others will ignore the transaction (NACK = 1). Each device address must be unique and is typically determined by hardware configuration. Examples will be provided later.
Half-duplex means that data can flow in only one direction at a time — either from master to slave or from slave to master. The data direction is controlled by the R/W bit.
In the I2C bus, SCL is the clock line and is always generated by the master. SDA is the data line and uses an open-drain structure, meaning it can be pulled low by either the master or a slave device.
Open-Drain Structure
What is an open-drain (or open-collector) structure? This type of output driving method enables bidirectional communication on a single data line in I2C systems.
An open-drain output can actively pull the signal line low or remain in a high-impedance (Hi-Z) state, but it cannot actively drive the line high. In contrast, a push-pull output can actively drive the signal either high or low.
When multiple devices are connected in parallel on the same bus, push-pull outputs may cause signal conflicts or even short circuits if different devices attempt to drive the line to opposite logic levels at the same time.
Push-pull output uses complementary PMOS and NMOS transistors to determine whether the output drives a high level (VDD) or a low level (ground).

High Level

Low Level
In an open-drain output structure, the PMOS transistor is permanently turned off (disconnected).
The circuit can either drive a low level (when the NMOS is turned on and conducts) or remain in a high-impedance state (when the NMOS is turned off).

Low Level

High-impedance state
When an external pull-up resistor is connected, the value of the pull-up resistor will appear at the output. PN-MOS itself are two diode2, with essentially infinite resistance.)

Open-Drain structure with a pull-up resistor
Only after understanding what open-drain outputs and pull-up resistors are can we better interpret the waveforms of SCL and SDA. In theory, SCL should be a regular square wave with very clean rising and falling edges.
In practice, for normal SCL and SDA waveforms, the falling edge is fast and sharp because the pull-down is active. The rising edge, however, is slower and curved or sloped because the voltage is pulled up through a resistor charging the line’s capacitance


As in the photo above, the yellow SCL line has a very slow rising edge, which is usually caused by a pull-up resistor that is too large.
Generally, for 100 kHz I²C, a 4.7 kΩ pull-up resistor is recommended, and for 400 kHz, 2.2 kΩ. If the pull-up resistor is too large, it can sometimes cause the touch sensor to become unresponsive.
A smaller pull-up resistor results in faster rising edges and stronger noise immunity, but it also increases power consumption.
I2C Data Format

Start and Stop Conditions

When SCL is high: SDA transitioning from high to low indicates a START condition; SDA transitioning from low to high indicates a STOP condition.
Addressing
An address frame typically consists of a 7-bit address plus 1 R/W bit (0 = write from master to slave, 1 = read from slave to master).
SDA must change only when SCL is low. During SCL high, SDA must remain stable because data is sampled during the high period of SCL.
In the diagram below, we can see that the slave’s A1, A2, and A3 pins are all connected to ground. This makes the address 1110000, which is 0x70 in hexadecimal.
Some devices, however, do not have A1, A2, and A3 address pins. In that case, the address cannot be changed and is fixed as a default internal static address.

ACK / NACK
After every 8 bits of data, the 9th clock cycle is used for ACK/NACK. The receiver drives SDA: ACK = 0 (acknowledge), NACK = 1 (not acknowledged).

A short pulse may appear between the 8th bit and the ACK bit. This occurs when the SDA line is released during direction switching. Because this transition happens while SCL is low and data is sampled during SCL high, this short pulse is not interpreted as valid data.
If you have any questions, please contact our engineering.
LCD Power-on Process
LCD Power-On Process
As LCD engineers, we often receive the following question: Why does a display occasionally show a white screen during power-on, while under other conditions it initializes and operates normally?
At first glance, it may appear that there is a problem with the display. However, in most cases, the issue is related to power sequencing and initialization timing. In other words, it is more of a software or system-level timing issue rather than a hardware defect.
To better understand this phenomenon, we need to review the LCD power-on process from a system-level perspective.
What Happens During Power-On?
A display contains a driver IC, internal logic circuits, voltage generation circuits, and timing detection circuits.
When the display is powered on, the following sequence must be strictly followed:
- The digital logic power supply (VDD) rises.
- The analog driving voltages (AVDD, VGH, VGL) are established.
- The RESET signal is applied and then released.
- The host MCU begins transmitting video signals, including clock, sync, and pixel data.
If any of these steps fail or occur out of sequence, the panel may not initialize correctly.
When a white screen is observed, it does not necessarily mean that the display is defective.
In most cases, it indicates that the TFT driver IC is not operating in its normal image refresh state.

Possible Root Causes of a White Screen
-
The Source Driver Outputs a Default Voltage Level
Under normal operation, the driver IC converts digital pixel data into analog driving voltages. These voltages control the liquid crystal orientation, resulting in different light transmittance levels for each pixel.
If the driver IC has not completed initialization, has not detected valid timing signals, or has not received valid image data, it may enter a default output mode. In this mode, the output voltage typically corresponds to a fully open liquid crystal (LC) state, which results in a uniformly white screen.
-
No Valid Image Data Is Latched
The driver IC requires continuous timing signals to correctly latch pixel data. These signals include:
- Pixel clock
- HSYNC
- VSYNC
- Data Enable (DE)
If no valid image data is latched, the display may show a uniform white screen.
-
The TFT Driver IC Did Not Complete Initialization
During power-on, the driver IC requires time to:
- Stabilize internal analog voltages
- Establish gamma reference levels
- Start internal oscillators
- Exit standby or sleep mode
- Initialize internal logic blocks
If the RESET signal is released too early, or if video data transmission begins before initialization is complete, the driver IC may enter an undefined state. In such cases, it may output the default voltage level, resulting in a white screen.
This is the most common cause observed in practical applications.
-
Pixel Clock Synchronization Failure
If pixel clock synchronization fails, the driver IC cannot correctly latch pixel data. In this case, the display may exhibit:
- A white screen
- A fully bright or fully dark screen
- Corrupted images
- Flickering
- Vertical or horizontal stripes
- Misaligned lines
Conclusion
A white screen is usually not a display hardware failure.
If the panel is powered and the backlight is functioning, the hardware is operational. However, the initialization sequence may have been incomplete, incorrectly ordered, or mistimed.
Therefore, debugging should focus on verifying: Power sequencing, RESET timing, Initialization delay requirements, Valid timing, and video signal transmission.
If you have any questions, please contact our engineering.
1U, 2U, 3U LCD Displays
What are 1U, 2U, and 3U?
“U” refers to the height of a server chassis.
1U equals 1.75 inches (approximately 4.45 cm), so 3U equals about 3 × 4.45 cm.
“U” (short for unit) is a unit used to indicate the external dimensions of modular racks. The detailed specifications are defined by the U.S. Electronic Industries Alliance (EIA), an industry standards organization.
The specified dimensions are a width of 48.26 cm (19 inches) and a height in multiples of 4.445 cm. Because the width is 19 inches, racks that meet this standard are often referred to as 19-inch racks. The height is measured in basic units of 4.445 cm.
| Specification | Height (mm) | Common Uses |
| 1U | 44.45 mm | High-density servers, network equipment |
| 2U | 88.9 mm | Balanced computing and expansion |
| 3U | 133.35 mm | Local interaction / more user-friendly display |

Common Rack Cabinet Sizes, How Many Servers Can a 42U Rack Hold?
Server dimensions are standardized so that servers can be properly mounted in steel or aluminum racks. Racks have pre-drilled mounting holes that align with the mounting holes on servers, allowing them to be secured with screws. This standardization makes installation easier and ensures that each server occupies the appropriate amount of space.
The standardized dimensions specify a server width of 48.26 cm (19 inches) and a height in multiples of 4.445 cm. Because the width is 19 inches, racks that comply with this standard are often referred to as “19-inch racks.” Height is measured in units of 4.445 cm, where 1U = 4.445 cm. Details are shown in the table below.
- What Are the Dimensions of a 42U Rack?
A 42U rack cabinet typically measures:
- Height: 2.0 meters
- Width: 0.6 meters
- Depth: 0.8 meters
Some models may also have a depth of 0.96 meters, while maintaining the same height and width.
- How Many Servers Can a 42U Rack Hold?
The number of servers that can be installed in a rack is limited. A 42U rack does not mean it can hold 42 units of 1U servers in practice. Space must be reserved for:
- Heat dissipation and airflow
- Equipment installation and maintenance clearance
- Power distribution
- Cable management (top and bottom clearance)
- Additional equipment such as switches, firewalls, and displays
For example, a standard 42U rack can typically hold up to about 20 servers.
Why 20? Even with 1U servers, space must be left between servers for cooling. In addition, the rack usually needs to accommodate at least one switch, which may require around 2U of space.
If 2U servers are used, the rack can generally accommodate around 10 servers, plus additional networking equipment such as switches and routers.
1U / 2U / 3U Chassis and Display Size Design Recommendations
1) 1U Chassis (Highly Space-Constrained)
Feasible Solutions:
- 3″ – 2.4″ OLED / LCD
- Monochrome character displays, dot-matrix modules, or low-resolution color displays
Intended Use Only For:
- Status information
- IP address / temperature / alarms
- Menu navigation
Typical Display Parameters:
- Screen height: ~30 mm
- Resolution: 128 × 64 or 320 × 240
- Aspect ratio: 4:3 or ultra-wide (bar display)
Orient Display offers many monochrome character LCD modules and dot-matrix graphic LCD modules suitable for 1U applications. It also provides a wide selection of small-size color TFT modules. Since most small TFT modules are designed in portrait orientation, they typically need to be rotated 90 degrees for use in 1U systems.
There are also bar displays available on the market that are suitable for 1U applications, such as the 80 × 116 graphic TFT 1U display. In addition, Orient Display offers a 6.9-inch 280 × 1424 capacitive touch display as an option.

2) 2U Chassis (Where It Becomes “Visually Usable”)
This is the starting point for true embedded displays.
Recommended Sizes:
| Screen Size | Usability |
| 3.5″ | Barely interactive |
| 5″ | Recommended |
| 7″ | Upper limit (requires ultra-thin bezels) |
Typical Display Parameters:
- Available height: ~70 mm
- Resolution: 800 × 480 or 1024 × 600
- Aspect ratio: 16:9 or 16:10
Orient Display offers many mid-size color TFT modules suitable for 2U applications, available in both portrait and landscape orientations. For example, 5.0″ 800 × 480 TFT modules are commonly used. In addition, Orient Display also provides 7.8″ 1280 × 400 bar displays with capacitive touch, which are well suited for 2U chassis designs.

3) 3U Chassis (A True “Monitor-Like” Experience)
3U is the most comfortable height for UI designers, offering ample space for layout, typography, and interaction.
Recommended Sizes:
| Screen Size | User Experience |
| 7″ | Safe and reliable |
| 8″ | Best balance |
| 10.1″ | High-end solution |
Typical Display Parameters:
- Available height: ~115 mm
- Resolution: 1280 × 800 or 1920 × 1200
- Aspect ratio: 16:10
Orient Display offers many medium-to-large color TFT modules suitable for 3U applications, available in both portrait and landscape orientations. For example, an 8.0″ IPS TFT (800 × 1280) with all viewing angles, medium brightness, and a MIPI interface is a representative option.

If you have any questions, please contact our engineering.
Why Does E ink Refresh Slowly?
E-ink or E-paper displays are widely used in e-readers, digital signage and digital art frames. They offer ultra-low power consumption, and are easily readable in direct sunlight.
Its key features and benefits include:
- Low Power Consumption
- Paper-Like Appearance and Eye-Friendly Reading
- Flexibility and Versatility
However, one of the main primary weaknesses of e-ink displays is its slow refresh rate. Compared to LCD or OLED, e-ink displays normally cannot display videos.
Why does E-ink refresh so slowly? Because E‑ink displays form images by physically moving real micro‑particles suspended in liquid, rather than lighting up pixels with electric current like LCD or OLED panels.
| Display Type | Light Source | Display Mechanism | Refresh Speed |
| LCD | Backlight + liquid crystal rotation | Molecular orientation change | Milliseconds |
| OLED | Self‑emissive | Electronic transition | Microseconds |
| E-ink | Reflective | Physical particle movement | 100 ms to seconds |
Table 1. Refresh Speed of Different Display Types
Take the simplest black‑and‑white e‑ink display as an example. Its working principle is as follows:
Each pixel contains many microcapsules filled with:
- Positively charged white particles
- Negatively charged black particles

https://www.eink.com/
By applying an electric field, white particles are pulled to the top → the pixel appears white; black particles are pulled to the top → the pixel appears black.
The key point is that this is mechanical displacement, not electronic transition. These particles are microns in size and move within a high‑viscosity fluid, so their speed is far slower than electrons moving through a conductor. If the particles move too quickly, they may not settle accurately, causing artifacts or ghosting.
Refreshing an e‑ink display is not a simple on/off action. It involves multiple steps:
- Clearing the screen
- Reverse driving
- Multiple pull‑backs and fine adjustments
Each step requires waiting for the particles to stabilize. This is why you see the screen flash and gradually become clear during a refresh.
E‑ink is designed to be bi‑stable, meaning it can retain an image for long periods without power, with a paper‑like stable appearance. Achieving this requires sacrificing some refresh speed in exchange for ultra‑low power consumption and reduced eye strain.
With ongoing improvements, modern e‑ink displays can increase refresh speed through several optimizations:
- Black‑and‑white 1‑bit Mode
Fast‑refresh modes often support only pure black and white, removing the complexity of 16‑level grayscale calculations. The image is simplified to 1‑bit data, enabling extremely fast processing.
- Partial Refresh / A2 Mode
A full refresh cycles through black‑white‑black transitions to eliminate ghosting. Fast modes update only the pixels that change, without forcing a full‑screen wipe, greatly reducing update time.
- Dithering Algorithms
Techniques like Floyd–Steinberg dithering simulate gray levels using patterns of black and white pixels. This preserves acceptable image quality while maximizing refresh speed.
These techniques improve speed, but image quality decreases and ghosting accumulate more quickly.
Why Is Color E‑Ink Even Slower?
Because color e‑ink adds additional layers of complexity on top of an already slow black‑and‑white system. Each color technology introduces extra steps that slow down refresh.
Current mainstream color e‑ink technologies (Kaleido, Gallery) do not emit RGB light directly. Instead, they rely on layered structures or multi‑particle systems.
A. Color Filter Array (Kaleido)
This is the most common color e‑ink today.

https://www.eink.com/
Each color pixel is composed of multiple black‑and‑white sub‑pixels. A single-color pixel contains 3–4 monochrome sub‑pixels, and color depth is controlled by adjusting the black/white ratio. Changing a color cannot be achieved in a single drive cycle. To achieve fine grayscale control, multiple waveform adjustments are required, which increases refresh time.
Because this technology still relies on black‑and‑white particle movement, it can approach the speed of monochrome e‑ink, but color saturation is limited.
B. Multi‑Color Particles (Gallery / ACeP)
This is true full‑color e‑ink.

https://www.eink.com/
Each microcapsule contains four types of charged color particles (yellow, cyan, magenta, reflective white). Compared with controlling two particle types in monochrome e‑ink, this system must control four, greatly increasing complexity.
To display a specific color, each particle type must be positioned at the correct height. During refresh, the system must use extremely complex voltage waveforms to guide specific particles through a crowded mixture and bring them to the top. It’s like trying to push only the people wearing blue shirts to the front of a packed crowd—much harder than having everyone move together.
Particles collide and rub against each other during movement, and the internal electric field becomes more chaotic as particle types increase. To ensure accurate color without ghosting, the system must “shake” the particles repeatedly to settle them properly. This is why color e‑ink often flashes many times during refresh. A single refresh may require dozens or even hundreds of waveform cycles, taking several seconds or even more than ten seconds.
This technology produces vivid, saturated colors, but is too slow for interactive use.
Additionally, e‑ink is extremely temperature‑sensitive. At low temperatures, the liquid becomes more viscous, slowing particle movement further and requiring more complex compensation algorithms.
How Color E‑Ink Refresh Speed Can Be Improved
Current optimization efforts focus on hardware, software, and algorithmic improvements:
-
Hardware: Dedicated Display Memory and GPU
Traditional e‑readers rely on the CPU for image processing, but color e‑ink waveform control is too complex. Some manufacturers add a dedicated display processor to handle image conversion and waveform generation, reducing CPU load and improving refresh speed.
-
Software: Dynamic Refresh Modes
Manufacturers offer preset modes such as Fast or A2 Mode. These reduce color depth and resolution (using dithering) to increase speed. Page turns become very fast, and even cursor movement becomes visible, but noise and ghosting increase.
-
Algorithms: Waveform Optimization
Shortening voltage pulses allows particles to stop before reaching their “final” position, enabling quicker transitions.
Conclusion
Given current technology, e‑ink’s core strengths remain long‑term static display, low power consumption, and high readability. It cannot yet match TFT‑based displays in color vibrancy or interactive speed.
Should you have any questions, please consult our engineering.
Shop our E-Ink Display here: https://orientdisplay.com/e-paper/
Understanding the Relationship Between Touch IC Driver, Firmware, and Configuration
When working with a Capacitive Touch Panel (CTP) software engineering team, we often refer to the terms Driver, Firmware (FW), and Configuration. These three concepts are not only discussed during the design phase, but are also repeatedly involved in later stages such as testing and validation.
Understanding the relationship and differences between them is fundamental to carrying out our related work effectively.
Recently, one of my customer asked: is it possible that different Touch ICs can use a same driver. Well, as an engineer, I fully understand the reason behind this question. If we can use one driver on different touch ICs, it will greatly reduce the development effort, maintenance cost and overall system complexity.
This article may be helpful for you to understand the relationship between driver, firmware and configuration, and answer the question above.
-
Driver
A driver is a host-side software that enables on the operating system (for example, Linux / Android / RTOS) or main controller to communicate with a hardware device. In a touch system, the driver is responsible for handing the communication protocol (such as I2C or SPI), reading and writing registers, parsing touch data, and reporting touch events to the system. The driver is a bridge between the host and the hardware, here, is the touch.
-
Firmware (FW)
Firmware (FW) is the software that run on the internal MCU of the touch IC and controls its core functions and behavior. In a touch system, the firmware determines how the touch IC works want what data it output. It can capture the touch signals, execute touch algorithms, manages TX/RX channels, and defines the data format.
Here, you may notice the most significant difference between driver and firmware. Driver always works on the host MCU, it is on the host side; while firmware runs on the touch IC. In a word, the driver helps the host to understand and receive the touch date, it is the “translator” between the MCU and the touch IC. While, firmware is the “brain” of the touch IC, it tells the IC what to do and how to do.
-
Configuration (Parameter Settings)
Different from driver and firmware, configuration itself is not a software, it is a set of parameters used to adjust how a touch IC operates, it provides the numerical and structural parameters that the firmware uses during operation. As a result, the same touch IC and firmware can work with different touch panels without modifying the touch algorithms*.
*What is algorithm logic? In one sentence summary, the algorithm logic are the firmware logic that converts the raw capacitive signals into accurate and reliable touch events. The algorithm logic determine whether a touch detected, where it is located, how many touch points are present.
*Here we can take a example to help you understand what a algorithm logic dose. Touch technology is widely used in kitchen appliances. For example, water droplets on an oven control panel can produce capacitive signals similar to a finger touch. The ability to tell water apart from a real finger touch depends on the touch algorithms.
Configuration is not code and does not contain any algorithm logic. It is stored in Flash of the touch IC, EEPROM, or sometimes it maybe also stored in the firmware. When the system turns on or initialization starts, firmware will read these parameters, and operate the touch algorithms based on these parameters. For example, there are two touch panels with different sizes and sensor patterns, however, we can use the same touch IC and firmware, this is achieved by setting up different configurations.
Now, let’s go back to our customer’s question: is it possible that different Touch ICs can use a same driver? The answer is yes. This is because a driver primarily depends on the communication protocol and data format. Do you remember, we have explain that the driver is the “translator” between the MCU and the driver IC. Same communication protocol and data format means they speak the same language. However, if the communication protocol is different, let’s say SPI and I2C, in this case, you will need two drivers. Normally, as long as the communication protocol and data format are consistent and the ICs belongs to the same series, the driver can be shared.
Should you have any questions, please consult our engineering.
The Future of Display Technology: What Comes After OLED?
From smartphones and smartwatches to TVs, cars, and AR glasses, displays have become the primary interface between humans and technology. While OLED has dominated premium displays for the past decade, the industry is already looking beyond it. New technologies promise higher brightness, longer lifetimes, lower power consumption, and entirely new form factors—but each comes with trade-offs.
So, what does the future of display technology really look like?
Why OLED Isn’t the Final Answer
OLED revolutionized displays with deep blacks, thin panels, and vibrant colors. But it has limitations:
-
Organic materials degrade over time
-
Burn-in remains a concern
-
Peak brightness is limited compared to inorganic solutions
-
Manufacturing costs are high for large or specialty panels
These challenges are driving massive investment into next-generation alternatives.

By Matthew Rollings at English Wikipedia, CC BY 3.0, https://commons.wikimedia.org/w/index.php?curid=14914205
Mini-LED: The Practical Middle Ground
While Micro-LED grabs headlines, Mini-LED is quietly improving today’s LCDs. Instead of hundreds of standard LEDs, Mini-LED displays use thousands of much smaller LEDs arranged behind the panel. These LEDs are grouped into local dimming zones, allowing precise brightness control across the screen.
Mini-LED technology:
-
Uses thousands of tiny LEDs for local dimming
-
Achieves very high brightness
-
Improves contrast dramatically over traditional LCDs
-
Leverages existing manufacturing infrastructure
They may not offer “perfect black” like OLED, but they provide a cost-effective path to premium performance—especially for TVs and monitors.
Micro-LED: The “Ultimate” Display—At a Cost
Micro-LED is often described as the holy grail of display technology.
Each pixel is a tiny inorganic LED, meaning:
- No backlight is required
- Brightness can exceed 4,000–5,000 nits
- Lifetimes exceed 10,000 hours
- No burn-in risk
- Exceptional contrast and outdoor readability
This makes Micro-LED ideal for wearables, premium TVs, and high-brightness applications.
The Problem?
Manufacturing.
Micro-LED requires:
- Precise placement of millions of microscopic LEDs
- New fab lines
- Low yields (for now)
- Extremely high cost
In real-world products, Micro-LED displays can add hundreds of dollars compared to OLED. For now, Micro-LED is a technology showcase, not a mass-market solution.

https://ph.garmin.com/products/wearables/fenix-8-microled/
Quantum Dots: The Silent Game-Changer
Quantum dots (QDs) are already everywhere—their role is expanding. Quantum Dot (QD) technology is a display enhancement method that uses nanometer-scale semiconductor crystals to produce extremely pure and accurate colors. When exposed to light or electricity, quantum dots emit very precise wavelengths of red, green, or blue — resulting in brighter images, richer colors, and higher efficiency than traditional display materials. Quantum dots are incredibly small— thousands of times thinner than a human hair. Their size determines the color they emit:
- Smaller dots → Blue light
- Medium dots → Green light
- Larger dots → Red light

Lee J H. QD Display: A Game‐Changing Technology for the Display Industry[J]. Information Display, 2020, 36(6): 9-13.
Today
- Used in QD-LCD and QD-OLED to improve color purity and brightness
Tomorrow
- Electroluminescent Quantum Dots (QDEL / EL-QD / NanoLED) could become fully self-emissive displays
- Similar benefits to OLED, but with:
- Higher brightness
- Better stability
- Potentially lower cost
The Catch
Many high-performance quantum dots rely on cadmium, a hazardous material. The race is on to develop cadmium-free alternatives that maintain the same performance.
If successful, quantum-dot displays could leapfrog Micro-LED by using existing fab lines instead of building entirely new ones.
Why Manufacturing Matters More Than Technology
In display history, the “best” technology doesn’t always win.
What matters most:
- Yield
- Cost per panel
- Scalability
- Supply chain readiness
This is why:
- LCD survived for decades
- OLED took years to mature
- Micro-LED may take longer than expected
The future belongs to technologies that balance performance and manufacturability, not just lab results.
What the Next 10 Years May Look Like
Rather than one winner, expect multiple display technologies to coexist:
- Short term (now–2028)
OLED, Mini-LED, QD-OLED dominate consumer products - Mid term (2028–2032)
Early Micro-LED and QDEL adoption in wearables, automotive, and premium devices - Long term (2030+)
New emissive technologies enable AR glasses, ultra-bright outdoor displays, and ultra-thin form factors
Final Thoughts
The future of display technology isn’t just brighter or sharper—it’s about efficiency, durability, and enabling new experiences. Whether Micro-LED becomes mainstream or quantum dots take the lead, one thing is clear:
The display is no longer just a screen—it’s the product, a brand differentiator.
Companies that invest in the right display technology today will define:
- How products look
- How long they last
- How users experience them
The future of display technology is brighter, smarter, and closer than you think.
Should you have any questions, please consult our engineering.
Requirements for Medical Display Modules
Medical displays are not simply “brighter and more expensive monitors”. They are system-level engineering products, covering optics, electronics, grayscale fidelity, long-term stability, and regulatory compliance.
This blog provides a technical, engineering-oriented breakdown, clearly distinguishing:
- Mandatory requirements
- Advanced requirements for high-end or diagnostic-grade displays
1. Classification of Medical Displays
| Grade | Typical Use Cases | Stringency |
| Observation / Clinical Review | OR auxiliary displays, patient monitoring, endoscopy, PACU, bedside viewing | ★★★☆☆ |
| Clinical (General Clinical Use) | Routine clinical image review, department workstations | ★★★★☆ |
| Diagnostic | Radiology, mammography, pathology, image-based diagnosis | ★★★★★ |
Important:
Most products marketed as “medical displays” only meet observation-grade requirements.
True diagnostic-grade displays are far more demanding, with a significant cost gap.
2. Optical & Display Core Requirements (Most Critical)
2.1 Resolution & Size Matching (Mandatory)
Principle:
- Image pixel resolution should match the native panel resolution
- Strong interpolation or upscaling that affects diagnostic fidelity is unacceptable
2.2 Luminance (Brightness) (Mandatory / Stricter for Diagnostic)
| Grade | Typical Peak Luminance |
| Observation | ≥ 300 cd/m² |
| Clinical | ≥ 400 cd/m² |
| Diagnostic | ≥ 1000 cd/m² (Mammography ≥ 2000 cd/m²) |
Requirements:
- Long-term luminance decay ≤ 10–15%
- Stable operation under continuous use
Common Techniques:
- LED constant-current backlight driving
- Integrated luminance sensor (for closed-loop control)
2.3 Contrast Ratio & Black Level (Mandatory)
Typical Targets:
- Observation / Clinical: ≥ 1000:1
- Diagnostic: ≥ 1500–2000:1
Black level must be minimized, especially for lung and soft-tissue visualization.
2.4 Grayscale Performance & DICOM GSDF (Mandatory for Diagnostic)
This is one of the fundamental differentiators of medical displays.
- Diagnostic displays must comply with DICOM Part 14 (GSDF)
- Displays without DICOM GSDF compliance cannot legally be marketed as diagnostic displays
Technical Requirements:
- True 10-bit grayscale (1024 levels)
- Diagnostic-grade commonly uses 12-bit LUT + 10-bit panel
- Long-term grayscale consistency without drift
- Support for automatic or semi-automatic DICOM calibration
2.5 Color Performance (Application-Dependent)
| Application | Color Requirement |
| Ultrasound / Monitoring | sRGB, 8-bit sufficient |
| Endoscopy / Surgery | High color gamut & color accuracy |
| Pathology | High color accuracy, ΔE ≤ 2 |
High-end configurations:
- Adobe RGB ≥ 90%
- True 10-bit color depth
- Long-term color stability
3. Stability & Reliability (Critical for Medical Use)
3.1 Long-Term Stability & Aging (Mandatory / Diagnostic Critical)
- 24/7 continuous operation
- Aging tests ≥ 10,000–50,000 hours
- Controlled drift in luminance, grayscale, and color
3.2 Luminance Uniformity (Mandatory / Diagnostic Critical)
| Grade | Uniformity Target |
| Clinical | ≥ 80–85% |
| Diagnostic | ≥ 90–95% |
Typical Techniques:
- Panel-level zone compensation
- Factory uniformity correction LUTs
3.3 Viewing Angle Consistency (Mandatory)
- IPS or equivalent wide-view technology
- No grayscale distortion with viewing angle changes (critical for diagnosis)
4. Hardware & Mechanical Design (Often Underestimated)
4.1 Electrical Interface (Mandatory)
Common Interfaces:
- DisplayPort (preferred)
- DVI (legacy systems)
- HDMI (not preferred for medical-critical use)
Requirements:
- Stable high-resolution output
- EMI robustness for medical environments
4.2 Surface, Housing & Medical Environment Compatibility (Mandatory)
- Easy to clean
- Resistant to disinfectants
Optional Enhancements:
- Liquid ingress protection (IPx1 / IPx2)
- White or medical-gray surfaces to reduce reflections
4.3 Power System Reliability (Mandatory)
- Medical-grade power design
- Strong EMI / ESD immunity
- Strict leakage current control
5. Software & Quality Control (Invisible Core)
QA / QC System (Mandatory for Diagnostic)
- Individual factory calibration report per unit
- Per-unit LUT calibration
- Full serial-number traceability
6. Regulatory & Compliance (Critical)
| Category | Standard |
| Electrical Safety | IEC 60601-1 |
| EMC | IEC 60601-1-2 |
| Medical Software | IEC 62304 |
| China | NMPA (formerly CFDA) |
| USA | FDA (Class I / II) |
| EU | CE / MDR |
DICOM Compliance Declaration (Diagnostic Mandatory):
- Explicit statement of DICOM Part 14 support
- Test and validation documentation
7. Engineering Summary
Observation-Grade Medical Displays (Most Common)
- IEC 60601 compliant
- Stable luminance & reliability
- DICOM GSDF not mandatory
True Diagnostic Medical Displays
- Full DICOM GSDF pipeline
- Stable grayscale & uniformity
- 12-bit LUT + luminance sensor
- Calibration & QA systems
- Cost typically 3–10× consumer displays
8. Observation-Grade Medical Display Module Requirements
(LCD Module Level)
Observation-grade ≈ clinical review, monitoring, surgical viewing
Not used for final diagnosis
Requirements are relaxed compared to diagnostic grade, but still governed by IEC 62563-1
8.1 Optical Performance (Panel-Level)
Resolution & Pixel Density
- Common: FHD (1920×1080), 1920×1200, 2560×1440
- Recommended pixel pitch ≤ 0.27 mm
Grayscale
- Minimum 8-bit
- Preferred: 8-bit + FRC (~10-bit equivalent)
8.2 Luminance / Contrast / Uniformity
- Typical peak luminance: 350–400 cd/m²
- Calibrated working luminance: ≥ 250–300 cd/m²
- Contrast ratio: ≥ 1000:1
- Black level: ≤ 0.3 cd/m² (at working luminance)
- Uniformity: ≥ 80–90% (min/center)
8.3 Panel Technology & Viewing Angle
- IPS / ADS preferred
- Viewing angle ≥ 178° / 178°
- TN panels are not acceptable
8.4 Grayscale Linearity & Gamma
- Stable Gamma 2.2 default
- Smooth grayscale transitions, no banding
- Reserve headroom for future DICOM calibration
8.5 Color Performance (Color-Critical Observation)
- ≥ 100% sRGB
- Optional: ≥ 95% DCI-P3
- ΔE_avg < 2–3 after calibration
- White point: D65 (≈ 6500K)
8.6 Stability & Aging
- Backlight constant-current control
- Temperature compensation
- Target lifetime: 30k–50k hours
- Reserved positions for luminance / temperature sensors
8.7 Electrical & Interface
- eDP 1.2+ or dual-channel LVDS
- 8/10-bit support
- ≥ 60 Hz refresh (video/endoscopy: 75–120 Hz recommended)
- PWM + DC dimming with flicker control
- Wide dimming range (1–10% to 100%)
8.8 Mechanical & Environmental Design
- Support optical bonding
- AG / AR / AF surface treatment
- Alcohol & disinfectant resistance
- Thermal design suitable for 7×24 operation
9. Typical Applications (Observation-Grade)
9.1 Life-Support & Therapy Devices (Bedside / OR)
These are classic observation-grade displays: continuous viewing, safety-critical, but not image-diagnostic.
Respiratory & Critical Care
- Ventilators
- ICU ventilators
- Transport ventilators
- Anesthesia ventilators
- Neonatal ventilators
- Resuscitators
- Manual & automated resuscitation systems
- CPAP / BiPAP devices (clinical versions)
- Oxygen concentrators (hospital-grade)
Display role:
Waveforms, numeric parameters, alarms, trends
9.2 Infusion & Drug Delivery Systems
All are observation-grade, even though they are safety-critical.
Pumps
- Infusion Pumps
- Volumetric infusion pumps
- Smart infusion pumps
- Syringe Pumps
- PCA Pumps (Patient-Controlled Analgesia)
- Insulin infusion systems (hospital use)
- Enteral feeding pumps
Display role:
Dosage, flow rate, volume, time remaining, alarms
9.3 Patient Monitoring Devices
Vital-Signs Monitoring
- ECG Monitors
- Multi-parameter Monitors
- ECG
- SpO₂
- NIBP / IBP
- Respiration
- Temperature
- Bedside monitors
- Central monitoring stations (viewing-only screens)
Neuro / Physiological Monitoring
- EEG monitors (routine monitoring)
- EMG monitors
- Sleep monitoring systems
Borderline:
EEG used for research or clinical monitoring → Observation
EEG used for formal neurological diagnosis → Diagnostic-adjacent
9.4 Imaging Devices (Viewing, Not Diagnosis)
These are very common sources of confusion.
Ultrasound
- Ultrasound systems (real-time viewing)
- Portable ultrasound
- POCUS (Point-of-Care Ultrasound)
Diagnostic decisions are often made with ultrasound,
but the display itself is usually observation-grade, not DICOM-calibrated.
9.5 Endoscopy & Surgical Visualization
Endoscopic Systems
- Gastroscopes
- Colonoscopes
- Bronchoscopes
- Laparoscopes
- Arthroscopes
- Ureteroscopes
Surgical Displays
- OR surgical monitors
- Surgeon-side displays
- Assistant displays
Display role:
Real-time color video, motion clarity, low latency
Key point:
These are never diagnostic-grade displays, even though surgeons make decisions while viewing them.
9.6 Emergency & Acute Care Equipment
- Defibrillators
- AEDs
- Manual defibrillators
- Patient transport monitors
- Ambulance monitors
- Portable emergency monitors
9.7 Laboratory & Clinical Instruments
Analytical Devices
- Blood glucose meters
- Alcometers (breath alcohol testers)
- Blood gas analyzers
- Coagulation analyzers
- Immunoassay analyzers
Lab Equipment
- Centrifuges
- Incubators
- Blood cell counters
- Urine analyzers
Display role:
Results display, status, workflow, alarms
9.8 Renal & Long-Term Therapy Devices
- Dialysis machines
- Hemodialysis
- Peritoneal dialysis
- CRRT systems
9.9 Medical IT & Workflow Displays
- Digital medical records terminals
- Nurse station displays
- Clinical workflow panels
- Medication administration record (MAR) terminals
- Bedside information displays
- Patient-facing displays (education/status)
9.10 Rehabilitation & Assistive Devices
- Physiotherapy equipment
- Rehabilitation robots
- Gait analysis systems
- Patient feedback terminals
9.11 Portable & Home-Care Medical Devices (Clinical Grade, Not Consumer)
- Hospital-grade portable monitors
- Home dialysis systems (clinical versions)
- Remote patient monitoring hubs
- Telemedicine carts (display side)
Summary Table (Quick Reference)
| Category | Observation-Grade? | Notes |
| Ventilators | Yes | Safety-critical, non-diagnostic |
| Infusion / Syringe / PCA pumps | Yes | Numeric + alarm displays |
| ECG / Multi-parameter monitors | Yes | Diagnostic logic elsewhere |
| EEG (routine monitoring) | Yes | Diagnostic only if formal neuro |
| Ultrasound displays | Yes | Typically not DICOM |
| Endoscopy / Surgical displays | Yes | Video accuracy > grayscale |
| Defibrillators | Yes | Numeric + waveform |
| Dialysis machines | Yes | Continuous monitoring |
| Blood glucose meters | Yes | Result display |
| Lab analyzers | Yes | Data review only |
| EMR / Nurse station displays | Yes | Workflow viewing |
10. Common Display sizes for Observation-Grade Medical Applications
Application → Optimal Panel Size (Small → Large)
| Medical Application | Typical Viewing Distance | Info Density | Recommended Panel Size(s) | Why This Size Is Optimal |
| Blood Glucose Meter | Handheld (30–40 cm) | Low | 3.5″ | Numeric + simple graphs; handheld ergonomics dominate |
| Alcometer (Breath Alcohol Tester) | Handheld | Very Low | 3.5″ | Digits, icons, pass/fail status only |
| Portable Pulse Oximeter | Handheld | Low | 3.5″ → 4.3″ | SpO₂, pulse waveform; 4.3″ improves readability |
| Syringe Pump | Bedside (0.5–1 m) | Low–Medium | 4.3″ → 5″ | Flow rate + alarms; must be readable at angle |
| PCA Pump | Bedside | Medium | 4.3″ → 5″ | Adds patient status + lockout info |
| Infusion Pump | Bedside | Medium | 5″ | Multiple parameters + trend visibility |
| Portable ECG Monitor | Bedside / Transport | Medium | 5″ → 7″ | Waveform clarity becomes important |
| Patient Monitor (Basic) | Bedside | Medium | 7″ | Multi-wave + numeric panels |
| Ventilator | Bedside | Medium–High | 7″ → 10.1″ | Loops, waveforms, settings simultaneously |
| Resuscitator / Emergency Ventilation Unit | Mobile / Emergency | Medium | 7″ | Quick recognition, gloves, harsh lighting |
| Defibrillator (Manual / AED) | Emergency | Medium | 7″ | ECG waveform + prompts + alarms |
| Multi-Parameter Monitor | ICU / OR | High | 10.1″ → 12.1″ | ECG, SpO₂, BP, CO₂, trends |
| EEG Monitor (Bedside) | Clinical workstation | High | 10.1″ → 12.1″ | Dense waveforms; longer observation |
| Centrifuge Control Panel | Equipment front panel | Medium | 5″ → 7″ | Parameters + program selection |
| Ultrasound (Portable) | Near-field viewing | High | 10.1″ | Image interpretation needs area |
| Ultrasound (Cart-based) | Workstation | Very High | 12.1″ → 15.6″ | Imaging clarity over portability |
| Endoscopy Processor (Gastroscope) | OR cart | High | 10.1″ → 15.6″ | Color accuracy + detail |
| Dialysis Machine | Bedside | Medium–High | 10.1″ | Treatment duration + trends |
| Digital Medical Records Terminal | Nurse station | Medium | 10.1″ → 15.6″ | Readability + touch usability |
Key Engineering Patterns
10.1 Small Control Devices → 3.5″ / 4.3″
Common traits
- Handheld or single-hand operation
- Numeric-dominant UI
- BOM-sensitive
- Battery powered
Typical platform
- 3.5″ or 4.3″ TFT
- 480×272 or 800×480
- RGB or LVDS
- 400–600 nits
10.2 Bedside Therapy Devices → 5″ / 7″
Common traits
- Must be readable from 0.5–1 m
- Waveforms + numeric overlays
- Gloved operation
- Continuous 24/7 use
Typical platform
- 5″ or 7″ TFT
- 800×480 / 1024×600 / 1280×800
- IPS, wide angle
- High contrast + stable backlight
10.3 Monitoring & Imaging Consoles → 10.1″+
Common traits
- Multi-parameter visualization
- Trend charts + waveforms
- Longer viewing sessions
- Less BOM pressure, more reliability pressure
Typical platform
- 10.1″ / 12.1″ TFT
- 1280×800 / 1920×1080
- Optical bonding
- Tight uniformity & color stability
Platform-Unification View (What You Can Reuse)
| Platform Size | Can Serve Applications |
| 3.5″ | Glucose, alcohol, small handheld monitors |
| 4.3″ | Syringe pumps, PCA pumps, portable oximeters |
| 5″ | Infusion pumps, transport ECG |
| 7″ | Ventilators, defibrillators, bedside monitors |
| 10.1″ | ICU monitors, dialysis, ultrasound, endoscopy |
- A 5-SKU panel strategy can realistically cover 90% of observation-grade devices
11. System-level, engineering-oriented mapping
11.1 Full list of Observation-Grade Medical Applications (practical scope)
Observation-grade = not for final diagnosis, but for monitoring, control, visualization, workflow, and guidance.
Life-support & Therapy Devices
- Ventilators / Respirators
- Anesthesia machines
- Dialysis machines
- Oxygen concentrators
- Resuscitators
- Defibrillators
Infusion & Drug Delivery
- Infusion pumps
- Syringe pumps
- PCA pumps (patient-controlled analgesia)
- Enteral feeding pumps
Monitoring & Vital Signs
- ECG monitors
- EEG monitors
- Multi-parameter monitors (ECG + SpO₂ + NIBP + Temp)
- Fetal monitors
- Bedside monitors
- Transport monitors
Imaging (non-diagnostic display role)
- Ultrasound front panels
- Ultrasound secondary displays
- Endoscopy systems (gastroscope, colonoscope)
- Surgical camera systems
- C-arm auxiliary displays
Laboratory & Point-of-Care
- Blood glucose meters
- Blood gas analyzers
- Alcometers
- Centrifuges
- Hematology analyzers
- Immunoassay analyzers
Emergency & Transport
- Ambulance monitors
- Portable ultrasound
- Portable ventilators
- Emergency carts
Clinical IT & Workflow
- EMR terminals
- Nurse station displays
- Bedside information terminals
- Medical tablets / HMIs
11.2 Mapping Table: Application → Optimal Panel Size (Small → Large)
Rule of thumb
- Data-centric → small
- Waveform-centric → medium
- Image-centric → large
| Application | Optimal Size | Acceptable Range | Rationale |
| Blood glucose meter | 3.5″ | 3.2–4.3″ | Numeric-dominant, battery device |
| Alcometer | 3.5″ | 3.2–4.3″ | Simple UI, handheld |
| Syringe pump | 3.5″ | 3.5–4.3″ | Rate + volume + alerts |
| PCA pump | 3.5″ | 3.5–4.3″ | Button-driven UI |
| Infusion pump | 4.3″ | 4.3–5″ | Better trend & alarms |
| Ventilator (compact) | 5″ | 4.3–7″ | Waveforms + loops |
| Ventilator (ICU) | 7″ | 7–10.1″ | Multiple waveforms |
| ECG monitor (basic) | 5″ | 5–7″ | ECG + vitals |
| Multi-parameter monitor | 7″ | 7–10.1″ | ECG + SpO₂ + NIBP |
| Transport monitor | 5″ | 4.3–7″ | Power-limited |
| EEG monitor (bedside) | 7″ | 7–10.1″ | Multi-channel waves |
| Endoscopy control unit | 10.1″ | 7–12.1″ | Image + menu |
| Ultrasound (secondary) | 10.1″ | 10.1–12.1″ | Image-centric |
| Dialysis machine | 10.1″ | 7–12.1″ | Process visualization |
| Defibrillator | 5″ | 4.3–7″ | ECG + prompts |
| EMR bedside terminal | 10.1″ | 10.1–15.6″ | Text + UI |
11.3 Mapping: Application → SoC / Interface / Power Profile
This is where platform reuse becomes clear.
Small Panel Platform (3.5″–4.3″)
Typical Applications
- Syringe pump
- PCA pump
- Glucose meter
- Alcometer
SoC
- STM32F4 / F7 / H7
- NXP i.MX RT
- GD32 / Renesas RA
- No GPU required
Interface
- RGB 16/18/24-bit
- MCU-driven TFT
- SPI + RGB hybrid
Power Profile
- Backlight: 1–2 W
- Total display module: < 3 W
- Battery-friendly
Display Characteristics
- 400–600 nits
- 800:1–1000:1
- 8-bit or 8-bit+FRC
- PWM + DC dimming mandatory
Medium Panel Platform (5″–7″)
Typical Applications
- Ventilators
- ECG monitors
- Infusion pumps
- Defibrillators
- Transport monitors
SoC
- NXP i.MX6ULL / i.MX7
- Allwinner T113 / V3
- Rockchip RK3308
- Sitara AM335x
Interface
- RGB (low end)
- LVDS (most common)
- Single-lane eDP (emerging)
Power Profile
- Backlight: 3–6 W
- Module total: 4–8 W
Display Characteristics
- ≥500 nits
- IPS mandatory
- 60–75 Hz
- Optical bonding highly recommended
Large Panel Platform (10.1″–12.1″)
Typical Applications
- Dialysis
- Ultrasound UI
- Endoscopy processors
- Multi-parameter ICU monitors
SoC
- NXP i.MX8M / i.MX8MP
- Rockchip RK3566 / RK3568
- TI AM62 / AM64
- Qualcomm QCS (high-end)
Interface
- eDP (preferred)
- Dual-channel LVDS (legacy)
- MIPI-DSI (tablet-like designs)
Power Profile
- Backlight: 6–12 W
- Module total: 8–15 W
Display Characteristics
- 500–800 nits
- Better uniformity
- Optional touch (PCAP)
- Strong EMI design required
11.4 Extracted Common Denominators → One Platform Module Strategy
What all observation-grade devices share
| Dimension | Common Requirement |
| Display type | IPS / ADS only |
| Brightness | ≥400 nits |
| Operation | 24/7 capable |
| EMI | IEC 60601-1-2 ready |
| Backlight | DC + PWM dimming |
| Temperature | −10 to +60 °C panel-safe |
| Lifetime | ≥30k–50k hours |
| Cleaning | Alcohol-resistant front |
Recommended Platform Family
| Platform | Size | Interface | Target Devices |
| Platform-S | 3.5″/4.3″ | RGB | Pumps, meters |
| Platform-M | 5″/7″ | LVDS | Ventilator, ECG |
| Platform-L | 10.1″ | eDP | Dialysis, ultrasound |
Each platform:
- Same backlight driver architecture
- Same optical bonding strategy
- Same reliability qualification flow
- Different glass & resolution only
11.5 MCU, low end MPU, MPU and Soc Explained
MCU (Microcontroller Unit)
- Single-chip control brain
- CPU + Flash + SRAM + peripherals on one die
- Typically no external DRAM
- Runs bare-metal or RTOS (FreeRTOS, Zephyr)
Key characteristics
| Aspect | MCU |
| OS | Bare-metal / RTOS |
| External DRAM | ❌ No |
| MMU | ❌ No |
| Clock | ~50–300 MHz |
| Power | Very low |
| Cost | Very low |
| Boot time | Instant |
Display capability
- Small displays only
- RGB, SPI, 8080 interface
- Simple UI (numbers, icons, basic waveforms)
Examples
STMicroelectronics
- STM32F4 / F7 / H7
(H7 can do small LCD + simple graphics)
NXP
- LPC55xx
- i.MX RT1060 / RT1170 (MCU but very fast)
Microchip
- SAM E70
Medical use cases
✔ Syringe pumps
✔ PCA pumps
✔ Simple infusion pumps
✔ Blood glucose meters
✔ Small ECG transport monitors
Rule of thumb:
If UI is simple, deterministic, and safety-critical → MCU wins
Low-End MPU (Entry-Level Application Processor)
This category sits between MCU and full MPU
- Application processor without GPU
- External DDR memory
- Often no MMU or very limited graphics acceleration
- Can run Embedded Linux or RTOS
Key characteristics
| Aspect | Low-end MPU |
| OS | RTOS / Embedded Linux |
| External DRAM | Yes |
| MMU | Limited |
| GPU | No |
| Clock | ~400–800 MHz |
| Power | Low–medium |
| Cost | Low |
Display capability
- 4.3″–7″ LCD
- RGB / LVDS / MIPI-DSI
- Moderate UI complexity
Examples
NXP
- i.MX6ULL
- i.MX7ULP
Microchip
- SAMA5D27
Allwinner
- F1C200s / V3s (very common in Chinese pumps)
Medical use cases
✔ Infusion pumps (color UI)
✔ Compact ECG monitors
✔ Dialysis machine UI
✔ Portable patient monitors
Rule of thumb:
If you need Linux UI + moderate graphics, but no video → low-end MPU
MPU (Application Processor)
- Full application processor
- External DDR
- MMU + often basic GPU
- Runs Linux
Key characteristics
| Aspect | MPU |
| OS | Embedded Linux |
| External DRAM | Yes |
| MMU | Yes |
| GPU | Basic |
| Clock | ~1–1.5 GHz |
| Power | Medium |
| Cost | Medium |
Display capability
- 7″–10.1″
- LVDS / MIPI-DSI / eDP
- Waveforms + video + rich UI
Examples
NXP
- i.MX6 Solo / DualLite
- i.MX8M Mini
Rockchip
- RK3288
- RK3566
Allwinner
- A64 / A133
Medical use cases
✔ Ventilators
✔ Multi-parameter monitors
✔ Bedside ECG monitors
✔ Endoscopy processor UI
Rule of thumb:
If you need waveforms + animations + Linux UI, choose MPU
SoC (System-on-Chip)
Technically everything above is a SoC,
but in industry people say “SoC” to mean high-integration + GPU/video
- MPU plus GPU + video codec + AI accelerators
- Multiple display pipelines
- Multimedia-grade
Key characteristics
| Aspect | SoC |
| OS | Linux / Android |
| External DRAM | Yes |
| GPU | Strong |
| Video | Encode/decode |
| Clock | 1–2+ GHz |
| Power | Medium–high |
| Cost | Higher |
Display capability
- 10.1″+
- Multiple displays
- High-FPS waveforms, video, camera input
Examples
NXP
- i.MX8M Plus (GPU + ISP)
Rockchip
- RK3588
Qualcomm
- QCS610 / QCS6490
Medical use cases
✔ Ultrasound
✔ Advanced endoscopy
✔ Imaging carts
✔ AI-assisted monitors
Rule of thumb:
If you need video, camera, AI, multi-display → SoC
Quick Comparison Table
| Category | MCU | Low-end MPU | MPU | SoC |
| External DDR | No | Yes | Yes | Yes |
| Linux | No | Basic | Yes | Yes |
| GPU | No | No | Basic | Yes |
| Typical display | ≤4.3″ | 4.3–7″ | 7–10.1″ | 10.1″+ |
| UI complexity | Low | Medium | High | Very high |
| Power | Very low | Low | Medium | Medium–High |
| Cost | $ | $$ | $$$ | $$$$ |
Medical Display-Centric Recommendation
Observation-grade medical display platform sweet spot
| Device | Best choice |
| Syringe / PCA pump | MCU |
| Infusion pump | MCU → low-end MPU |
| ECG transport | Low-end MPU |
| ECG bedside | MPU |
| Ventilator | MPU |
| Multi-parameter monitor | MPU |
| Ultrasound / endoscopy | SoC |
One-line takeaway
MCU = control
Low-end MPU = simple Linux UI
MPU = waveform-heavy medical UI
SoC = video / imaging / AI
Should you have any questions, please consult our engineering.
Optimizing LCD Cover Glass for Enhanced IR Sensor Performance
When designing applications that rely on infrared technology—be it a sleek smartphone with facial recognition or a responsive optical touch interface—a critical challenge often arises: the cover glass, meant to protect the display, can significantly attenuate the IR signal.
Orient Display FAE team is here to help! This essay offers a clear comparison of glass types and thicknesses to guide you in selecting a solution that maximizes transmittance and ensures end-user reliability.
What is Light Transmittance of LCD Glass Cover?
Light transmittance refers to the percentage of incident light that can pass through the glass cover of a display. It is expressed in percentage (%).
Example: A transmittance of 85% means 85% of the incoming light can pass through the glass.
Factors Affecting LCD Cover Glass Transmittance
| Factor | Description & Impact |
| Glass Type | The material composition is fundamental. Soda-lime glass, Ultra-clear glass (low-iron), and Aluminosilicate glass (e.g., Gorilla Glass) have different inherent transmittance. Low-iron glass typically offers higher transmittance. |
| Thickness | Thicker glass leads to greater light absorption and scattering. Thinner glass generally provides higher transmittance. For example, transmittance may increase from ~81% at 2.9 mm to ~87% at 2.0 mm for Soda-lime glass. |
| Surface Coating | Coatings like Anti-Glare (AG), Anti-Reflection (AR), and Anti-Fingerprint (AF) alter how light interacts with the surface. While AG may reduce it, AR coating is specifically designed to increase transmittance by reducing surface reflection. |
| Polarizer Attachment | Adding a polarizer changes the light’s polarization state and typically reduces overall transmittance significantly. Special “high-brightness” polarizers can recover a small amount (~1.3-1.5%). |
| Boarder Silk Screen Printing | Black ink printing on the borders is opaque and blocks all light. This does not affect the material’s intrinsic transmittance but reduces the effective viewable area for light transmission. |
Why 940 nm Is Important in LCD Applications
While visible-light transmittance affects display brightness and clarity, the transmittance at infrared wavelengths—especially around 940 nm.
940 nm refers to the wavelength of infrared light, the transmittance of cover glass at 940 nm is critical for ensuring accurate sensor performance, Infrared light (IR) at 940 nm is widely used in proximity sensors, facial recognition, optical touch, and remote-control systems because it is safe, energy-efficient, and undetectable to the human eyes.
Many modern electronic devices integrate sensors that rely on infrared light. These components are often located behind the cover glass of displays or touch panels.
| Application | Usage of 940 nm IR |
| Smartphone face recognition | IR illumination and depth sensing |
| Proximity & gesture sensors | IR reflection and detection |
| IR touch and in-display fingerprint | Optical transmission through cover glass |
| Remote controls / IR communication | 940 nm IR LED |
| TOF (Time-of-Flight) sensors | Distance and depth mapping |
For these functions to work properly, the cover glass must allow sufficient infrared light to pass through. In many specifications, a minimum IR transmittance (such as ≥80% at 940 nm) is required.
Glass Material Effect
Different glass types have different absorption characteristics for near-infrared light.
| Glass Type | Transmittance at 940 nm |
| Standard soda-lime glass | ~75–82% |
| Low-iron ultra-clear glass | ~85–90% |
| Gorilla/ Dragontrail or aluminosilicate glass | ~88–92% |
Infrared Transmittance at 940 nm — by Glass Type & Thickness
Standard Soda-Lime Glass
| Thickness | Typical IR Transmittance at 940 nm |
| 3.0 mm | 74% – 78% |
| 2.9 mm | 79% – 81% |
| 2.5 mm | 80% – 82% |
| 2.0 mm | 83% – 87% |
| 1.1 mm | 85% – 87% |
| 0.7 mm | 86% – 88% |
Low-Iron Ultra-Clear Glass
| Thickness (mm) | Typical IR Transmittance at 940 nm (%) |
| 3.0 mm | 84% – 87% |
| 2.9 mm | 85% – 87.5% |
| 2.5 mm | 87% – 89% |
| 2.0 mm | 89% – 91% |
| 1.1 mm | 91% – 93% |
| 0.7 mm | 92% – 94% |
* Low iron reduces absorption and improves clarity, especially helpful for both visible and infrared wavelengths.
Aluminosilicate / Gorilla Glass/ Dragontrail
| Thickness (mm) | Typical IR Transmittance at 940 nm (%) |
| 2.9 mm | 88% – 90% |
| 2.0 mm | 90% – 92% |
| 1.5 mm | 91% – 93% |
| 1.1 mm | 92% – 94% |
| 0.7 mm | 93% – 95% |
Chemically strengthened aluminosilicate glass has the best infrared transmittance, making it ideal for cover glass over sensors, cameras, and biometric modules.
Comparison Summary
| Glass Type | IR Performance | Strength | Cost | Typical Usage |
| Standard Soda-Lime | Low | Low | ★ | Basic cover glass, low-cost devices |
| Low-Iron Ultra-Clear | Medium | Medium | ★★ | Displays, automotive, touch cover |
| Aluminosilicate | High | High (chem-strengthened) | ★★★ | Premium cover glass, sensor window, face/fingerprint ID |
Application Guidance
| Use Case | Recommended Glass |
| Standard display cover | Standard soda-lime or low-iron glass |
| High-brightness display | Low-iron ultra-clear glass |
| Optical/fingerprint touch | Low-iron or aluminosilicate glass |
| Face ID / IR sensing / camera | Aluminosilicate (thin, high IR transmission) |
| Automotive HUD / display | Low-iron or aluminosilicate |
Surface Coating Influence infrared performance differently
| Coating Type | IR Impact |
| AR (Anti-Reflection) | Improves IR transmittance |
| AG (Anti-Glare) | May scatter and reduce IR |
| AF (Anti-Fingerprint) | Minimal effect |
| IR-blocking film | Blocks infrared transmission |
Selecting the optimal cover glass is a strategic decision that extends beyond durability and cost. For devices featuring facial recognition, proximity sensing, or optical touch, the cover glass serves as the critical optical gatekeeper. The data presented confirms that by prioritizing high-transmittance materials—such as low-iron or aluminosilicate glass—and minimizing thickness, engineers can effectively future-proof their designs. This approach ensures robust sensor performance, unlocks new user experiences, and maintains a competitive edge in an increasingly sensor-driven market.
Should you have any questions about privacy film, please consult our engineering.
