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
I can't update the very last led of my 192 pixels ledstrip. All other leds are working fine. Here is an example. For reference led number 191 is the last pixel.
led.set(191, color)
led.update()
This is not working. However when I call led.update() twice it is working fine.
led.set(191, color)
led.update()
led.update()
any idea what can cause this strange behaviour?
The text was updated successfully, but these errors were encountered:
I want to specify that this bug depends on the color value that you want to update with. for example, if you set the last led to rgb(255,0,0) and you do an update nothing happens unless you update again (in this case the led turns red). For some color values the last led displays a wrong color during the initial/first update.
Hi,
I can't update the very last led of my 192 pixels ledstrip. All other leds are working fine. Here is an example. For reference led number 191 is the last pixel.
This is not working. However when I call led.update() twice it is working fine.
any idea what can cause this strange behaviour?
The text was updated successfully, but these errors were encountered: