display-examples

A collection of examples for driving displays from microcontrollers

Home
Display Technologies
Driver Technologies
Control Protocols
Display Libraries for Arduino
TFT LCD Examples
OLED Examples
ePaper Examples
8x8 LED Matrix examples
QR Code Examples
Inventory

This project is maintained by tigoe

Broadcom/Avago Serial LED Display

Avago, now a part of Broadcom, makes a series of multi-character serial 5x7-pixel LED displays. These are small and pretty displays, available in 4-character, 8- and 16-character models. They are quite expensive relative to other displays, and not common as a result.

Photo of a Broadcom/Avago HCMS29xx display attached to an Arduino Uno

Figure 1. Broadcom/Avago HCMS29xx display attached to an Arduino Uno. These displays have a wide supply voltage range, and run on both 5V and 3.3V boards. Photo by me, on the Arduino site.

Pin Connections

The HCMS-29xx displays require the following pin connections from your microcontroller. You can use any of the pins of your controller for these pins, and they are generally defined at the top of your code:

There are also four voltage pins and three ground pins for this display. These displays can be daisy-chained so that you can control multiple displays from the same pins.

HCMS-29xx pin diagram

Figure 2. The HCMS-29xx display pin diagram. Image from Paul Stoffregen’s library page for this display.

Communications Protocol

These displays have a proprietary synchronous serial data interface which is detailed in the data sheet for the series. The Arduino LedDisplay library can control them. Paul Stoffregen currently maintains the library and has an excellent page with the pin wiring and details. The examples included with the library install give examples of what the library supports, and you can find a clock example on the Clock Club repository as well.