-
Notifications
You must be signed in to change notification settings - Fork 1
/
friends of hue 4 button outdoor
215 lines (202 loc) · 6.18 KB
/
friends of hue 4 button outdoor
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
blueprint:
name: Hue, Friends Of Hue switch, 4 button, all functions
description: >
HA version 2023.08 or newer
Works with all functions
Correct the problem of "short release" triggered on the same time as "long release"
If multible switches needing the same functionality, select multible
domain: automation
input:
hue-switch-button1:
name: "Hue Switch button 1"
description: "Upper Left"
selector:
entity:
device_class: button
multiple: true
hue-switch-button2:
name: "Hue Switch button 2"
description: "Lower Left"
selector:
entity:
device_class: button
multiple: true
hue-switch-button3:
name: "Hue Switch button 3"
description: "Upper Right"
selector:
entity:
device_class: button
multiple: true
hue-switch-button4:
name: "Hue Switch button 4"
description: "Lower Right"
selector:
entity:
device_class: button
multiple: true
button_1_short_release:
name: Short Release 1
description: Action to run on button upper-left short release
default: []
selector:
action: {}
button_2_short_release:
name: Short Release 2
description: Action to run on button lower-left short release
default: []
selector:
action: {}
button_3_short_release:
name: Short Release 3
description: Action to run on button upper-right short release
default: []
selector:
action: {}
button_4_short_release:
name: Short Release 4
description: Action to run on button lower-right short release
default: []
selector:
action: {}
button_1_long_release:
name: Long Release 1
description: Action to run on button upper-left long release
default: []
selector:
action: {}
button_2_long_release:
name: Long Release 2
description: Action to run on button lower-left long release
default: []
selector:
action: {}
button_3_long_release:
name: Long Release 3
description: Action to run on button upper-right long release
default: []
selector:
action: {}
button_4_long_release:
name: Long Release 4
description: Action to run on button lower-right long release
default: []
selector:
action: {}
button_1_press:
name: Press 1
description: Action to run on button upper-left initial press
default: []
selector:
action: {}
button_2_press:
name: Press 2
description: Action to run on button lower-left initial press
default: []
selector:
action: {}
button_3_press:
name: Press 3
description: Action to run on button upper-right initial press
default: []
selector:
action: {}
button_4_press:
name: Press 4
description: Action to run on button lower-right initial press
default: []
selector:
action: {}
button_1_repeat:
name: Repeat 1
description: Action to run on button upper-left repeat
default: []
selector:
action: {}
button_2_repeat:
name: Repeat 2
description: Action to run on button lower-left repeat
default: []
selector:
action: {}
button_3_repeat:
name: Repeat 3
description: Action to run on button upper-right repeat
default: []
selector:
action: {}
button_4_repeat:
name: Repeat 4
description: Action to run on button lower-right repeat
default: []
selector:
action: {}
mode: queued
max: 10
trigger:
- platform: state
entity_id: !input 'hue-switch-button1'
id: B1
- platform: state
entity_id: !input 'hue-switch-button2'
id: B2
- platform: state
entity_id: !input 'hue-switch-button3'
id: B3
- platform: state
entity_id: !input 'hue-switch-button4'
id: B4
action:
- variables:
switch_to_state: '{{ trigger.to_state.attributes.event_type }}'
switch_from_state: '{{ trigger.from_state.attributes.event_type }}'
switch_id: '{{ trigger.id }}'
# switch_from_ID: '{{ trigger.entity_id }}'
- choose:
- conditions: '{{ switch_to_state == ''initial_press'' }}'
sequence:
- choose:
- conditions: '{{ switch_id == ''B1'' }}'
sequence: !input 'button_1_press'
- conditions: '{{ switch_id == ''B2'' }}'
sequence: !input 'button_2_press'
- conditions: '{{ switch_id == ''B3'' }}'
sequence: !input 'button_3_press'
- conditions: '{{ switch_id == ''B4'' }}'
sequence: !input 'button_4_press'
- conditions: '{{ switch_to_state == ''repeat'' }}'
sequence:
- choose:
- conditions: '{{ switch_id == ''B1'' }}'
sequence: !input 'button_1_repeat'
- conditions: '{{ switch_id == ''B2'' }}'
sequence: !input 'button_2_repeat'
- conditions: '{{ switch_id == ''B3'' }}'
sequence: !input 'button_3_repeat'
- conditions: '{{ switch_id == ''B4'' }}'
sequence: !input 'button_4_repeat'
- conditions: '{{ switch_to_state == ''long_release'' }}'
sequence:
- choose:
- conditions: '{{ switch_id == ''B1'' }}'
sequence: !input 'button_1_long_release'
- conditions: '{{ switch_id == ''B2'' }}'
sequence: !input 'button_2_long_release'
- conditions: '{{ switch_id == ''B3'' }}'
sequence: !input 'button_3_long_release'
- conditions: '{{ switch_id == ''B4'' }}'
sequence: !input 'button_4_long_release'
- conditions: '{{ switch_to_state == ''short_release'' }}'
sequence:
- choose:
- conditions: '{{ switch_from_state == ''initial_press'' }}'
sequence:
- choose:
- conditions: '{{ switch_id == ''B1'' }}'
sequence: !input 'button_1_short_release'
- conditions: '{{ switch_id == ''B2'' }}'
sequence: !input 'button_2_short_release'
- conditions: '{{ switch_id == ''B3'' }}'
sequence: !input 'button_3_short_release'
- conditions: '{{ switch_id == ''B4'' }}'
sequence: !input 'button_4_short_release'