Updated for late 2025, based on the previous version here: (Dev: Wonko)
ZHA - THIRDREALITY Single Button Zigbee Remote (Model 3RSB22BZ)
The update changes from the previous single, double and hold events to the now working “toggle” “off” and “on” events.
Also a link to the updated product page at 3rd Reality:
Smart Button
Not sure how I make this a blueprint for import, or update the URL below - but this might work for people as the old blueprint did not work for me without these updates:
blueprint:
name: ZHA - THIRDREALITY Single Button Remote
description: Control things with THIRDREALITY Single Buton Remote
domain: automation
input:
remote:
name: Remote
description: THIRDREALITY remote to use
selector:
device:
integration: zha
manufacturer: Third Reality, Inc
model: 3RSB22BZ
multiple: false
button_single_click:
name: Button single-click
description: Action to perform on button single click
default: []
selector:
action: {}
button_double_click:
name: Button double-click
description: Action to perform on button double click
default: []
selector:
action: {}
button_hold:
name: Button hold
description: Action to perform on button hold
default: []
selector:
action: {}
source_url: https://community.home-assistant.io/t/zha-thirdreality-single-button-zigbee-remote-model-3rsb22bz/546977
mode: restart
max_exceeded: silent
trigger:
- platform: event
event_type: zha_event
event_data:
device_id: !input remote
action:
- variables:
command: '{{ trigger.event.data.command }}'
- choose:
- conditions:
- '{{ command == ''toggle'' }}'
sequence: !input button_single_click
- conditions:
- '{{ command == ''off'' }}'
sequence: !input button_double_click
- conditions:
- '{{ command == ''on'' }}'
sequence: !input button_hold