-
Notifications
You must be signed in to change notification settings - Fork 0
/
blueprint
64 lines (60 loc) · 1.65 KB
/
blueprint
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
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.remote.b1acn02
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:
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