WS2812B 8X8 RGB LED Matrix 5V

WS2812B 8X8 RGB LED Matrix with 64 individually addressable LEDs, 5V operation, vivid full-colour output and flexible control for displays, signage, lighting effects and Arduino projects.

Quick Spec

  • LED Type: WS2812B addressable RGB
  • Matrix Size: 8 x 8 LEDs
  • Total LEDs: 64 LEDs
  • Operating Voltage: 5V DC
  • Colour Output: Full RGB colour
  • Board Type: Flexible LED matrix panel

Arduino Uno 5V WS2812B 8x8 Matrix Example

It lights one LED at a time on the 8×8 WS2812B matrix.

The red LED moves from LED 0 to 63, then repeats.

  • matrix.clear() turns all LEDs off.
  • setPixelColor() makes one LED red.
  • show() updates the matrix.
  • delay(100) waits 100 ms between steps.
#include <Adafruit_NeoPixel.h>

#define LED_PIN 6
#define NUM_LEDS 64

Adafruit_NeoPixel matrix(NUM_LEDS, LED_PIN, NEO_GRB + NEO_KHZ800);

void setup() {
  matrix.begin();
  matrix.setBrightness(50);
  matrix.show();
}

void loop() {
  for (int i = 0; i < NUM_LEDS; i++) {
    matrix.clear();
    matrix.setPixelColor(i, matrix.Color(255, 0, 0));
    matrix.show();
    delay(100);
  }
}

Shipping List

  • 1 x WS2812B 8X8 RGB LED Matrix 5V

WS2812B 8X8 RGB LED Matrix 5V

  • Brand: Generic
  • Product Code: WS2812B-8X8
  • Weight: 0.02kg
  • Product Status : Active
  • Stock

    Warehouse Stock Status Location
    Centurion In Stock DD155
    Stellenbosch In Stock B0335
    Bulk Location No Stock

    We ship free of charge between branches to complete your order.

  • R78.00 (Inc Tax: R89.70)


Tags: WS2812B, 8x8 Matrix, RGB LED, Addressable LEDs, NeoPixel, 5V, 64 LEDs, LED Panel, Arduino, ESP32, Raspberry Pi, Display Module, Pixel Matrix, Programmable LEDs, Lighting Module