Skip to Content

LED Circle Quarter RGB Duinopeak 5V 15Bit WS2812 5050 RGB LED Board

This WS2812B LED Ring features 15 individually addressable RGB LEDs arranged in a quarter-circle configuration. The control circuit and RGB chip share the same power source and are integrated into 5050 packages, providing full control over each pixel. With built-in signal reshaping and power-loss reset circuits, this LED ring ensures reliable cascading without waveform distortion.

Package Includes

  • 1 x Quarter Light Circle (WS2812B 15-LED module)


LED RGB WS2812
19.95 AED 19.95 AED (Tax included)

Terms and Conditions
30-day money-back guarantee
Shipping: 2-3 Business Days

 

Features

  • Integrated control circuit and WS2812B RGB chips in 5050 package.
  • Built-in signal reshaping circuit to prevent waveform distortion when cascading.
  • Built-in electric reset and power-loss reset circuits.
  • Each pixel supports 256 brightness levels for red, green, and blue channels, allowing 16,777,216 color combinations.
  • Scan frequency not less than 400Hz/s.
  • Voltage: DC 4-7V, standard 5V recommended.
  • Single-line communication for easy digital control.
  • Compatible with Arduino and Raspberry Pi platforms.
  • Quarter ring consists of 4 solderable pieces; pegs included for assembly.
  • Can be chained for larger displays using only 1 data pin.

Technical Specifications

  • LED Driver: WS2812B (built-in)
  • LED Type: 5050 RGB
  • Number of LEDs: 15
  • Voltage: DC 4-7V (5V recommended)
  • Color: Full RGB
  • Communication: Single-line digital
  • Frequency: ≥ 400Hz
  • Quarter ring design; four modules must be soldered together

Pinout

RGB LED Ring, Akozon LED Ring Lamp Ring Light LED Driver Development Board  1pc 24-Bit WS2812 5050 RGB Light with Integrated Drivers : Amazon.co.uk:  Lighting

Pin Description
VCC Power supply (+5V recommended, 4-7V acceptable)
GND Ground
DIN Data input, connect to Arduino digital pin
DOUT Data output, connect to DIN of next module for cascading

Arduino Wiring

  • VCC → 5V on Arduino
  • GND → GND on Arduino
  • DIN → Digital Pin 6 (example) on Arduino
  • DOUT → Connect to DIN of next module if chaining

Arduino Example Code

Uses the Adafruit NeoPixel Library.

#include <Adafruit_NeoPixel.h>

#define LED_PIN    6
#define NUM_LEDS   15

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

void setup() {
  strip.begin();
  strip.show(); // Initialize all pixels to 'off'
}

void loop() {
  // Simple color wipe animation
  for(int i=0; i < NUM_LEDS; i++) {
    strip.setPixelColor(i, strip.Color(255, 0, 0)); // Red
    strip.show();
    delay(100);
    strip.setPixelColor(i, strip.Color(0, 0, 0)); // Off
  }
}

Installation of Library

To install the Adafruit_NeoPixel library:

  1. Open Arduino IDE → Sketch → Include Library → Manage Libraries.
  2. Search for Adafruit NeoPixel.
  3. Click Install.
  4. Alternatively, download ZIP from GitHub and install via Sketch → Include Library → Add .ZIP Library.

Technical Specifications

  • LED Driver: WS2812B (built-in)
  • LED Type: 5050 RGB
  • Number of LEDs: 15
  • Voltage: DC 4-7V (5V recommended)
  • Color: Full RGB
  • Communication: Single-line digital
  • Frequency: ≥ 400Hz
  • Quarter ring design; four modules must be soldered together