This repository has been archived by the owner on Mar 8, 2022. It is now read-only.
Replies: 1 comment 2 replies
-
yes - you cant trigger the command so often. You should update the state only every second. This because of the connection via UDP. Overall you should check the state every time you change it. Overall the bulbs are not designed to process multiple state changes in seconds (because of power spikes). |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I'm making a program that modifies the brightness of the bulb (e27 works well).
The input is a byte value that changes between 0 and 255 so it's perfect. (using controller stick as input)
My program sends this command via cmd every 200ms (X = 0-255)
wizlight on --ip 192.168.0.18 --k 2200 --brightness X
After a while the light gets frozen but on the phone app I can freely change the brightness. is there a rate limit?
also I just send the coomand without waiting for a reply, maybe that's the problem, but by doing that it's a slow process
Beta Was this translation helpful? Give feedback.
All reactions