8 Bit Ws2812 5050 Rgb Led Full Color
Rs. 26.00 Rs. 32.00
- Product Code: SEN-RGBLED
- SKU -
- Availability: In Stock
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
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