Product images are for informational purposes only and may vary slightly depending on the batch and supplier. Product specifications and prices may be subject to change without notice. We do our best to provide accurate and complete product specifications, but they may not be completely accurate. If you encounter any such situation, please let us know.
The product is intended for specialists and requires qualified and authorized personnel. The product does not include assembly/use instructions . Putting the product into operation by unqualified persons leads to the loss of the warranty according to the Terms and Conditions on the site.
The specified technical parameters (current, power, etc.) represent maximum allowable values under ideal operating conditions. For safe use and optimal lifespan, it is recommended to operate the product continuously at no more than 50% of the specified maximum values.
WS2812B addressable LED strip, IP20, 10 cm
Compact solution for RGB lighting effects controlled in DIY and ambient projects, with 6 SMD5050 LEDs per 10 cm, each pixel individually addressable through the integrated WS2812B controller. It operates at 5V and is easily controlled through a single data pin with Arduino, ESP32, or Raspberry Pi. Cut spacing at each LED, IP20 for indoor use.
Shipping by Thursday 27 August
International fast shipping within EU. Free Shipping for orders above 100 EUR in most EU countries.
We ship from our stock within 24H
You earn points with every order, worth 5%.
The WS2812B addressable LED strip, without silicone, is a versatile and efficient solution for controlled lighting projects, made with SMD 5050 LEDs that integrate the WS2812B controller directly into each LED body. The strip has a density of 60 LEDs per meter, and each LED functions as an independent RGB pixel with 256 levels of gray per color channel (8 bits per color), allowing extremely fine control of color and brightness. The density of 60 LEDs per meter provides uniform and continuous coverage, suitable for ambient lighting, Ambilight-style effects, interior decorations, and DIY projects controlled by microcontrollers.
The strip is powered at 5 VDC and has a consumption of approximately 18 W per meter at maximum brightness, with a maximum current of 60 mA per LED (20 mA per color channel). The flexible board is 10 mm wide and can be cut at each LED, at the marked solder points, offering flexibility in length adjustment. The strip connects to a microcontroller such as Arduino, ESP32, or Raspberry Pi through a single data pin, using popular libraries such as Adafruit NeoPixel or FastLED. The IP20 protection rating indicates that the strip is intended exclusively for indoor use, without protection against moisture or dust.
Warning! The strip is not water resistant!
Warning! The strip is sold in multiples of 10 cm! Only the strip is delivered, without connecting wires.
Specifications:
LED chip: WS2812B
LED type: SMD 5050
Length: price per 10 cm
Total number of LEDs: 6 (for 10 cm)
LED density: 60 LEDs per meter
Supply voltage: 5 VDC
Consumption per meter: 18 W
Total consumption (5 m): 90 W
Maximum current per LED: 60 mA (20 mA per channel)
Grayscale: 256 levels (8 bits per color channel)
Number of color channels: 3 (R, G, B)
Protection rating: IP20 (indoor)
Length: 5 m
Flexible board width: 10 mm
Data protocol: serial digital signal, single wire (One Wire)
Layout:

| LED Strip | Development board |
|---|---|
| Din | Microcontroller digital pin |
| GND | Common ground |
| 5V | 5 V power supply |
Package Contents:
1x 10 cm LED strip
The strip is delivered in the ordered length. For example, for 1 full meter, order 10 pieces. The maximum length is 5 meters in one piece.
Produs destinat utilizarii in proiecte electronice, automatizari, prototipare, educatie si cercetare.
Produsul trebuie utilizat numai conform specificatiilor tehnice mentionate in descriere si/sau in documentatia produsului.
Avertismente generale de siguranta:
Nu utilizati produsul la tensiuni, curenti sau temperaturi peste valorile specificate.
Montajul si conectarea trebuie realizate de persoane cu cunostinte tehnice minime in domeniul electric/electronic.
Evitati scurtcircuitele, inversarea polaritatii si conectarea gresita a alimentarii.
Nu lasati produsul alimentat nesupravegheat in timpul testelor.
Produsul nu este jucarie si nu este destinat copiilor.
Pentru modulele electronice, se recomanda utilizarea in carcase, panouri sau montaje protejate, dupa caz.
Identificare produs:
Denumirea produsului, codul/SKU-ul si caracteristicile tehnice sunt mentionate in pagina produsului si/sau pe eticheta ambalajului.
Producator / Importator / Distribuitor:
Sigmanortec S.R.L.
Calea Bucuresti nr. 9, Targu Jiu, Gorj, Romania
E-mail: [email protected]
Website: www.sigmanortec.ro
Persoana responsabila in UE:
Sigmanortec S.R.L.
Calea Bucuresti nr. 9, Targu Jiu, Gorj, Romania
E-mail: [email protected]
Documentatie si siguranta:
Pentru informatii suplimentare, fise tehnice, declaratii de conformitate sau instructiuni, ne puteti contacta la [email protected].
#include <Adafruit_NeoPixel.h>
#define PIN 6 // Data pin connected to Din
#define NUMPIXELS 6 // Total number of LEDs (10 cm segment)
Adafruit_NeoPixel strip(NUMPIXELS, PIN, NEO_GRB + NEO_KHZ800);
void setup() {
strip.begin();
strip.show(); // Initialize all pixels to 'off'
}
void loop() {
// Light up all LEDs in red
for (int i = 0; i < NUMPIXELS; i++) {
strip.setPixelColor(i, strip.Color(255, 0, 0));
}
strip.show();
delay(1000);
// Light up all LEDs in green
for (int i = 0; i < NUMPIXELS; i++) {
strip.setPixelColor(i, strip.Color(0, 255, 0));
}
strip.show();
delay(1000);
// Light up all LEDs in blue
for (int i = 0; i < NUMPIXELS; i++) {
strip.setPixelColor(i, strip.Color(0, 0, 255));
}
strip.show();
delay(1000);
// Turn off all LEDs
strip.clear();
strip.show();
delay(500);
}