Wish List 0

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
-The 9Bit WS2812 5050 RGB LED Built-in Full-Color Driving Lights Circular Development Board has a spherical black form.
-9 incredible vivid smart NeoPixels LED organized in a 28mm outdoor diameter circular PCB.

-These ring RGB lamps can be really connected thru the output pin cascade one to the opposite’s enter pin (DI-DO).
-In this way, via the usage of most effective one single chip you may be able to control as many LED lighting as viable, each LED lamp is integrated with a driving force chip in it in order that our LED will become wise and addressable.

Features:

-The manipulate circuit and the LED percentage the only strength supply.
-The control circuit and RGB chip are incorporated right into a package deal of 5050 components, shape a complete manipulate of pixel points.
-Built-in signal reshaping circuit, after wave reshaping to the subsequent driving force, ensure wave-form distortion no longer acquire.
-Built-in electric powered reset circuit and energy lost reset circuit.
-Each pixel of the 3 primary shades can attain 256 brightness ranges, or 16M hues full-color display, and experiment frequency not less than 400Hz/s.
-Cascading port transmission sign by a unmarried line.
-Any  factors the gap more than 5m transmission sign with none boom circuit.
-When the refresh price is 30fps, the cascade number isn't always much less than 1024 factors.
-Send facts at speeds of 800Kbps.
-The shade of the mild changed into extraordinarily constant
-Full-color module, Full-coloration gentle lighting fixtures a lamp strip.
-LED ornamental lights, Indoor/out of doors LED video abnormal display"

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

Write a review

Please login or register to review