---
product_id: 93505992
title: "2pcs MAX7219 Dot Matrix Module(Red Light) 4 in 1 Display for Arduino Microcontroller with 5Pin Line(Christmas Decoration DIY Letters Electronic Display)"
brand: "onyehn"
price: "€ 25.28"
currency: EUR
in_stock: true
reviews_count: 8
url: https://www.desertcart.be/products/93505992-2pcs-max7219-dot-matrix-module-red-light-4-in-1
store_origin: BE
region: Belgium
---

# 12.8x3.3x1.3cm 5V Power Cascading Support 2pcs MAX7219 Dot Matrix Module(Red Light) 4 in 1 Display for Arduino Microcontroller with 5Pin Line(Christmas Decoration DIY Letters Electronic Display)

**Brand:** onyehn
**Price:** € 25.28
**Availability:** ✅ In Stock

## Summary

> ✨ Illuminate Your Ideas with MAX7219! ✨

## Quick Answers

- **What is this?** 2pcs MAX7219 Dot Matrix Module(Red Light) 4 in 1 Display for Arduino Microcontroller with 5Pin Line(Christmas Decoration DIY Letters Electronic Display) by onyehn
- **How much does it cost?** € 25.28 with free shipping
- **Is it available?** Yes, in stock and ready to ship
- **Where can I buy it?** [www.desertcart.be](https://www.desertcart.be/products/93505992-2pcs-max7219-dot-matrix-module-red-light-4-in-1)

## Best For

- onyehn enthusiasts

## Why This Product

- Trusted onyehn brand quality
- Free international shipping included
- Worldwide delivery with tracking
- 15-day hassle-free returns

## Key Features

- • **🔧 Built to Last:** 64 fixed screw holes ensure stability and durability in any project.
- • **📈 Expand Your Vision:** Support for multiple modules to create larger, eye-catching displays.
- • **🔄 Seamless Integration:** Easily connects with Arduino microcontrollers for versatile applications.
- • **🌟 Brighten Up Your Space:** Vibrant red LED display that captures attention and sparks joy.
- • **🎨 Unleash Your Creativity!:** Perfect for DIY Christmas decorations and custom displays.

## Overview

The 2pcs MAX7219 Dot Matrix Module is a versatile 4-in-1 display solution designed for Arduino microcontrollers. With a compact size of 12.8x3.3x1.3cm and a 5V operating voltage, this module features a vibrant red LED display, 64 fixed screw holes for secure mounting, and the ability to cascade multiple modules for larger displays. Ideal for DIY projects, especially during the festive season!

## Description

2pcs MAX7219 Dot Matrix Module(Red Light) 4 in 1 Display for Arduino Microcontroller with 5Pin Line(Christmas Decoration DIY Letters Electronic Display)

## Features

- 🌟Dimension of Module: 12.8X3.3X1.3cm(5.04X1.3X0.51in)
- 🌟Operating voltage: 5V
- 🌟A single module can drive a 8x 8 dot matrix common cathode
- 🌟64 fixed screw holes with 3mm in its diameter
- 🌟Equipped with input and output interfaces, support for multiple modules to cascade

## Technical Specifications

| Specification | Value |
|---------------|-------|
| Processor Socket | No |
| Processor Count | 1 |
| Processor Speed | 1 Hz |
| Processor Series | Atom |
| Aspect Ratio | 16:9 |
| Resolution | 3840 x 2160 |
| Display Type | LED |
| Screen Size | 4 Inches |
| Video Output | DisplayPort |
| Hard Disk Interface | USB 2.0 |
| Compatible Devices | Arduino microcontrollers |
| Hard Disk Description | HDD |
| Item Weight | 0.22 Pounds |
| Operating System | All Windows Server Versions 2000 |
| Specific Uses For Product | Versatile Applications |
| Color | Red |
| Additional Features | Portable |
| Total Usb Ports | 1 |
| Connectivity Technology | LAN |
| Graphics Card Interface | Integrated |
| Graphics Description | Dedicated |

## Images

![2pcs MAX7219 Dot Matrix Module(Red Light) 4 in 1 Display for Arduino Microcontroller with 5Pin Line(Christmas Decoration DIY Letters Electronic Display) - Image 1](https://m.media-amazon.com/images/I/717VrT2ppxL.jpg)

## Customer Reviews

### ⭐⭐⭐⭐⭐ 5.0 out of 5 stars







  
  
    Nice and bright! Not too difficult to get working.
  

*by D***E on Reviewed in the United States on August 4, 2019*

I soldered both modules together with very short, stiff jumpers (removed plastic and bent included 90 degree pins) to make 1 long display. It works very well once I figured out how to properly configure everything. I'm adding these to my list of "known good and useful" Arduino accessories for future purchases! The only thing that could make these better is if the seller would just send them for free! :)I used a NANO, so your setup may be a little different... I couldn't find the answers easily out there in Arduino land, so I'm including what I used to get it all working with both the example Ticker sketch and my clock program in case you too are having issues.#include  <SPI.h>#include <Adafruit_GFX.h>#include <MAX72xxPanel.h>and for both displays connected together I needed://constants will not change...const int pinCS = 10; // Using Arduino NANO! Attach CS to this pin(10), DIN to MOSI(11)  and CLK to SCK(13)const int numberOfHorizontalDisplays = 8; // 2x 4 module panels attached togetherconst int numberOfVerticalDisplays = 1;...and in void setup()  matrix.setPosition(0, 7, 0); // The first display is at <0, 0>  matrix.setPosition(1, 6, 0); // The second display is at <1, 0>  matrix.setPosition(2, 5, 0); // The third display is at <2, 0>  matrix.setPosition(3, 4, 0); //...  matrix.setPosition(4, 3, 0); //...  matrix.setPosition(5, 2, 0); //...  matrix.setPosition(6, 1, 0); //...  matrix.setPosition(7, 0, 0);// And the last display is at <7, 0>  //  ...  matrix.setRotation(0, 1); // The first display is horizontal  matrix.setRotation(1, 1); //...  matrix.setRotation(2, 1); //...  matrix.setRotation(3, 1); //...  matrix.setRotation(4, 1); //...  matrix.setRotation(5, 1); //...  matrix.setRotation(6, 1); //...  matrix.setRotation(7, 1);// The same for the last displayRotation was necessary because the library still expects each 8x8 module to be individual modules with the pins on top and bottom, instead of on the sides like these are. This works only if the incoming data lines are on the right hand side when looking at the LEDsI hope this was helpful! If it was, consider giving it a thumbs up! And don't forget to like and sub... wait, this isn't a YouTube script! Sorry about that! Thanks for watching!

### ⭐⭐⭐⭐⭐ 5.0 out of 5 stars







  
  
    MAX7219 = GREAT!  Using MD_MAX72XX, display mirrored? Add this to your Sketch!
  

*by D***N on Reviewed in the United States on January 12, 2019*

This MAX7219 is RED, BRIGHT, Great display and easy to use!If you are using the latest MD_MAX7219 {GitHub MajicDesigns/MD_MAX72XX} you may notice, that, your display looks odd (see my image)!  Try adding this to your Arduino Sketch:#define HARDWARE_TYPE MD_MAX72XX::ICSTATION_HWComment or delete any other of the above #defines, ie //#define HARDWARE_TYPE MD_MAX72XX::PAROLA_HW// Arbitrary output pinsMD_Parola P = MD_Parola(HARDWARE_TYPE, DATA_PIN, CLK_PIN, CS_PIN, MAX_DEVICES);Marco Colli has made major changes to his code, so, many of the code examples, that, you find on the Internet will not work, correctly! You no longer need to edit the MD_MAX72xx.h file (can't anyway, totally revised). Many of the YouTube videos suggest, that, you edit this file, this no longer possible with the latest update, available at GitHub.I hope, that, this helps!

### ⭐⭐⭐⭐⭐ 5.0 out of 5 stars







  
  
    Bright Red LED Matrix Displays
  

*by K***B on Reviewed in the United States on May 1, 2020*

Average price.  Two 4 character displays included.  Very bright.  Used as replacement for an existing design with no issues.  Manufacturing seems solid.  No problem daisy chaining them.  See other reviews for proper Arduino drivers.

---

## Why Shop on Desertcart?

- 🛒 **Trusted by 1.3+ Million Shoppers** — Serving international shoppers since 2016
- 🌍 **Shop Globally** — Access 737+ million products across 21 categories
- 💰 **No Hidden Fees** — All customs, duties, and taxes included in the price
- 🔄 **15-Day Free Returns** — Hassle-free returns (30 days for PRO members)
- 🔒 **Secure Payments** — Trusted payment options with buyer protection
- ⭐ **TrustPilot Rated 4.5/5** — Based on 8,000+ happy customer reviews

**Shop now:** [https://www.desertcart.be/products/93505992-2pcs-max7219-dot-matrix-module-red-light-4-in-1](https://www.desertcart.be/products/93505992-2pcs-max7219-dot-matrix-module-red-light-4-in-1)

---

*Product available on Desertcart Belgium*
*Store origin: BE*
*Last updated: 2026-04-26*