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.
2 parents 1230da9 + 251489c commit 148345dCopy full SHA for 148345d
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