Z2M - TS004F Tuya 4-Gang Switch blueprint

So, which light switches are compatible with this blueprint (in the UK)?
Any links?

It is such a weird way to set up a switch in the Tuya app as well using scenes rather than being able to just pick a light etc.

Many thanks in advance

I’ve improved on the above blueprint and published it here - Tuya TS004F: 4 Button Wireless Switch - Zigbee2MQTT (2022)

  1. The button names were wrong in the original blueprint.
    Button 1 - Left Bottom
    Button 2 - Right Bottom
    Button 3 - Top Right
    Button 4 - Top Left
  2. This blueprint follows the order
    Button 1 Single Press
    Button 1 Long Press
    Button 1 Double Press

The original blueprint sometimes had inconsistencies
Button 1 Single Press
Button 1 Long Press
Button 1 Double Press
Button 2 Hold
Button 2 Double Press
Button 3 Long Press

1 Like

I was unable to get this automation to work until realizing that my device name needed to exclude any spaces due to the condition in the blueprint below:

`'{{ topic.split(''/'')[1].replace(''/'', '''') == deviceName.split('' '')[0]}}'`

Removing spaces from my device name allowed the automation to work flawlessly. Thanks!