-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathservices.yaml
262 lines (248 loc) · 5.01 KB
/
services.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
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
send_command:
target:
entity:
integration: pioneer_async
domain: media_player
fields:
command:
required: true
example: "PO"
selector:
text:
prefix:
selector:
text:
suffix:
selector:
text:
set_panel_lock:
target:
entity:
integration: pioneer_async
domain: media_player
fields:
panel_lock:
required: true
example: "0"
default: "0"
selector:
select:
translation_key: "panel_lock"
options: # aiopioneer.const.PANEL_LOCK
- "0"
- "1"
- "2"
set_remote_lock:
target:
entity:
integration: pioneer_async
domain: media_player
fields:
remote_lock:
required: true
example: false
selector:
boolean:
set_dimmer:
target:
entity:
integration: pioneer_async
domain: media_player
fields:
dimmer:
required: true
example: "Bright"
default: "Brightest"
selector:
select:
translation_key: "dimmer_mode"
options: # aiopioneer.const.DIMMER_MODES
- "Brightest"
- "Bright"
- "Dark"
- "Off"
- "(cycle)"
set_tone_settings:
description: Set AVR tone settings for zone
target:
entity:
integration: pioneer_async
domain: media_player
fields:
tone:
description: Tone mode
required: true
example: "On"
default: "Bypass"
selector:
select:
translation_key: "tone_mode"
options: # aiopioneer.const.TONE_MODES
- "Bypass"
- "On"
- "(cycle)"
treble:
description: Tone treble value
example: 0
default: 0
selector:
number:
min: -6
max: 6
step: 1
unit_of_measurement: dB
bass:
description: Tone bass value
example: 0
default: 0
selector:
number:
min: -6
max: 6
step: 1
unit_of_measurement: dB
# set_amp_settings:
# description: Set AVR amplifier function settings for zone
# target:
# entity:
# integration: pioneer_async
# domain: media_player
select_tuner_band:
target:
entity:
integration: pioneer_async
domain: media_player
fields:
band:
required: true
example: "FM"
selector:
select:
translation_key: "tuner_band"
options:
- "FM"
- "AM"
set_fm_tuner_frequency:
target:
entity:
integration: pioneer_async
domain: media_player
fields:
frequency:
required: true
example: 106.1
selector:
number:
min: 87.5
max: 108.0
step: 0.1
default: 87.5
unit_of_measurement: MHz
mode: box
set_am_tuner_frequency:
target:
entity:
integration: pioneer_async
domain: media_player
fields:
frequency:
required: true
example: 988
selector:
number:
min: 530
max: 1700
default: 530
step: 1 # 10KHz in the Americas, 9KHz ROW
unit_of_measurement: kHz
mode: box
select_tuner_preset:
target:
entity:
integration: pioneer_async
domain: media_player
fields:
class:
required: true
example: "C"
default: "A"
selector:
select:
options:
- "A"
- "B"
- "C"
- "D"
- "E"
- "F"
- "G"
preset:
required: true
example: 5
default: 1
selector:
number:
min: 1
max: 9
step: 1
set_channel_levels:
target:
entity:
integration: pioneer_async
domain: media_player
fields:
channel:
required: true
example: "L"
selector:
select:
options:
- "L"
- "R"
- "C"
- "SL"
- "SR"
- "SBL"
- "SBR"
- "SW"
- "LH"
- "RH"
- "LW"
- "RW"
- "TML"
- "TMR"
- "TFL"
- "TFR"
- "TRL"
- "TRR"
- "SW1"
- "SW2"
- "ALL"
level:
required: true
example: 0.0
default: 0.0
selector:
number:
min: -12.0
max: 12.0
step: 0.5
unit_of_measurement: dB
# set_video_settings:
# description: Set video settings for zone
# target:
# entity:
# integration: pioneer_async
# domain: media_player
# set_dsp_settings:
# description: Set AVR DSP settings for the amplifier
# target:
# entity:
# integration: pioneer_async
# domain: media_player
# media_control:
# description: TODO: implement using standard media functions
# target:
# entity:
# integration: pioneer_async
# domain: media_player