Zigbee2MQTT - Tuya 4-button Scene Switch (TS0044)

Yes, it worked wonderfully! Thanks!

2 Likes

I updated Zigbee2Mqtt and Home Assistant Core and now only one click works. Is it just me?

1 Like

Does not work when using Input Select: Next to cycle through scenes. Normal operations on the a regular light bulb work for me. I’m able to cycle through the scene entities using a separate automation as shown below:

alias: test
description: ""
trigger:
  - platform: device
    domain: mqtt
    device_id: some_device_ID
    type: action
    subtype: 3_single
    discovery_id: some_device_ID action_3_single
condition: []
action:
  - service: input_select.select_next
    target:
      entity_id: input_select.scene_entities
    data:
      cycle: true
  - service: scene.turn_on
    target:
      entity_id: "{{ states('input_select.scene_entities')}}"
mode: single

Edit: It doesn’t look like you can have more than a single action per press (i.e. you can’t call Light Bulb 1: Toggle and Light Bulb 2: Toggle. Only Light Bulb 1: Toggle will work)

Hi Guy,
I’m new in Home Assistant and I try to use a TS0044 button, my mqtt setup and Zigbee2MQTT setup seems to be ok because I successfully pairing my button and my roller.
Regarding my roller all is OK, but I have an issue with my button x4 TS0044
I can see in equipement event “button 1 single” “button 2 single” “button 1 double” but nothing is working in blueprint script.
When I excute manualy automation I was an error with :slight_smile:
command: ‘{{ trigger.to_state.state }}’
I changed it as I saw in forum by :
command: “{{ trigger.payload_json }}”
Now I don’t get error with manual execution but when I push a button nothing :frowning:
Can you help me?
I give you screenshots
Thank you so much for your help

I can only get single click to work as well.

hello,
what is that blueprint good for? as its natively supported by haas?

thanks!