Skip to product information

WS2812B 5V LED
Sale price
R 99.98 ZAR
Regular price
R 119.98 ZAR
The WS2812B 5V is a versatile individually addressable RGB LED that integrates control circuitry and RGB chips in a single package. Operating at 5 volts, it allows precise color control through a single data line, enabling complex lighting effects with minimal wiring. Ideal for advanced lighting projects, it offers high refresh rates and easy daisy-chaining, making it suitable for intricate displays and professional-grade installations.
Pickup currently not available

PRODUCT INFORMATION
Specifications
Spec | Value |
---|---|
Driver | WS2812B |
Operating Voltage | 5V DC |
Operating Current | 60mA per 33.3mm segment |
LED Colour | Red + Green + Blue (RGB) |
LED Density | 30 Per Meter |
Weatherproof | IP65 Casing (removable) |
Control | Addressable |
Pricing Structure | Per Meter |
Dimensions | 12.5mm Width | 4mm Thick |
#include <FastLED.h> |
#define LED_PIN 7 |
#define NUM_LEDS 20 |
CRGB leds[NUM_LEDS]; |
void setup() { |
FastLED.addLeds<WS2812, LED_PIN, GRB>(leds, NUM_LEDS); |
} |
void loop() { |
leds[0] = CRGB(255, 0, 0); |
FastLED.show(); |
delay(500); |
leds[1] = CRGB(0, 255, 0); |
FastLED.show(); |
delay(500); |
leds[2] = CRGB(0, 0, 255); |
FastLED.show(); |
delay(500); |
leds[5] = CRGB(150, 0, 255); |
FastLED.show(); |
delay(500); |
leds[9] = CRGB(255, 200, 20); |
FastLED.show(); |
delay(500); |
leds[14] = CRGB(85, 60, 180); |
FastLED.show(); |
delay(500); |
leds[19] = CRGB(50, 255, 20); |
FastLED.show(); |
delay(500); |
} |