B. Notes
B1. LED Matrix
NeoPixel LEDs are widely used these days in electronic projects, due to their attractive visual effects. These LEDs are available in various sizes and shapes and in the strip form.
After 1962, when the first LED was made and tested, this valuable piece became an inseparable part of our lives. In most electronic projects, you can find at least one single LED. Using the LEDs in different colors was so attractive that it caused the production of multi-color LEDs or RGB LEDs.

The RGB LED creates all the colors based on the three colors of
red,
green, and
blue. For example, a red and green combination produces a
yellow color. In this model, each color has a value between
0 and
255 for each red, green and blue colour components. For instance, these values are “255, 255, 0” (maximum red, maximum green, and minimum/no blue value) for yellow. RGB LEDs make a variety of colors based on this model.
Addressable LEDs
To control each RGB LED, you need 3 digital pins of a microcontroller (e.g.
Arduino). For example, if you want to control an RGB LED string containing 64
LEDs, in order to control the color of each LED separately, you need 192 digital pins! So you have to forget
controlling each LED individually or use LEDs that are addressable.

Addressable LEDs are a new generation of LEDs including a controller IC, in addition to RGB LEDs. This controller IC, usually WS2812, allows you to access multiple LEDs with a single digital pin by assigning an address to each LED and providing one wire communication. But unlike simple LEDs, these types of LEDs do not turn on only by applying voltage, they also require a microcontroller. NeoPixels are also available in the ring, strip, square and circular models and you can select the suitable model according to your project. NeoPixels are also chainable, so you can control multiple NeoPixels with only one signal wire and two wires for power (5V and GND).
Simulation:

The following ArduinoBlocks program is to implement the pattern in the above simulation.
Use
Pin IO26 for signaling.
