12 Bit Ws2812 5050 Rgb Led Small Ring
Rs. 45.00 Rs. 54.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 12 Bit Ws2812 5050 Rgb Led Small Ring
//SOURCE CODE TAKEN FROM BELOW LINK
//http://arduinolearning.com/code/ws2812-rgb-led-ring-example-on-arduino.php
#include <Adafruit_NeoPixel.h>
#define PIN 2
// How many NeoPixels are attached to the Arduino?
#define NUMPIXELS 12
Adafruit_NeoPixel pixels = Adafruit_NeoPixel(NUMPIXELS, PIN, NEO_GRB + NEO_KHZ800);
int delayval = 250; // delay for half a second
void setup()
{
pixels.begin(); // This initializes the NeoPixel library.
}
void loop()
{
for(int i=0;i<NUMPIXELS;i++)
{
// pixels.Color takes RGB values, from 0,0,0 up to 255,255,255
pixels.setPixelColor(i, pixels.Color(255,0,0)); // Moderately bright green color.
pixels.show(); // This sends the updated pixel color to the hardware.
delay(delayval); // Delay for a period of time (in milliseconds).
}
for(int i=0;i<NUMPIXELS;i++)
{
// pixels.Color takes RGB values, from 0,0,0 up to 255,255,255
pixels.setPixelColor(i, pixels.Color(0,255,0)); // Moderately bright green color.
pixels.show(); // This sends the updated pixel color to the hardware.
delay(delayval); // Delay for a period of time (in milliseconds).
}
for(int i=0;i<NUMPIXELS;i++)
{
// pixels.Color takes RGB values, from 0,0,0 up to 255,255,255
pixels.setPixelColor(i, pixels.Color(0,0,255)); // Moderately bright green color.
pixels.show(); // This sends the updated pixel color to the hardware.
delay(delayval); // Delay for a period of time (in milliseconds).
}
}
15 DAYS