Page 1 of 1
WUD - What's up docker
Posted: Tuesday 08 July 2025 18:06
by Varazir
Hello,
WUD has has MQTT support and say it's playing nice with home assistance.
https://getwud.github.io/wud/#/configur ... gers/mqtt/
I thought I would give it a try.
I can see my containers in my MQTT explorer
This is my setup in Domoticz
Maybe I'm doing something wrong or need some something to translate the MQTT payload in Domoticz for it to discover.
This is payload for Domoticz
https://gist.github.com/varazir/ecac2f5 ... 2a09cfc057
Show status, if there an update maybe more but it's what I come up with.
maybe with script/API trigger an update from Domoticz.
Re: WUD - What's up docker
Posted: Tuesday 08 July 2025 22:44
by Varazir
I see that I missed in the docker conf
- WUD_TRIGGER_MQTT_MOSQUITTO_HASS_ENABLED=true
- WUD_TRIGGER_MQTT_MOSQUITTO_HASS_DISCOVERY=true
few devices has been created. One step forward

Re: WUD - What's up docker
Posted: Wednesday 09 July 2025 17:06
by heggink
Quite interesting! Is this compensating for the lack of update indicators in dockge?
Re: WUD - What's up docker
Posted: Wednesday 09 July 2025 18:38
by Varazir
heggink wrote: ↑Wednesday 09 July 2025 17:06
Quite interesting! Is this compensating for the lack of update indicators in dockge?
yes sort of and no notification in Domoticz.
Re: WUD - What's up docker
Posted: Saturday 12 July 2025 11:20
by Varazir
I'm have set it up using the Python Plugin: MqttMapper plugin to do this but it seams like WUD isn't that good at pushing data to the MQTT broker.
I think I see the issue, the cron was set to run 0300
Change the cron to every 5 min.
https://github.com/FlyingDomotic/domoti ... per-plugin
Re: WUD - What's up docker
Posted: Sunday 13 July 2025 0:41
by Varazir
Example
Code: Select all
{
"Dockge Status": {
"topic": "wud/container/docker/dockge-dockge-1",
"key": "wud/container/docker/dockge-dockge-1-status",
"type": "244",
"subtype": "73",
"switchtype": "0",
"mapping": {
"item": "status",
"default": "0",
"values": {
"running": "100"
}
}
},
"Dockge Update": {
"topic": "wud/container/docker/dockge-dockge-1",
"key": "wud/container/docker/dockge-dockge-1-update",
"type": "244",
"subtype": "73",
"switchtype": "0",
"mapping": {
"item": "update_available",
"default": "0",
"values": {
"false": "0",
"true": "100"
}
}
}
}
Re: WUD - What's up docker
Posted: Sunday 13 July 2025 0:49
by waltervl
So what was wrong with the HA Discovery option? From the documentation it just should work.
Re: WUD - What's up docker
Posted: Sunday 13 July 2025 9:31
by Varazir
waltervl wrote: ↑Sunday 13 July 2025 0:49
So what was wrong with the HA Discovery option? From the documentation it just should work.
With this settings
I only get this devices
This how it looks like in MQTTexplorer
Logs

Re: WUD - What's up docker
Posted: Sunday 13 July 2025 10:26
by waltervl
Yes, and that seems correct. i see 3 binary sensors in config and 4 sensors. So in Domoticz creates 3 switches and 4 custom sensors. So exactly what WUD configured. It also should be enough to manage the system I suppose.
But perhaps in topic WUD/update also config topics are present?
It is (or was) by the way not advised to have the discovery topic (default homeassistant) the same as the main state topic.... If you want to differ better make it for example WUD_discover, zwave_discover, zigbee2mqtt_discover etc
Re: WUD - What's up docker
Posted: Sunday 13 July 2025 17:53
by Varazir
waltervl wrote: ↑Sunday 13 July 2025 10:26
Yes, and that seems correct. i see 3 binary sensors in config and 4 sensors. So in Domoticz creates 3 switches and 4 custom sensors. So exactly what WUD configured. It also should be enough to manage the system I suppose.
But perhaps in topic WUD/update also config topics are present?
Don't know, But it don't show status of each container. It's what I'm after.
waltervl wrote: ↑Sunday 13 July 2025 10:26
It is (or was) by the way not advised to have the discovery topic (default homeassistant) the same as the main state topic.... If you want to differ better make it for example WUD_discover, zwave_discover, zigbee2mqtt_discover etc
Why dose it matter ?
If I use the homeassistant topic for all will that not mash everything and domoticz will hard understand what is what?
For me it's more logic to separate them. Then dose it matter to use *_discover? Dose the the plugins care about the topic? as long as it's matching in the settings shouldn't it work ?
Re: WUD - What's up docker
Posted: Sunday 13 July 2025 18:37
by waltervl
The discovery topic is by default split from the state topic to ease the system in discovering devices. Else every new message in the integration also has to be checked for config changes. And when you have a lot of devices you will get a lot of unnecessary possible config changes that needs to be handled.
In the past this could go wrong, this is why you see a split in config and state topics.
Re: WUD - What's up docker
Posted: Sunday 13 July 2025 21:10
by Varazir
So I should change prefix tag för zwave/zigbee/wud to homeassistant?
And the in the HW setup for both I should have homeassistant?
Re: WUD - What's up docker
Posted: Monday 14 July 2025 0:21
by waltervl
If you use the default settings of WUD, zigbee and zwave you will see you get a zwavez zigbee and wud state topics and homeassistant topic where all the config topics are. This will not have issues if you have only 1 Domoticz MQTT AD gateway. All the devices will be handled by this gateway.
If you want a seperate Domoticz MQTT AD gateway for each integration for ease of understanding you should also define a discovery prefix for each integration (eg WUD_discover) as else Domoticz will indeed be mixing things up.