Ludovic BOUÉ
Ludovic BOUÉ
I check but I didn't see any duplicate entries: - Device 179: floodSensor called "Detecteur fuite"  
> @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. 
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).  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...