arachnetech / homebridge-mqttthing

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

value not changed in plugin #651

Closed zeev-mindali closed 7 months ago

zeev-mindali commented 7 months ago

i have zwave working with mqtt. when i use the buttons from homeKit/homeBridge/googleHome, i can see it's turns off and on but when i press the button itself, i see corresponed message in mqtt

topic : zwave/lab/light/switch_binary/endpoint_1/currentValue body: { time:"169979656880", value: false }

but i don't see that the state in home bridge is changing

what am i missing?

the plugin accessory configure in mqttthing: { "type": "lightbulb-OnOff", "name": "light", "url": "mqtt://192.168.1.31:1883", "topics": { "getOnline": "zwave/lab/light/switch_binary/endpoint_1/currentValue", "getOn": "zwave/lab/light/switch_binary/endpoint_1/currentValue", "setOn": "zwave/lab/light/switch_binary/endpoint_1/targetValue/set" }, "accessory": "mqttthing" }