Menu
-
MenuBack
-
Menu
-
Arduino & Raspberry & Micro:bit
-
-
-
-
-
Controller Boards
-
-
-
Batteries
-
Components & TOOLS
-
-
e-Textil
-
-
-
Interruptores & Botões
-
-
-
Sound and Audio
-
-
-
Comunication & Smart Home
-
-
LCD + Matrix + Keypad
-
-
Power Sources and Renewable Energy
-
-
-
RENEWABLE ENERGY
-
-
-
3D Printing & DRONES
-
-
Informática
-
-
Informática
-
-
-
Motors and Relays
-
-
Oficina & Equipamentos
-
-
Oficina & Equipamentos
- Cable ties
- Pliers and Wrenches
- Breadboards
- Drills and Milling Cutters
- Storage Boxes
- Electronics boxes
- Bench Equipment
- Tool Cases & Kits
- Heat shrink sleeve
- Multimeters
- Oscilloscope
- Screws and Spacers
- PCB Copper
- End-Sleeves
- IC Programmers
- Personal Protection
- Protoboards
- Soldering
- Spray and Conductive Paint
- DIN Rail Supports
- Others
-
-
-
ROBOTICS
-
-
Sensors
-
-
- Catalog
- New Products
- On Sale
- Tutorials
- Contact
RGB LED STRIP 5V, WS2812B, 60 LED/M, BLACK PCB IP67 (NEOPIXEL) - 5 METER
: CEL11073
€47.90
Tax included
Reel 5 meters RGB LED Strip WS2812B 5V with 60 LEDs with IP67 Black Flexible PCB.
Note: The 5 meter coil comes with two connectors, if more connectors are needed, they are available here in the store in pairs.
Specifications:
- Input Voltage: DC5V
- Power: 18Watt/meter
- LED Resource: WS2812B Led(5050 SMD RGB LED With Built-in Improved Version Of WS2811 IC)
- LED: Each Led is Separately Controlled
- IC Type: Improved Version WS2812 IC(Built Inside The 5050SMD RGB LED)
- Pixels: 60/Meters
- Grey Scale: 256
- Bits/Color: 8-Bits/Color
- FPC Width: 10mm
- FPC color: Black
- Protection Rate: IP67
- Colors: Full Color RGB, Dream Color Changing
- Cuttable: Every LED is Cuttable
- Reel: 5 meters
Arduino
For programming the Arduino, we will use the FastLED library.
This is an excellent and well documented library which enables easy control of the WS2812B LEDs.
Sample Code
#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);
CEL11073
Related products