

The 12V WS2814 84 LEDs is a flexible LED strip manufactured by SEZO, featuring 84 individually addressable RGB LEDs. Each LED is driven by the WS2814 controller, which allows precise control over color and brightness. Operating at 12 volts, this LED strip is ideal for decorative lighting, signage, and dynamic displays. Its high brightness and addressable nature make it suitable for both professional and hobbyist applications.








| Parameter | Specification |
|---|---|
| Manufacturer | SEZO |
| Part ID | WS2814-RGBW |
| Operating Voltage | 12V DC |
| Power Consumption | ~0.3W per LED (25.2W for 84 LEDs) |
| LED Count | 84 LEDs per strip |
| LED Type | RGB (Red, Green, Blue) + White |
| Driver IC | WS2814 |
| Communication Protocol | Dual-signal (redundant data line) |
| Data Input Voltage | 5V (logic level) |
| Brightness Levels | 256 levels per color channel |
| Operating Temperature | -20°C to 50°C |
| Strip Dimensions | ~1 meter (length) x 10mm (width) |
| Waterproof Rating | Optional (IP65 or IP67 variants) |
The WS2814 LED strip has four main connections, typically exposed as solder pads or wires:
| Pin Name | Description |
|---|---|
| +12V | Power supply input (12V DC). Connect to a stable 12V power source. |
| GND | Ground connection. Connect to the ground of the power supply and controller. |
| DI | Data input. Receives the control signal from the microcontroller. |
| BI | Backup data input. Used for redundancy in case of signal failure. |
+12V pin to a 12V DC power source and the GND pin to the ground of the power source.DI pin. Ensure the microcontroller's logic level is 5V.BI pin to a secondary data line for redundancy. If unused, leave it unconnected.DO (data out) pin of the first strip to the DI pin of the next strip.DI pin to reduce noise and protect the first LED.+12V and GND pins to stabilize the power supply.Below is an example of how to control the WS2814 LED strip using the FastLED library:
#include <FastLED.h>
// Define the number of LEDs in the strip
#define NUM_LEDS 84
// Define the data pin connected to the DI pin of the strip
#define DATA_PIN 6
// Create an array to hold the LED data
CRGB leds[NUM_LEDS];
void setup() {
// Initialize the LED strip
FastLED.addLeds<WS2812B, DATA_PIN, GRB>(leds, NUM_LEDS);
// Set initial brightness
FastLED.setBrightness(128);
}
void loop() {
// Example: Fill the strip with red color
fill_solid(leds, NUM_LEDS, CRGB::Red);
FastLED.show(); // Update the LEDs
delay(1000); // Wait for 1 second
// Example: Fill the strip with green color
fill_solid(leds, NUM_LEDS, CRGB::Green);
FastLED.show(); // Update the LEDs
delay(1000); // Wait for 1 second
// Example: Fill the strip with blue color
fill_solid(leds, NUM_LEDS, CRGB::Blue);
FastLED.show(); // Update the LEDs
delay(1000); // Wait for 1 second
}
LEDs Not Lighting Up
+12V and GND connections. Ensure the power supply is functional and provides 12V DC.Flickering or Unstable Colors
Only the First LED Works
DI connection and ensure the microcontroller is outputting a valid signal.Dim LEDs
Backup Signal Not Working
BI pin not connected or misconfigured.BI pin is connected to a valid backup data line or leave it unconnected if not used.Q: Can I cut the LED strip to a shorter length?
A: Yes, the strip can be cut at marked intervals (usually every 3 LEDs). Ensure proper reconnection of the +12V, GND, and DI lines.
Q: Can I control multiple strips with one microcontroller?
A: Yes, connect the DO pin of one strip to the DI pin of the next. Ensure the microcontroller can handle the total number of LEDs.
Q: Is the strip compatible with 3.3V logic microcontrollers?
A: Not directly. Use a level shifter to convert the 3.3V signal to 5V for reliable operation.
Q: How do I waterproof the strip after cutting?
A: Use heat-shrink tubing or silicone sealant to protect the exposed connections.
This concludes the documentation for the 12V WS2814 84 LEDs. For further assistance, refer to the SEZO datasheet or contact technical support.