We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1230da9 commit 251489cCopy full SHA for 251489c
adafruit_seesaw/neopixel.py
@@ -70,7 +70,7 @@ def __init__(
70
self.auto_write = auto_write
71
self._n = n
72
self._brightness = min(max(brightness, 0.0), 1.0)
73
- self._pixel_order = GRBW if pixel_order is None else pixel_order
+ self._pixel_order = GRB if pixel_order is None else pixel_order
74
self._bpp = len(self._pixel_order) if bpp is None else bpp
75
if self._bpp != len(self._pixel_order):
76
raise ValueError("Pixel order and bpp value do not agree.")
0 commit comments