Ludovic BOUÉ

Results 353 comments of Ludovic BOUÉ

I check but I didn't see any duplicate entries: - Device 179: floodSensor called "Detecteur fuite" ![image](https://user-images.githubusercontent.com/938089/190375648-7c27cc0d-c5f7-44ab-9fe7-588430d5887f.png) ![image](https://user-images.githubusercontent.com/938089/190375858-283484a4-86e5-4ca5-8fab-67f00188c07e.png)

> @lboue are you sure that your accessories folder doesn't contain duplicated entries? Can you check with the help of homebridge ui settings page ? I am getting the same...

I think I found the root cause. If accessories 179 and 181 have the same name, I am getting the callback issue: ``` 16/09/2022, 20:22:11] [HB Supervisor] Restarting Homebridge... [16/09/2022,...

Maybe we will have to add _device.id_ to generate distinct uuid here ``` addAccessory(device) { if (device === undefined) { return; } const uuid = this.api.hap.uuid.generate(device.name + device.roomID); ```

I am still having the callback issue with homebridge-fibaro-home-center v1.2.14: ``` [9/14/2022, 10:00:05 PM] --- [9/14/2022, 10:00:05 PM] Loaded plugin: [email protected] [9/14/2022, 10:00:05 PM] Registering platform 'homebridge-fibaro-home-center.FibaroHC' [9/14/2022, 10:00:05 PM]...

I found an implementation exemple in [homebridge-hue plugin](https://github.com/ebaauw/homebridge-hue/search?q=.reachable&unscoped_q=.reachable ) source code: > homebridge-hue doesn't report an accessory as unreachable, but sets Status Fault when a device is reported unreachable by...

I noticed the same behavior since iOS16 for me. ![image](https://user-images.githubusercontent.com/938089/190341608-d67536e5-0e9e-4933-bfce-84c13dbd43ed.jpeg)

Hello @ilcato. You can try with my test file here: https://github.com/lboue/HAP-NodeJS/blob/no_response/accessories/Light_accessory.js Did you had time to work on this?

This is working for Philips Hue devices like Philips Hue motion sensor which is also have additionnal services (Temp and Light sensors). ![Hue sensor](https://user-images.githubusercontent.com/938089/146638131-627f7e96-7ba8-4334-b8ce-6a9f862a40cf.png) This would be possible to group...

Maybe there is a link with this already existing piece of code checking for **device.parentId**: https://github.com/ilcato/homebridge-fibaro-home-center/blob/d4a25f2d881222233efb9af326645befaf827901/src/platform.ts#L247 ``` findSiblingDevices(device, devices) { const siblings = new Map(); devices.map((s) => { if (s.visible...