Skip to content
7-Segment

MAX7219 8-Digit 7-Segment Display

SPI-driven numeric display module for larger digit counts.

The MAX7219 is a serial LED driver chip that handles all the multiplexing for an 8-digit 7-segment display internally, so instead of juggling dozens of GPIO pins you drive the whole thing over a simple 3-wire serial link (DIN, CLK, CS/LOAD). You send it 16-bit commands specifying a digit position and a value, and the chip takes care of refreshing the display at a flicker-free rate on its own — the microcontroller never has to babysit the multiplexing.

Because the protocol is dead simple and the chip handles brightness (via a single register) and cascading natively, MAX7219 modules are the standard choice for scoreboards, larger digit counters, and any project needing more than 4 digits. Multiple modules chain together by connecting one module's DOUT to the next module's DIN — the same three control lines then drive the whole chain, and your code just addresses a higher device index.

Specifications

Digits8 x 7-segment digits (with decimal point) per module
Driver chipMAX7219 (also used on the matching LED matrix module)
Operating voltage4V - 5.5V DC (5V typical, breakout not 3.3V-rated)
Interface3-wire serial (DIN, CLK, CS/LOAD) — SPI-like but not true SPI
Segment currentSet by an external ISET resistor on the module (~40mA total typical, fixed on most breakout boards)
CascadingChain via DOUT -> next module's DIN; same CLK/CS lines drive the whole chain
RefreshHandled internally by the chip — no software multiplexing required

Pinout

PinNameDescription
1VCCPower, 5V DC
2GNDGround
3DINSerial data in — connect to MCU MOSI-equivalent pin, or to the previous module's DOUT when cascading
4CSChip select / LOAD — latches data on the rising edge; shared across all cascaded modules
5CLKSerial clock — shared across all cascaded modules
6DOUTSerial data out — connect to the next module's DIN when chaining multiple displays

CLK and CS are shared across every module in a chain — only DIN/DOUT actually daisy-chains from module to module. Most breakout boards fix the segment current via an onboard resistor, so unlike a bare MAX7219 IC you don't need to calculate ISET yourself. Use the LedControl or MD_Max72xx library rather than writing raw SPI transactions — MD_Max72xx in particular has built-in support for scrolling text and chained addressing, which matters as soon as you cascade more than one module.

Variants

Any color variant uses identical wiring and code — only the LED die color differs. The 4-digit module is worth choosing over the 8-digit one if your project (a simple counter or clock) never needs more than 4 digits, since it's cheaper and takes less board space, and you can always cascade a second one later if you need more.

VariantTemp rangeHum rangeAccuracyProtocolPrice
MAX7219 8-Digit (red)~$2-4
MAX7219 8-Digit (green/blue)~$3-5
MAX7219 4-Digit module~$2-3

Board Integration

Notes

[]