arachnetech / homebridge-mqttthing

A plugin for Homebridge allowing the integration of many different accessory types using MQTT.
Apache License 2.0
466 stars 104 forks source link

delay between homebridge and homekit #666

Open zeev-mindali opened 8 months ago

zeev-mindali commented 8 months ago

hi to all,

i using mqtthing to get zwave status. on homebridge i see it instantly, but on homekit app, it's very laggy. this is how i configured it: { "type": "lightbulb-OnOff", "name": "node-16-epid-1", "url": "127.0.0.1:1883", "username": "*****", "password": "****", "topics": { "getOnline": { "topic": "zwave/office/node16/switch_binary/endpoint_1/currentValue", "apply": "return message!=0?true:false" }, "getOn": { "topic": "zwave/office/node16/switch_binary/endpoint_1/currentValue", "apply": "return message" }, "setOn": { "topic": "zwave/office/node16/switch_binary/endpoint_1/targetValue/set", "aplay": "return message!=0?true:false" } }, "onValue": true, "offValue": false, "accessory": "mqttthing" },