Zigbee2MQTT - Xiaomi Mijia Round Wireless Remote Switch (WXKG01LM) actions

Github Gist: xiaomi_button_zigbee2mqtt.yaml · GitHub

Main features

Define actions for each button press type (single, double, triple, quadruple, many, hold, release).

Supported device


This blueprint support the WXKG01LM device through Zigbee2MQTT only.

Prerequisites

You need to have a sensor entity for the button you want to use from Zigbee2MQTT.
Choose the right sensor with your button name and the entity id which ends with ‘_action’, e.g. ‘sensor.kitchen.button_action’

Blueprint Code

blueprint:
  name: Zigbee2MQTT - Mijia Wireless Remote Switch (WXKG01LM) actions 
  description: >
    Define actions your Xiaomi Mijia Wireless Round Remote Switch using Zigbee2MQTT.
    This blueprint requires a MQTT topic for your button and the actions you want to take for each button press type.
  domain: automation
  input:
    mqtt_topic:
      name: Mijia Wireless Round Switch device name
      description: MQTT topic for Mijia Wireless Round Switch. e.g. "zigbee2mqtt/Desk Button"
    remote_button_single_press:
      name: Single Press
      description: Action to run on single press
      default: []
      selector:
        action:
    remote_button_double_press:
      name: Double Press
      description: Action to run on double press
      default: []
      selector:
        action:
    remote_button_triple_press:
      name: Triple Press
      description: Action to run on triple press
      default: []
      selector:
        action:
    remote_button_quadruple_press:
      name: Quadruple Press
      description: Action to run on quadruple press
      default: []
      selector:
        action:
    remote_button_multiple_press:
      name: Multiple Press (5x or more)
      description: Action to run on multiple press
      default: []
      selector:
        action:
    remote_button_long_press:
      name: Long Press
      description: Action to run on long press
      default: []
      selector:
        action:
    remote_button_release:
      name: Release
      description: Action to run on release after long press
      default: []
      selector:
        action:

mode: restart
max_exceeded: silent

trigger:
  - trigger: mqtt
    topic: !input mqtt_topic
    payload: "single"
    value_template: "{{ value_json.action }}"
    id: "action_single"
  - trigger: mqtt
    topic: !input mqtt_topic
    payload: "double"
    value_template: "{{ value_json.action }}"
    id: "action_double"
  - trigger: mqtt
    topic: !input mqtt_topic
    payload: "triple"
    value_template: "{{ value_json.action }}"
    id: "action_triple"
  - trigger: mqtt
    topic: !input mqtt_topic
    payload: "quadruple"
    value_template: "{{ value_json.action }}"
    id: "action_quadruple"
  - trigger: mqtt
    topic: !input mqtt_topic
    payload: "many"
    value_template: "{{ value_json.action }}"
    id: "action_many"
  - trigger: mqtt
    topic: !input mqtt_topic
    payload: "hold"
    value_template: "{{ value_json.action }}"
    id: "action_hold"
  - trigger: mqtt
    topic: !input mqtt_topic
    payload: "release"
    value_template: "{{ value_json.action }}"
    id: "action_release"                        

action:
  - choose:
      - conditions:
          - condition: trigger
            id: "action_single"
        sequence: !input remote_button_single_press
      - conditions:
          - condition: trigger
            id: "action_double"
        sequence: !input remote_button_double_press
      - conditions:
          - condition: trigger
            id: "action_triple"
        sequence: !input remote_button_triple_press
      - conditions:
          - condition: trigger
            id: "action_quadruple"
        sequence: !input remote_button_quadruple_press
      - conditions:
          - condition: trigger
            id: "action_many"
        sequence: !input remote_button_multiple_press
      - conditions:
          - condition: trigger
            id: "action_hold"
        sequence: !input remote_button_long_press
      - conditions:
          - condition: trigger
            id: "action_release"
        sequence: !input remote_button_release

Updating blueprint

Since Z2M 2.0, there are no longer _action button entities to trigger on, therefore the blueprint has to use MQTT triggers now. For that reason you need to update existing automations slightly. Instead of the old button_sensor blueprint input, you need to define a mqtt_topic. An example is zigbee2mqtt/Desk Button. The second part is the name of your button in Z2M.

Changelog

  • 2020-12-22: Initial version
  • 2025-01-04: Fixed compatability with Zigbee2MQTT 2.0, not using the _action entities anymore, but instead used MQTT triggers.

If you have any issues or questions, please let me know :slight_smile:

8 Likes

Thx for sharing, used it while setting up a new zigbee2mqtt integration.

can you add the sun condition to this great plan?

You can add a condition action yourself: https://www.home-assistant.io/docs/automation/action/

Hello.
I use this and im happy with this blueprint.
My problem is that in one condition I use a “wait for 2 hours” and the and action.
This action never run.
Do you know if exist any problem in use a wait so long?

Can you post your automation in YAML format?

Off course.
the automation is simple:

  • wait 2 hours
  • send ir comand to shutdown a fan
  • turn off boolean
  • wait 1 hour
  • send ir command to shutdown the same fan (security if the fan still on)
    remote_button_long_press:
      - delay:
          hours: 2
          minutes: 0
          seconds: 0
          milliseconds: 0
      - service: remote.send_command
        data:
          device: Lampara_Dormitorio
          command: Apagar
          num_repeats: 1
          delay_secs: 0.4
          hold_secs: 0
        target:
          device_id: xxxxxxxxxxx
      - service: input_boolean.turn_off
        data: {}
        target:
          entity_id: input_boolean.p1_dormi_ventilador
      - delay:
          hours: 1
          minutes: 0
          seconds: 0
          milliseconds: 0
      - service: remote.send_command
        data:
          device: Lampara_Dormitorio
          command: Apagar
          num_repeats: 1
          delay_secs: 0.4
          hold_secs: 0
        target:
          device_id: xxxxxxxxxxxx

Hello there!

just came across this breaking change post. This is the specific piece I’m concerned with:

All action sensors are now disabled by default (sensor.*_action entities). It's recommended to use the MQTT device trigger instead. In case you really need the action sensors, add the following to your configuration.yaml.
homeassistant:
  legacy_action_sensor: true

it looks like the Zigbee2mqtt team are in favor of MQTT Device triggers.

I took a look at this awesome blueprint and I can’t confirm it is using MQTT Device Triggers but I’m not knowledgeable at all in coding.

Could anybody shed some light on this?

thanks!

1 Like

would like to know that as well as i doesn’t work after updating to 1.42

Check this out: Aqara/Xiaomi Wireless mini switch WXKG11LM - #3 by pOpY

2 Likes

Everyone, I have updated the blueprint to fix compatibility with Z2M 2.0. Please read the opening post for instructions on how to get it working again.

1 Like

Thank you, It works