Arduino Project

Arduino Stacker Game with MAX7219 LED Matrix V3

Course Introduction

In this lesson, you’ll learn how to use a MAX7219 Dot Matrix Module, a button, an active buzzer, I2C LCD with the Arduino R4 UNO to create a stacker blocks game.

The MAX7219 Dot Matrix Module will display the game, and players can use the button to control the gameplay in the stacker blocks game.

Note

If this is your first time working with an Arduino project, we recommend downloading and reviewing the basic materials first.

1.1 Install Arduino IDE(Important)
1.2 Introduction of Arduino IDE

Required Components

In this project, we need the following components:

SN

COMPONENT INTRODUCTION

QUANTITY

PURCHASE LINK

1

Arduino UNO R4 Minima

1

2

USB Type-C cable

1

×

3

Breadboard

1

BUY

4

Wires

Several

5

MAX7219 Dot Matrix Module

1

6

Button

1

7

I2C LCD 1602

1

8

Active Buzzer

1

×

Wiring

1.png__PID:1341cc17-d0ee-4a2c-8c67-176e90ab92d2

Common Connections:

MAX7219 Dot Matrix Module
CLK:
Connect to 5 on the Arduino.
CS: Connect to 3 on the Arduino.
DIN: Connect to 6 on the Arduino.
GND: Connect to breadboard’s negative power bus. =
VCC: Connect to breadboard’s red power bus.

Button
Connect to breadboard’s negative power bus.
Connect to 11 on the Arduino.

I2C LCD 1602
SDA:
Connect to A5 on the Arduino.
SCL: Connect to A4 on the Arduino.
GND: Connect to breadboard’s negative power bus.
VCC: Connect to breadboard’s red power bus.

Active Buzzer
Connect to breadboard’s negative power bus. Connect to 2 on the Arduino.

Writing the Code

Note
You can copy this code into Arduino IDE.
To install the library, use the Arduino Library Manager and search for LiquidCrystal_I2C and LedControl and install it.
Don’t forget to select the board(Arduino UNO R4 Minima) and the correct port before clicking the Upload button.