Usb ws2812

From BitWizard WIKI
Revision as of 13:29, 2 January 2017 by Rew (talk | contribs) (shift)

Jump to: navigation, search
The USB_WS2812 board
The USB_WS2812 board

This is the documentation page for the USB_WS2812 board. That you can buy in the BitWizard shop.

Overview

This board enables you to drive up to 600 WS2812 fullcolor RGB leds. These leds are sometimes called "neopixels". The board can drive up to 75 leds in in 8 strings. Due to the way things are implemented it is not possible to drive a single string of say 600 leds. Furthermore you would not want that: for each led on a string there is a fixed amount of time necessary for sending its data. Too many leds and the refresh rate has to drop!


Assembly instructions

None: the board comes fully assembled.

External resources

Datasheets

The datasheet of the WS2812B chip/led.

Additional software

Related projects

Pinout

The USB connector is a standard micro USB connector.

Pinout of the 16-pin header:

function pin pin function
GND 1 2 D7 Data for led-chain 7.
GND 3 4 D6 Data for led-chain 6.
GND 5 6 D5 Data for led-chain 5.
GND 7 8 D4 Data for led-chain 4.
GND 9 10 D3 Data for led-chain 3.
GND 11 12 D2 Data for led-chain 2.
GND 13 14 D1 Data for led-chain 1.
GND 15 16 D0 Data for led-chain 0.

Note, pin one of this connector is bottom-right when the logo is right-side up. Pin 16 is top-left. All the pins on the right are all ground, the pins on the left are the data pins.

Each pin controls 75 leds:

pin leds
D0 0-74
D1 75-149
D2 150-224
D3 225-299
D4 300-374
D5 375-449
D6 450-524
D7 525-599

There is also a three-pin test-connector. It has Ground-data-VCC as the pinout. The data pin is "D0" on the big connector. This will use the USB-5V for the leds. As each led consumes up to 60mA, you are only allowed to power up 8 leds through this connector before you hit the USB 500mA currentlimit. But this could be an easy way to quickly test led-strips if they work, by programming for example a walking led, you verify each of the leds in sequence.


Please ignore the other connectors on the board.

wiring

Your WS2812 led string has three wires. One is usually marked "GND" or "V-", one is marked "VCC" or "V+" and the last is the data-in, marked "D" or "Din".

Our WS2812 board has a three pin ground-data-vcc connector. This is for "quick test" purposes: The usb powersupply of the board is not able to provide current for more than a few leds (about ten). The quick test connector has pinout ground-data-vcc, just like most WS2812 led strips.

When you are ready to connect longer strips, you need to have a separate 5V supply for the led strip. Connect the 0 and 5V of the powersupply to the GND (V-) and VCC (V+) of the led strip. Then connect the GND (V-) Of the led strip to the GND of the USB_WS2812 board. And connect the Din of the ledd strip to one of the data pins on the USB_WS2812 board.

LEDs

There are two leds. One is the power led. It should be lit whenever the USB is connected. The other should blink every two seconds (one second on, one second off).

Button

There is also a button on the board. If you press the button and then power up the board, it will come up in DFU mode, allowing you to upgrade the firmware of the board.

Jumper settings

This board has no jumpers.


Protocol

When you connect the board to your PC or raspberry PI, you will get a virtual com port. You can use your favorite communications program to talk to the device. (I personally use "kermit" because I've been using that for 30 years. "Minicom" is also a good option)

The board supports the following commands:

help

Print a list of supported commands, and also the compilation time of the firmware. You might see a few commands that are there for debugging purposes. Consider those not described here as "do not use".

pix

pix <num> <color>

Set pixel "num" to color "color". Color is specified in 6 hexadecimal digits specifying the color in RGB order. Specifying 102030 will set the red component to 0x10, or about 1/16th of full intensity, the green component to 0x20/0xff or aobut 1/8th of full intensity and blue to about 3/16th.

lshift and rshift

Shift a range of pixels one pixel left (towards the controller) or right (away from the controller).

There are two arguments. the starting position and the number of pixels to involve in the shift. Default is to start at zero and "all pixels".

If you give only one argument, the starting position defaults to zero, if you give two arguments, the first is the starting position the second is the number of pixels.

rainbow

Create a rainbow color effect.

  rainbow [start] [nleds]

will create a rainbow starting at the led "start" and extend over "nleds" leds. The rainbow starts with red, fades via yellow, green, cyan, blue, violet back to red, so it is cyclic.

white

will set all leds to white.

black

will set all leds off (black).

color

sets a fixed color.

 color <color> [start] [nleds]

Sets "nleds" starting at "start" to the color specified by "color".

fade

creates a fade from one color to another color.

 fade <start> <nleds> <color1> <color2>


uid

print the uuniq identifier for this board.

Some chips have an

The software

Default operation

Future hardware enhancements

Future software enhancements

Changelog

1.0

  • Initial public release