DEV Community

Cover image for How OLED & LTPO Enable Always-On Displays
Doogal Simpson
Doogal Simpson

Posted on • Originally published at doogal.dev

How OLED & LTPO Enable Always-On Displays

TL;DR: Always-on displays don’t drain your phone battery because they rely on two hardware advancements: OLED panels and LTPO technology. OLEDs save power by physically turning off pixels to display black backgrounds. Meanwhile, LTPO allows the screen’s refresh rate to drop to 1Hz, preventing the CPU from constantly waking up.

I often glance down at my phone sitting on my desk. The screen is technically "sleeping," but the time and a few notification icons are still glowing brightly. As a software engineer, I know that powering a display is usually the most expensive operation on a mobile device. So why doesn't this "always-on" state completely tank my battery by lunchtime?

It comes down to two specific hardware technologies doing heavy lifting in the background: OLED and LTPO.

How do OLED screens save battery on lock screens?

OLED screens save battery by physically turning off individual pixels to display the color black. Since the majority of an always-on lock screen is black, the phone only draws power for the few active pixels showing the time or notifications.

To understand why this matters, I always think about traditional LCDs. Let's say you have an application with a dark mode interface running on an LCD device. To show black, the screen's backlight still blasts at full power, and the liquid crystals just block the light from passing through. It's like leaving the main power breaker on in your house and throwing a heavy blanket over the lamps to make a room dark. You're still paying for the electricity.

OLED (Organic Light-Emitting Diode) panels are fundamentally different. Every single pixel generates its own light. If a pixel needs to be black, it just shuts off entirely. When my phone enters its resting state, roughly 95% of the display is physically powered down.

Why is the CPU the real battery drainer for phone screens?

The display panel itself is only part of the power consumption equation; the CPU driving it is the real battery killer. Traditional screens require the CPU to wake up 60 times a second just to tell the display what to render, which prevents the processor from staying in a deep sleep state.

Even if most of the pixels are turned off because of OLED tech, standard OLEDs still have a fixed refresh rate of 60Hz. Imagine you have a background worker polling a database every 16 milliseconds just to see if a value changed. That constant polling overhead is going to chew through your resources. For a phone, waking the CPU up 60 times a second just to render a static clock is incredibly inefficient. I find that the problem isn't the active pixels—it's the CPU thrashing.

What is an LTPO display and how does it reduce battery usage?

LTPO (Low-Temperature Polycrystalline Oxide) is a backplane technology that improves how capacitance is stored within a pixel, allowing the screen's refresh rate to dynamically scale. For always-on displays, LTPO can drop the refresh rate down to just 1Hz, meaning the CPU only wakes up once per second.

By holding the charge longer, the display doesn't need constant hand-holding from the processor. Instead of waking up 60 times a second, the CPU fires up just once a second to update the minute on the clock or pulse a notification icon. Going from 60 wake-ups a second down to one is a massive reduction in compute cycles. This allows the device to stay in a low-power state almost indefinitely while still showing you relevant information.

Display Technology Power Breakdown

Display Tech Black Pixel Behavior Refresh Rate CPU Wakeups / Sec Battery Impact for Always-On
Standard LCD Backlight stays on, blocks light Fixed 60Hz 60 Severe
Standard OLED Pixels physically turn off Fixed 60Hz 60 Moderate
LTPO OLED Pixels physically turn off Dynamic (down to 1Hz) 1 Minimal

FAQ

Does always-on display cause screen burn-in on OLEDs?

No, modern always-on displays prevent screen burn-in through software tricks. The operating system will imperceptibly shift the position of the clock and icons by a few pixels every minute, ensuring no single pixel is left on for extended periods.

Can LCD screens support an always-on display?

Technically yes, but practically no. Because an LCD requires the entire backlight to be illuminated to show even a single white pixel of text, an always-on state would drain the battery exactly as fast as if you were actively using the phone.

How much battery does an always-on display actually use?

With LTPO and OLED technology combined, an always-on display typically consumes about 1% to 2% of your battery life per hour. If you leave your phone sitting untouched for an entire 8-hour workday, you might only lose around 10% of your total capacity.

Top comments (0)