HAVE FUN WITH BICOLOR MATRIX 32×32

Today I will share following topics base on a bicolor matrix led 32×32:

  1. D.I.Y a bicolor led matrix 32×32.
  2. How to control led board above with NodeMCU ESP8266 via B.A.M method.
  3. Introduce and share my code for some cool real time clock projects with this bicolor led board.

Let’s start with some videos:

  • Rainbow letters and images: is controlled by NODEMCU.

Handwritten Clock Version 2:

Tetris clock: is referenced from TobiasB48

Handwritten Clock Version 1:

Morphing Digital Clock: is referenced from HariFun.

Step 1: MATERIAL LIST

Main components include:

Step 2: SCHEMATIC

This is the circuit diagram of the whole project; it is a quite big file and you can download high resolution PDF file HERE. With this overall schematic, we will easily understand how to scan rows and columns for led matrices, as well as, how to apply the 4-bit BAM method during row and column scanning.

On the circuit diagram, I separated 32×32 = 1024 red and 32×32 = 1024 green LEDs in groups and connect default matrix pin in Fritzing to rows and columns buses. You have to connect color pins properly according to the specifications after purchasing bicolor led matrix.

NODECU pins are used as below:

// PINS USING ON NODEMCU
#define blank_pin	D8  // BLANK PIN - 74HC595
#define latch_pin	D4  // LATCH PIN - 74HC595
#define clock_pin	D5  // CLOCK PIN - 74HC595
#define data_pin	D7  // DATA PIN - 74HC595

#define RowA_Pin	D0  // A PIN - 74HC238
#define RowB_Pin	D1  // B PIN - 74HC238
#define RowC_Pin	D2  // C PIN - 74HC238
#define RowD_Pin	D3  // D PIN - 74HC238
//#define OE_Pin	D8  // ENABLE OUTPUT PIN - 74HC238 (Connect to blank_pin).

Note that:

  • I used 5 signals to control 2x74HC238 for implementing one 4 to 16 decoder. Then these 16 outputs will control 32 rows of bicolor led matrix through PNP and NPN transistors. In other words, my led panel have 1/16 scan rate, so only one row of 16 is on at a time. You can see how scan pattern a 32×32 led board with scan rate 1/16 looks like, at this link: https://www.sparkfun.com/sparkx/blog/2650
  • OE PIN – 74HC238 and BLANK PIN – 74HC595 are both connect to NODEMCU – D8 pin. This is an important key to minimize flickering and noise because we only enable the OE pin (Output Enable) for 74HC595 (columns) and 74HC238 (rows) when we needed. I have also tested this Led board on Arduino Mega 2560 with 2 OE signals which are individually controlled, one for 74HC595 and the remaining signal for 74HC238. It also gave good results. Check detail at STEP 5.

Step 3: PCB BOARD DESIGN AND ETCHING

You can download as attached links for following schematics and PCB files:

1. Row scanning circuit schematic and Eagle PCB real size.

2. Column scanning circuit schematic and Eagle PCB real size.

3. Led matrix board 32×32 schematic and Eagle PCB real size for 16×32 led board.

I etched myself these printed circuit boards at home by Toner Transfer Method and concentrated ferrous chloride. The pictures below are the results that I did:

  • Column Scanning Board: we need 2 sets of column scanning PCB for RED and GREEN color.

Read more: HAVE FUN WITH BICOLOR MATRIX 32×32


About The Author

Muhammad Bilal

I am a highly skilled and motivated individual with a Master's degree in Computer Science. I have extensive experience in technical writing and a deep understanding of SEO practices.

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top