-
Notifications
You must be signed in to change notification settings - Fork 1
/
webos_example_automation.yaml
178 lines (167 loc) · 4.21 KB
/
webos_example_automation.yaml
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
- alias: TV volume up
id: tv_volume_up
description: ''
trigger:
mode: queued
condition: []
action:
- service: media_player.volume_up
data:
entity_id: media_player.tv_woonkamer
- alias: TV volume down
id: tv_volume_down
description: ''
trigger:
mode: queued
condition: []
action:
- service: media_player.volume_down
data:
entity_id: media_player.tv_woonkamer
- alias: TV down
id: tv_down
description: ''
trigger:
mode: queued
condition: []
action:
- choose:
- conditions:
- condition: template
value_template: '{{ state_attr("media_player.tv_woonkamer", "source") in ["NPO", "Netflix", "YouTube"] }}'
sequence:
- service: webostv.button
data:
entity_id: media_player.tv_woonkamer
button: DOWN
default:
service: kodi.call_method
data:
entity_id: media_player.kodiwoonkamer
method: Input.Down
- alias: TV up
id: tv_up
description: ''
trigger:
mode: queued
condition: []
action:
- choose:
- conditions:
- condition: template
value_template: '{{ state_attr("media_player.tv_woonkamer", "source") in ["NPO", "Netflix", "YouTube"] }}'
sequence:
- service: webostv.button
data:
entity_id: media_player.tv_woonkamer
button: UP
default:
service: kodi.call_method
data:
entity_id: media_player.kodiwoonkamer
method: Input.Up
- alias: TV left
id: tv_left
description: ''
trigger:
mode: queued
condition: []
action:
- choose:
- conditions:
- condition: template
value_template: '{{ state_attr("media_player.tv_woonkamer", "source") in ["NPO", "Netflix", "YouTube"] }}'
sequence:
- service: webostv.button
data:
entity_id: media_player.tv_woonkamer
button: LEFT
default:
service: kodi.call_method
data:
entity_id: media_player.kodiwoonkamer
method: Input.Left
- alias: TV right
id: tv_right
description: ''
trigger:
mode: queued
condition: []
action:
- choose:
- conditions:
- condition: template
value_template: '{{ state_attr("media_player.tv_woonkamer", "source") in ["NPO", "Netflix", "YouTube"] }}'
sequence:
- service: webostv.button
data:
entity_id: media_player.tv_woonkamer
button: RIGHT
default:
service: kodi.call_method
data:
entity_id: media_player.kodiwoonkamer
method: Input.Right
- alias: TV Home
id: tv_home
description: ''
trigger:
mode: queued
condition: []
action:
- choose:
- conditions:
- condition: template
value_template: '{{ state_attr("media_player.tv_woonkamer", "source") in ["NPO", "Netflix", "YouTube"] }}'
sequence:
- service: webostv.button
data:
entity_id: media_player.tv_woonkamer
button: EXIT
default:
service: kodi.call_method
data:
entity_id: media_player.kodiwoonkamer
method: Input.Home
- alias: TV Back
id: tv_back
description: ''
trigger:
mode: queued
condition: []
action:
- choose:
- conditions:
- condition: template
value_template: '{{ state_attr("media_player.tv_woonkamer", "source") in ["NPO", "Netflix", "YouTube"] }}'
sequence:
- service: webostv.button
data:
entity_id: media_player.tv_woonkamer
button: BACK
default:
service: kodi.call_method
data:
entity_id: media_player.kodiwoonkamer
method: Input.Back
- alias: TV Select
id: tv_select
description: ''
trigger:
mode: queued
condition: []
action:
- choose:
- conditions:
- condition: template
value_template: '{{ state_attr("media_player.tv_woonkamer", "source") in ["NPO", "Netflix", "YouTube"] }}'
sequence:
- service: webostv.button
data:
entity_id: media_player.tv_woonkamer
button: ENTER
default:
service: kodi.call_method
data:
entity_id: media_player.kodiwoonkamer
method: Input.Select