We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21310b2 commit 04854c3Copy full SHA for 04854c3
adafruit_dotstar.py
@@ -48,13 +48,19 @@
48
49
START_HEADER_SIZE = 4
50
51
+# Pixel color order constants
52
RBG = "PRBG"
53
+"""Red Blue Green"""
54
RGB = "PRGB"
55
+"""Red Green Blue"""
56
GRB = "PGRB"
57
+"""Green Red Blue"""
58
GBR = "PGBR"
59
+"""Green Blue Red"""
60
BRG = "PBRG"
61
+"""Blue Red Green"""
62
BGR = "PBGR"
-BGR = "PBGR"
63
+"""Blue Green Red"""
64
65
66
class DotStar(_pixelbuf.PixelBuf):
@@ -103,7 +109,7 @@ class DotStar(_pixelbuf.PixelBuf):
103
109
104
110
.. py:attribute:: brightness
105
111
106
- Overall brightness of the dotstar (0 to 1.0)
112
+ Overall brightness of all dotstars (0 to 1.0)
107
113
"""
108
114
115
def __init__(
0 commit comments