Skip to content

Instantly share code, notes, and snippets.

@joshfedo
Created May 10, 2023 22:34
Show Gist options
  • Save joshfedo/4f763952ed57ced701c00b6343668559 to your computer and use it in GitHub Desktop.
Save joshfedo/4f763952ed57ced701c00b6343668559 to your computer and use it in GitHub Desktop.
blueprint:
name: ZHA - Aqara Wireless Mini Switch Matter
description: Automate your Xiaomi Aqara Wireless Mini Switch using ZHA events.
domain: automation
input:
aqara_mini_switch:
name: Aqara Wireless Mini Switch
description: Aqara Wireless Mini Switch to use
selector:
device:
integration: matter
manufacturer: LUMI
model: lumi.sensor_switch.aq3
button_single_press:
name: Single Press
description: Action to run on single press
default: []
selector:
action: {}
button_double_press:
name: Double Press
description: Action to run on double press
default: []
selector:
action: {}
button_long_press:
name: Long Press
description: Action to run when button is long pressed (held down)
default: []
selector:
action: {}
button_released:
name: Released
description: Action to run when button is released after a long press
default: []
selector:
action: {}
button_shaken:
name: Shake
description: Action to run when shaken
default: []
selector:
action: {}
mode: restart
max_exceeded: silent
trigger:
- platform: event
event_type: zha_event
event_data:
device_id: !input 'aqara_mini_switch'
action:
- variables:
command: '{{ trigger.event.data.command }}'
- choose:
- conditions:
- '{{ command == ''single'' }}'
sequence: !input 'button_single_press'
- conditions:
- '{{ command == ''double'' }}'
sequence: !input 'button_double_press'
- conditions:
- '{{ command == ''hold'' }}'
sequence: !input 'button_long_press'
- conditions:
- '{{ command == ''release'' }}'
sequence: !input 'button_released'
- conditions:
- '{{ command == ''shake'' }}'
sequence: !input 'button_shaken'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment