You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The neopixel library could benefit from a CircuitPython helper to offload computationally expensive setitem work to. The use of brightness<1 is also slow.
See adafruit/circuitpython#884
The text was updated successfully, but these errors were encountered:
Yeah I noticed the same issue -- multiplying the brightness value through every value in the array on "show" is inefficient; much better to do the brightness calculation once when you set the value I think.
The neopixel library could benefit from a CircuitPython helper to offload computationally expensive setitem work to. The use of brightness<1 is also slow.
See adafruit/circuitpython#884
The text was updated successfully, but these errors were encountered: