#Zigbee2MQTT <-> MQTT : Device no longer reporting "action" state

5 messages · Page 1 of 1 (latest)

wary copper
#

The MQTT integration has suddenly stopped detecting my smart knob (ERS-10TZBVK-AA) action state as a sensor.

This is state dump from the zigbee2mqtt dashboard.

{
    "battery": 83,
    "linkquality": 153,
    "operation_mode": "event",
    "voltage": 2900,
    "action": "rotate_right",
    "action_rate": null,
    "action_step_size": null,
    "action_transition_time": null
}

The state is updated when interacting with the device on the zigbee2mqtt dashboard, but for some reason it is no longer being detected as a sensor by the MQTT integration on HASS.

full coyote
wary copper
#

@full coyote Yes I have upgraded to 2.0.0, I've made the changes recommended by that discussion thread to my configuration file. Unfortunately it has not solved the issue, I'll keep digging through the discussion tho incase I missed something.

#

There we go, action sensors are disabled by default in 2.0.0.. they have been changed to device triggers. I will upgrade my automations eventually to the new system. I have solved my problem by adding the following to my zigbee2mqtt configuration:

homeassistant:
  legacy_action_sensor: true
#

Thank you for your help @full coyote