8 Bit Ws2812 5050 Rgb Led Full Color
Rs. 26.00 Rs. 32.00
- Product Code: SEN-RGBLED
- Availability: 2-3 Days
- For Bulk Order
9962060070
-Intelligent opposite join safety, the electricity supply opposite connection does not harm the IC.
-The manage circuit and the LED percentage one energy supply.
-Control circuit and RGB chip are incorporated in a package of 5050 additives, form a complete control of pixel factor.
-Built-in signal reshaping circuit, after wave reshaping to the subsequent driver, ensure wave-form distortion no longer accumulate.
-Built-in electric powered reset circuit and energy misplaced reset circuit.
-Each pixel of the three primary shade can gain 256 brightness display, finished 16777216 color complete shade display, and test frequency no longer much less than 400Hz/s.
Cascading port transmit signal by way of unmarried line.
-When the refresh charge is 30fps, cascade range aren't less than1024 factors.
-Send information at speeds of 800Kbps.
Applications:
-Full-color module, Full color soft lights a lamp strip.
-LED decorative lighting, Indoor/outdoor LED video irregular screen.
-colour: black
-Material: metal
-size: 5.3*0.8*0.2cm
SPECIFICATIONS: | |
Chip | WS2812 |
Light source | 5050 RGB |
Voltage | 5V |
OVERVIEW:
-Outer Diameter | 68 mm. |
-Supply Voltage | DC 4-7V. |
-LED driver chip | WS2812B |
-Communication interface | single wire communication. |
-Send data at speeds of 800Kbps.
-The color of the light was highly consistent
-Full-color module, Full-color soft lights a lamp strip.
PACKAGE INCLUDES:
1 PCS x 8 Bit Ws2812 5050 Rgb Led Full Color
//SOURCE CODE TAKEN FROM BELOW LINK
//https://www.electronicshub.org/ws2812b-addressable-leds/
#include <FastLED.h>
#define LEDPIN 7
#define NUMOFLEDS 10
CRGB leds[NUMOFLEDS];
void setup() {
FastLED.addLeds<WS2812, LEDPIN, GRB>(leds, NUMOFLEDS);
}
void loop() {
for (int i = 0; i <= 9; i++) {
leds[i] = CRGB ( 0, 0, 255);
FastLED.show();
delay(40);
}
for (int i = 9; i >= 0; i--) {
leds[i] = CRGB ( 255, 0, 0);
FastLED.show();
delay(40);
}
}
15 days