summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-01-15 21:43:07 +0000
committerQMK Bot <hello@qmk.fm>2021-01-15 21:43:07 +0000
commit296552e358b857efa40e87f45f3ff177a1f527a7 (patch)
treee00d93b5baa9b6099bd6194851d27b55ef683e03 /docs
parentbd2764cccc3986e71d182b2cf2ead5ef04f0da41 (diff)
parent3d70766327422bcd918b6940298f7557ab10d248 (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'docs')
-rw-r--r--docs/ws2812_driver.md9
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/ws2812_driver.md b/docs/ws2812_driver.md
index da5db01dbd..cca6827ec8 100644
--- a/docs/ws2812_driver.md
+++ b/docs/ws2812_driver.md
@@ -33,10 +33,11 @@ The default setting is 280 µs, which should work for most cases, but this can b
Some variants of the WS2812 may have their color components in a different physical or logical order. For example, the WS2812B-2020 has physically swapped red and green LEDs, which causes the wrong color to be displayed, because the default order of the bytes sent over the wire is defined as GRB.
In this case, you can change the byte order by defining `WS2812_BYTE_ORDER` as one of the following values:
-| Byte order | Known devices |
-|-----------------------------------|-------------------------------|
-| `WS2812_BYTE_ORDER_GRB` (default) | Most WS2812's, SK6812, SK6805 |
-| `WS2812_BYTE_ORDER_RGB` | WS2812B-2020 |
+|Byte order |Known devices |
+|---------------------------------|-----------------------------|
+|`WS2812_BYTE_ORDER_GRB` (default)|Most WS2812's, SK6812, SK6805|
+|`WS2812_BYTE_ORDER_RGB` |WS2812B-2020 |
+|`WS2812_BYTE_ORDER_BGR` |TM1812 |
### Bitbang