9Bit Ws2812B 5050 Rgb Led Built In Full Color Driving Lights Circular Development Board
Rs. 55.00 Rs. 66.00
- Product Code: SEN-RGBLED
- SKU -
- Availability: In Stock
- Price in reward points: 1
- For Bulk Order 9962060070
Quick support on WhatsApp (+919962060070) only between morning 11am-4pm, no call will be answered
SPECIFICATIONS: | |
IC Chip | WS2812B |
Supply Voltage (V) | 5(V) |
Outer Diameter (OD)(mm) | 85 mm |
Inner Diameter (ID) (mm) | 50 mm |
Color | RGB |
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 9Bit Ws2812B 5050 Rgb Led Built In Full Color Driving Lights Circular Development Board
/*SOURCE CODE TAKEN FROM BELOW LINK
https://create.arduino.cc/projecthub/electropeak/neopixel-how-to-control-ws2812-rgb-led-w-arduino-46c08f
NeoPixel LEDs
modified on 7 May 2019
by Saeed Hosseini @ Electropeak
**This code is based on Adafruit NeoPixel library Example**
https://electropeak.com/learn/
*/
#include <Adafruit_NeoPixel.h>
#ifdef __AVR__
#include <avr/power.h> // Required for 16 MHz Adafruit Trinket
#endif
#define PIN 6
#define NUMPIXELS 7
Adafruit_NeoPixel pixels(NUMPIXELS, PIN, NEO_GRB + NEO_KHZ800);
#define DELAYVAL 500 // Time (in milliseconds) to pause between pixels
void setup() {
pixels.begin();
}
void loop() {
pixels.clear();
pixels.setBrightness(10);
pixels.setPixelColor(0, pixels.Color(255, 255, 255));
pixels.setPixelColor(1, pixels.Color(255, 0, 0));
pixels.setPixelColor(2, pixels.Color(0, 255, 0));
pixels.setPixelColor(3, pixels.Color(0, 0, 255));
pixels.setPixelColor(4, pixels.Color(255, 0, 255));
pixels.setPixelColor(5, pixels.Color(255, 255, 0));
pixels.setPixelColor(6, pixels.Color(0, 255, 255));
pixels.show();
}
15 days