Hello, I connected two HAs using MQTT Statestream and MQTT Eventstream. I want to have Z-Wave devices on my secondary HA.
I have two issues. First, I specified two devices only, but I can see more. The second problem that I have is that I cannot manage Z-Wave devices from my primary HA. It displays the status and changes if the status changed on the secondary HA, but I cannot change it from my primary HA.
This is the code that I use on my primary HA:
mqtt_eventstream:
publish_topic: hass/eventstream/media
subscribe_topic: hass/eventstream/master
I change the MQTT broker on the secondary device to use the IP address of my primary HA and use the following code on the secondary device:
mqtt_statestream:
base_topic: homeassistant
publish_attributes: true
publish_timestamps: true
include:
entities:
- switch.entry_light
- switch.garage_light
mqtt_eventstream:
publish_topic: hass/eventstream/master
subscribe_topic: hass/eventstream/media
Any ideas? Can I do it?