]> sigrok.org Git - sigrok-dumps.git/blame - led/ws2801/README
usb_power_delivery: Add new captures
[sigrok-dumps.git] / led / ws2801 / README
CommitLineData
13f998d4
MR
1-------------------------------------------------------------------------------
2WS2801 LED strip
3-------------------------------------------------------------------------------
4
bd6d6407 5This is a capture of data output to a LED universe of 50 RGB LEDs.
13f998d4 6
bd6d6407 7Every universe at full capacity has a frame size of 768 bytes and can clock
13f998d4
MR
8out at roughly 100 frames per second.
9
10Details:
11 - Koen Kooi's evil vendor tree: https://github.com/koenkooi/kernel
bd6d6407 12 - PRU WS28xx firmware: https://github.com/mranostay/ws28xx-lighting-pru
13f998d4
MR
13 - WS2801 datasheet: http://www.adafruit.com/datasheets/WS2801.pdf
14
15
bd6d6407
UH
16WS2801 protocol overview
17------------------------
13f998d4 18
bd6d6407 19Each LED receives and then stores the first 24-bits of RGB ordered data then
13f998d4
MR
20passes any more out the Data Output pin to the next LED in the chain.
21
bd6d6407 22There is no CS line but latching is done when CLK is held low for >500 uS.
13f998d4 23
bd6d6407
UH
24This functions as a "reverse" shift register and allows the strip length not
25to be defined in the protocol.
13f998d4
MR
26
27
28Logic analyzer setup
29--------------------
30
bd6d6407 31The logic analyzer used was a Saleae Logic16 (at 5MHz):
13f998d4 32
bd6d6407
UH
33 Probe WS2801 LED strip
34 ----------------------------
13f998d4
MR
35 1 (black) Universe #1
36 2 (brown) Clock
37
bd6d6407 38
13f998d4
MR
39Data
40----
41
42The data contains various RGB values and frames.
43
44The sigrok command line used was:
45
46 sigrok-cli --driver saleae-logic16 --samples 10M --config samplerate=5mhz \
47 -p 0=UNI1,1=CLK -o ws2801_2ch_5mhz.sr
bd6d6407 48