I have been happily using Zigbee2Mqtt for years but recently had to repair everything, did a bit of upgrading of Home Assistant itself and am now using EMQX instead of Mosquitto…
However the MQTT communication itself doesn’t seem to be the issue, as when monitoring a topic the messages back and forth are working, it’s just getting the devices to show up in Home Assistant’s device list…used to be they were all there…
As an example of a simple device I used to have setup in HA:
- name: "smartplug"
state_topic: "zigbee2mqtt/smartplug"
availability_topic: "zigbee2mqtt/bridge/state"
payload_off: "OFF"
payload_on: "ON"
state_value_template: "{{ value_json.state }}"
command_topic: "zigbee2mqtt/smartplug/set"
This is a Lidl HG06337
Any ideas why this would now not want to cooperate like it always used to?
I also have some Xiaomi RTCGQ01LM, it used to be I think that that the zigbee2mqtt page had YAML code snippets for pasting into the config yaml for how to integrate them, but this is now gone?
I use
- name: "Kitchen"
state_topic: "zigbee2mqtt/0x00158d0002275601"
availability_topic: "zigbee2mqtt/bridge/state"
payload_on: true
payload_off: false
value_template: "{{ value_json.occupancy }}"
device_class: "motion"
Are these now wrong?
Thank you all!!