lukasroegner / homebridge-philips-hue-sync-box

Homebridge plugin for the Philips Hue Sync Box.
MIT License
55 stars 12 forks source link

Unable to toggle the state of the syncing #20

Closed cwaddington closed 4 years ago

cwaddington commented 4 years ago

When you attempt to turn on light syncing via the Home app, the icon will indicate that syncing is on but will revert back to off after a few seconds. Similarly, if syncing is already started and you attempt to turn off the syncing in Home, it will indicate Off but switch back to On after a few seconds. In other words, the current state of syncing always overrides the state that try to set in Home. Note that modifying the brightness works as expected.

Great plugin.

lukasroegner commented 4 years ago

@cwaddington Which values for defaultOff and defaultOn have you set in your config? Have you already checked the logs for error messages? I recommend starting Homebridge in debug mode (parameter D) to get the detailed log output.

cwaddington commented 4 years ago

Hi Lukas

My original config did not specify values for ‘defaultOff’ or ‘defaultOn’ as they were optional. I went back and added them as follows:

DefaultOff: passthrough DefaultOn: video

And that now fixes the problem so that when I turn sync on via HomeKit it stays on, and it stays off when I turn it off. Problem solved!

Thank you for your help, and donating your time to this project.

Regards

Sent from my iPad

On Aug 9, 2020, at 11:51 AM, Lukas Rögner notifications@github.com wrote:

 @cwaddington Which values for defaultOff and defaultOn have you set in your config? Have you already checked the logs for error messages? I recommend starting Homebridge in debug mode (parameter D) to get the detailed log output.

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub, or unsubscribe.

cwaddington commented 4 years ago

Hi Lukas

My original config did not specify values for ‘defaultOff’ or ‘defaultOn’ as they were optional. I went back and added them as follows:

DefaultOff: passthrough DefaultOn: video

And that now fixes the problem so that when I turn sync on via HomeKit it stays on, and it stays off when I turn it off. Problem solved!

Thank you.