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
Hi ! First I have to tell you that this is a great library.
I'm trying to update de color using a custom wave form instead of the "WaveForm" feature that comes with the API, but when I try to update the color ( i'm just changing the brightness), the fixture starts to flicker. I' m updating the brightness each 1ms.
If increase the time between each update (each 500ms) it works, but is not a smooth change. Any suggestions? I'm new working with node js, so i don't know if I'm updating properly the color on the Fixture, I use a "setInterval" function to update it.
Thank you.
The text was updated successfully, but these errors were encountered:
@KidMustard Update each millisecond is too fast if you're sending regular color/brightness change messages like you said. From LIFX LAN protocol documentation:
Limits
Maximum recommended message transmit rate to a device: 20 per second
The only way I know to achieve faster or smoother updates using regular color/brightness messages is to set a duration for the transition.
Hi ! First I have to tell you that this is a great library.
I'm trying to update de color using a custom wave form instead of the "WaveForm" feature that comes with the API, but when I try to update the color ( i'm just changing the brightness), the fixture starts to flicker. I' m updating the brightness each 1ms.
If increase the time between each update (each 500ms) it works, but is not a smooth change. Any suggestions? I'm new working with node js, so i don't know if I'm updating properly the color on the Fixture, I use a "setInterval" function to update it.
Thank you.
The text was updated successfully, but these errors were encountered: