Skip to main content

Displays

Displays are one of the primary ways an embedded device communicates with its user. The display technologies commonly used with ESP32 boards fall into three main families: LCD, OLED, and e-paper. Their pixels are integrated into a continuous panel. LCD includes the reflective RLCD variant, while OLED includes passive-matrix OLED (PMOLED) and active-matrix OLED (AMOLED). LED matrices form a separate category because each pixel is an individually packaged LED. These technologies trade off color, power consumption, refresh rate, and readability, so the right choice depends on the application.

This page compares the main display types. The remaining pages explain how each technology works and how to drive it.

1. Display Types at a Glance

Common ESP32 display technologies: LCD (transmissive and reflective RLCD), OLED (PMOLED and AMOLED), and e-paper

  • LCD: Uses a backlight shining through a liquid-crystal layer. LCDs are a general-purpose, cost-effective choice for full-color user interfaces.
  • RLCD: A reflective LCD that uses ambient light instead of a backlight. It offers very low power consumption and excellent sunlight readability, making it suitable for always-on, low-power devices.
  • OLED: Uses self-emissive pixels and therefore requires no backlight. Small monochrome modules, such as common 0.96-inch displays, are usually passive-matrix OLEDs (PMOLEDs) suited to status information.
  • AMOLED: An active-matrix OLED, in contrast to a PMOLED. AMOLED panels provide full color, high contrast, and high resolution and are commonly used in compact devices such as smartwatches.
  • E-paper: Uses electrophoretic ink. A static image consumes no power to maintain and looks similar to printed paper, but updates are slow. E-paper is well suited to electronic shelf labels, calendars, and other infrequently updated displays.
  • LED matrix: Arranges individually packaged LEDs in rows and columns, with one LED package per pixel. LED matrices are bright and can be tiled into large displays, but their coarse pixel pitch limits resolution. They are intended for signs and information displays viewed from a distance.

2. Technology Comparison

Display typeOperating principleColorPower consumptionRefresh rateSunlight readabilityTypical applications
LCDBacklight filtered by liquid crystalsFull colorMedium; mainly the backlightFastFairGeneral-purpose GUIs, instrument panels
RLCDLiquid crystals reflecting ambient lightMonochrome / limited colorVery lowFastExcellentAlways-on watches, outdoor devices
OLEDSelf-emissive organic pixelsUsually monochrome / two-colorLow; black pixels consume no powerFastFairStatus displays, compact instruments
AMOLEDActive-matrix self-emissive pixelsFull color, high contrastLow to mediumFastGoodSmartwatches, high-end interactive devices
E-paperElectrophoretic inkBlack and white / three-color / full colorNone while holding a static imageSlow; typically secondsExcellentElectronic shelf labels, calendars, readers
LED matrixSelf-emissive LED packagesFull colorHigh; requires a high-current supplyFastExcellent at high brightnessSigns, information boards, scoreboards
Outdoor operation

“Sunlight readability” describes how easily a display can be read under strong ambient light. It does not mean the display is designed for prolonged exposure to direct sunlight.

Long-term exposure can cause overheating, UV degradation, adhesive aging, polarizer damage, uneven output, and reduced contrast. Even reflective technologies such as RLCD and e-paper require a module or enclosure rated for the application's temperature range, moisture exposure, and UV conditions.

Use the following questions to narrow down your choice:

  1. Do you need a full-color GUI? Choose LCD or AMOLED. For text and icons only, consider OLED, RLCD, or e-paper.
  2. Is long battery life the priority? Use e-paper when the image changes infrequently, or RLCD when the display must remain visible and update in real time.
  3. Will the display be used in strong ambient light? Start with RLCD or e-paper. For a large, bright display viewed from a distance, use an LED matrix.
  4. Is image quality the priority? AMOLED provides the highest contrast and color performance, generally at the highest cost.

3. Pages in This Guide

Interfaces, touch input, and GUI software are largely independent of the underlying panel technology. This guide includes: