Wish List 0

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
-This is the 12 LED ring,   a small chainable 85mm outer diameter board geared up with 5050 WS2812 RGB LEDs.
-The WS2812s are each addressable.
-The driver chip is located in the LED.
-Each Stick has ~18mA consistent present day power so the color might be very constant despite the fact that the voltage varies, and calls for 5V.
-Every ring is ready with a single information line with a very timing-unique protocol requiring a actual-time microcontroller with  a 8MHz or faster processor including an AVR, Arduino, PIC, mbed, etc.
-There are solder pads at the lower back for connecting wires or breadboard pins and  mounting holes for securing this board to many different surfaces.


Features : 
The control circuit and the LED share the only power source.
Control circuit and RGB chip are integrated into a package of 5050 components, form a complete control of pixel point.
Built-in signal reshaping circuit, after wave reshaping to the next driver, ensure wave-form distortion not accumulate.
Built-in electric reset circuit and power lost reset circuit.
Each pixel of the three primary colors can achieve 256 brightness levels, or 16M colors full-color display, and scan frequency not less than 400Hz/s.
Cascading port transmission signal by a single line.
Any two points the distance more than 5m transmission signal without any increase circuit.
When the refresh rate is 30fps(frames per second) , cascade number is not less than 1024 points.
Send data at speeds of 800Kbps.
The color of the light was highly consistent
Full-color module, Full-color soft lights a lamp strip.
LED decorative lighting, Indoor/outdoor LED video irregular screen.


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

Write a review

Please login or register to review