This repository was archived by the owner on Apr 20, 2022. It is now read-only.

Description
When attempting to control an individual neopixel's White component using:
pixels.fill((0,0,0,255))
the White pixel didn't light up. However, using:
pixels.fill((1,0,0,255))
did allow the White pixel to shine at full brightness.
cater on the Discord server #help-with-circuitpython channel attributed it to this line in the code:
|
elif self._has_white and r == g and g == b: |