This Blueprint is for the Xiaomi Aqara Wireless Mini Switch paired to the ZHA integration. The Zigbee ID for this button is lumi.sensor_swit
.
It supports 5 functions:
- Single press
- Double press
- Long press
- Release (after a long press)
- Shake
Apparently, there are three (or more) variations of this switch. I got mine from Aliexpress.
All the blueprint variations, based on ID:
-
lumi.sensor_swit
(this blueprint) lumi.remote.b1acn01
lumi.sensor_switch.aq2
You can find the model ID from the devices list in Home Assistant (Configuration > Devices and search for LUMI
). Mine looks like this:
The blueprint is heavily based on Sean’s, with the addition of the shake
action.
Blueprint:
blueprint:
name: ZHA - Aqara Wireless Mini Switch
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: zha
manufacturer: LUMI
model: lumi.sensor_swit
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'