homebridge-eosstb 2.3.5 → 2.3.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,1143 +1,1118 @@
1
1
  {
2
- "pluginAlias": "eosstb",
3
- "pluginType": "platform",
4
- "singular": true,
5
- "headerDisplay": "Homebridge plugin for the [ARRIS DCX960 / VIP5002W](https://github.com/jsiegenthaler/homebridge-eosstb/blob/master/README.md) or [HUMAX EOS1008R / 2008C](https://github.com/jsiegenthaler/homebridge-eosstb/blob/master/README.md) set-top box on the UPC TV platform.",
6
- "footerDisplay": "For a detailed description, see [this version's README](https://www.npmjs.com/package/homebridge-eosstb), or [the current README](https://github.com/jsiegenthaler/homebridge-eosstb/blob/master/README.md#configuration) and the [Wiki](https://github.com/jsiegenthaler/homebridge-eosstb/wiki).",
7
- "schema": {
8
- "type": "object",
9
- "properties": {
10
- "name": {
11
- "title": "Name",
12
- "type": "string",
13
- "description": "Plugin name as displayed in the homebridge log. Default: EOSSTB",
14
- "default": "EOSSTB",
15
- "placeholder": "EOSSTB",
16
- "minLength": 1,
17
- "required": false
18
- },
19
- "country": {
20
- "title": "Country",
21
- "type": "string",
22
- "description": "Your country. This controls the country-specific logon sequence and the mqtt sessions.",
23
- "default": "ch",
24
- "required": true,
25
- "oneOf": [
26
- { "title": "BE-FR: Telenet TV", "enum": ["be-fr"] },
27
- { "title": "BE-NL: Telenet TV", "enum": ["be-nl"] },
28
- { "title": "CH: Sunrise TV", "enum": ["ch"] },
29
- { "title": "GB: Virgin Media TV 360", "enum": ["gb"] },
30
- { "title": "IE. Virgin Media TV 360", "enum": ["ie"] },
31
- { "title": "NL: Ziggo TV", "enum": ["nl"] },
32
- { "title": "PL: UPC TV GO", "enum": ["pl"] },
33
- { "title": "SK: UPC TV", "enum": ["sk"] }
34
- ]
35
- },
36
- "username": {
37
- "title": "Username",
38
- "type": "string",
39
- "description": "Your username for your TV account.",
40
- "placeholder": "yourTvProviderUsername",
41
- "required": true
42
- },
43
- "password": {
44
- "title": "Password",
45
- "type": "string",
46
- "description": "Your password associated with your TV account.",
47
- "placeholder": "yourTvProviderPassword",
48
- "required": true
49
- },
50
- "authmethod": {
51
- "title": "Authentication Method",
52
- "type": "string",
53
- "description": "The authentication method. Select the option for your country. If it doesn't work, try another method.",
54
- "default": "A",
55
- "required": true,
56
- "oneOf": [
57
- { "title": "Method A: CH, NL, IE", "enum": ["A"] },
58
- { "title": "Method B: BE", "enum": ["B"] },
59
- { "title": "Method C: GB", "enum": ["C"] },
60
- { "title": "Method D: OAuth 2.0 PKCE EXPERIMENTAL", "enum": ["D"] }
61
- ]
62
- },
63
-
64
- "watchdogDisabled": {
65
- "title": "Disable Session Watchdog",
66
- "type": "boolean",
67
- "description": "Disables the session watchdog to assist with debugging. Default: false",
68
- "default": false
69
- },
70
-
71
- "doublePressTime": {
72
- "title": "Double-Press Time",
73
- "type": "integer",
74
- "description": "The amount of time in ms to detect double-tap of an iOS remote control button. Default: 250ms",
75
- "default": 250,
76
- "placeholder": 250
77
- },
78
-
79
- "triplePressTime": {
80
- "title": "Triple-Press Time",
81
- "type": "integer",
82
- "description": "The amount of time in ms to detect triple-tap of an iOS remote control button. Default: 800ms.",
83
- "placeholder": 800
84
- },
2
+ "pluginAlias": "eosstb",
3
+ "pluginType": "platform",
4
+ "singular": true,
5
+ "headerDisplay": "Homebridge plugin for the [ARRIS DCX960 / VIP5002W](https://github.com/jsiegenthaler/homebridge-eosstb/blob/master/README.md) or [HUMAX EOS1008R / 2008C](https://github.com/jsiegenthaler/homebridge-eosstb/blob/master/README.md) set-top box on the UPC TV platform.",
6
+ "footerDisplay": "For a detailed description, see [this version's README](https://www.npmjs.com/package/homebridge-eosstb), or [the current README](https://github.com/jsiegenthaler/homebridge-eosstb/blob/master/README.md#configuration) and the [Wiki](https://github.com/jsiegenthaler/homebridge-eosstb/wiki).",
7
+ "schema": {
8
+ "type": "object",
9
+ "properties": {
10
+ "name": {
11
+ "title": "Name",
12
+ "type": "string",
13
+ "description": "Plugin name as displayed in the homebridge log. Default: EOSSTB",
14
+ "default": "EOSSTB",
15
+ "placeholder": "EOSSTB",
16
+ "minLength": 1,
17
+ "required": false
18
+ },
19
+ "country": {
20
+ "title": "Country",
21
+ "type": "string",
22
+ "description": "Your country. This controls the country-specific logon sequence and the mqtt sessions.",
23
+ "default": "ch",
24
+ "required": true,
25
+ "oneOf": [
26
+ { "title": "BE-FR: Telenet TV", "enum": ["be-fr"] },
27
+ { "title": "BE-NL: Telenet TV", "enum": ["be-nl"] },
28
+ { "title": "CH: Sunrise TV", "enum": ["ch"] },
29
+ { "title": "GB: Virgin Media TV 360", "enum": ["gb"] },
30
+ { "title": "IE. Virgin Media TV 360", "enum": ["ie"] },
31
+ { "title": "NL: Ziggo TV", "enum": ["nl"] },
32
+ { "title": "PL: UPC TV GO", "enum": ["pl"] },
33
+ { "title": "SK: UPC TV", "enum": ["sk"] }
34
+ ]
35
+ },
36
+ "username": {
37
+ "title": "Username",
38
+ "type": "string",
39
+ "description": "Your username for your TV account.",
40
+ "placeholder": "yourTvProviderUsername",
41
+ "required": true
42
+ },
43
+ "password": {
44
+ "title": "Password",
45
+ "type": "string",
46
+ "description": "Your password associated with your TV account.",
47
+ "placeholder": "yourTvProviderPassword",
48
+ "required": true
49
+ },
50
+ "authmethod": {
51
+ "title": "Authentication Method",
52
+ "type": "string",
53
+ "description": "The authentication method. Select the option for your country. If it doesn't work, try another method.",
54
+ "default": "A",
55
+ "required": true,
56
+ "oneOf": [
57
+ { "title": "Method A: CH, NL, IE", "enum": ["A"] },
58
+ { "title": "Method B: BE", "enum": ["B"] },
59
+ { "title": "Method C: GB", "enum": ["C"] },
60
+ { "title": "Method D: OAuth 2.0 PKCE EXPERIMENTAL", "enum": ["D"] }
61
+ ]
62
+ },
85
63
 
86
- "masterChannelListValidFor": {
87
- "title": "Master Channel List Validity Time",
88
- "type": "integer",
89
- "description": "The amount of time in seconds that the master channel list is valid. Channel list is refreshed when the time expires. Default: 1800s.",
90
- "placeholder": 1800
91
- },
64
+ "watchdogDisabled": {
65
+ "title": "Disable Session Watchdog",
66
+ "type": "boolean",
67
+ "description": "Disables the session watchdog to assist with debugging. Default: false",
68
+ "default": false
69
+ },
92
70
 
93
- "debugLevel": {
94
- "title": "Debug Level",
95
- "type": "integer",
96
- "description": "Enables extra logging for this plugin. Default: None.",
97
- "oneOf": [
98
- { "title": "Minimum", "enum": [1] },
99
- { "title": "Enhanced", "enum": [2] },
100
- { "title": "Verbose", "enum": [3] }
101
- ]
102
- },
103
-
71
+ "doublePressTime": {
72
+ "title": "Double-Press Time",
73
+ "type": "integer",
74
+ "description": "The amount of time in ms to detect double-tap of an iOS remote control button. Default: 250ms",
75
+ "default": 250,
76
+ "placeholder": 250
77
+ },
104
78
 
79
+ "triplePressTime": {
80
+ "title": "Triple-Press Time",
81
+ "type": "integer",
82
+ "description": "The amount of time in ms to detect triple-tap of an iOS remote control button. Default: 800ms.",
83
+ "placeholder": 800
84
+ },
105
85
 
106
- "devices": {
107
- "type": "array",
108
- "title": "Devices",
109
- "description": "Each set-top box is a device. This plugin supports multiple devices. Device config is optional; the plugin will still work if no devices are configured.",
110
- "items": {
111
- "title": "Devices",
112
- "type": "object",
113
- "properties": {
114
- "deviceId": {
115
- "title": "Device ID",
116
- "type": "string",
117
- "description": "Unique deviceId used to identify the device. The deviceId is visible in the Homebridge log shortly after a Homebridge restart.",
118
- "placeholder": "3C36E4-EOSSTB-000123456789",
119
- "minLength": 25,
120
- "required": true
121
- },
122
- "name": {
123
- "title": "Name",
124
- "type": "string",
125
- "description": "The device name. Default: the current device name",
126
- "pattern": "^[0-9A-Za-zÀ-ÖØ-öø-ÿ](?:[0-9A-Za-zÀ-ÖØ-öø-ÿ '’,.-]+)*[0-9A-Za-zÀ-ÖØ-öø-ÿ.]$",
127
- "placeholder": "Current Name",
128
- "minLength": 3,
129
- "maxLength": 14
130
- },
131
- "syncName": {
132
- "title": "Sync Name",
133
- "type": "boolean",
134
- "description": "Enables syncing of the device name with the set-top box name. Default: true",
135
- "default": true
136
- },
137
- "accessoryCategory": {
138
- "title": "Icon",
139
- "type": "string",
140
- "description": "The icon displayed on the tile in Home app. Default: Set-Top Box",
141
- "default": "settopbox",
142
- "oneOf": [
143
- { "title": "Set-Top Box", "enum": ["settopbox"] },
144
- { "title": "Television", "enum": ["television"] },
145
- { "title": "Audio Receiver", "enum": ["receiver"] }
146
- ]
147
- },
86
+ "masterChannelListValidFor": {
87
+ "title": "Master Channel List Validity Time",
88
+ "type": "integer",
89
+ "description": "The amount of time in seconds that the master channel list is valid. Channel list is refreshed when the time expires. Default: 1800s.",
90
+ "placeholder": 1800
91
+ },
148
92
 
93
+ "debugLevel": {
94
+ "title": "Debug Level",
95
+ "type": "integer",
96
+ "description": "Enables extra logging for this plugin. Default: None.",
97
+ "oneOf": [
98
+ { "title": "Minimum", "enum": [1] },
99
+ { "title": "Enhanced", "enum": [2] },
100
+ { "title": "Verbose", "enum": [3] }
101
+ ]
102
+ },
149
103
 
150
- "manufacturer": {
151
- "title": "Manufacturer",
152
- "type": "string",
153
- "description": "The manufacturer name to display in the Home app. Default: auto-detected.",
154
- "placeholder": "ARRIS",
155
- "maxLength": 64
156
- },
157
- "modelName": {
158
- "title": "Model",
159
- "type": "string",
160
- "description": "The model name to display in the Home app. Default: auto-detected.",
161
- "placeholder": "DCX960",
162
- "maxLength": 64
163
- },
164
- "serialNumber": {
165
- "title": "Serial Number",
166
- "type": "string",
167
- "description": "The serial number to display in the Home app. Default: auto-detected.",
168
- "placeholder": "Current Serial Number",
169
- "maxLength": 64
170
- },
171
- "firmwareRevision": {
172
- "title": "Firmware",
173
- "type": "string",
174
- "description": "The firmware version to display in the Home app. Numbers only eg 4.44. Default: plugin version.",
175
- "placeholder": "4.44",
176
- "pattern": "^(\\d+)((\\.{1}\\d+)*)(\\.{0})$"
177
- },
178
-
104
+ "devices": {
105
+ "type": "array",
106
+ "title": "Devices",
107
+ "description": "Each set-top box is a device. This plugin supports multiple devices. Device config is optional; the plugin will still work if no devices are configured.",
108
+ "items": {
109
+ "title": "Devices",
110
+ "type": "object",
111
+ "properties": {
112
+ "deviceId": {
113
+ "title": "Device ID",
114
+ "type": "string",
115
+ "description": "Unique deviceId used to identify the device. The deviceId is visible in the Homebridge log shortly after a Homebridge restart.",
116
+ "placeholder": "3C36E4-EOSSTB-000123456789",
117
+ "minLength": 25,
118
+ "required": true
119
+ },
120
+ "name": {
121
+ "title": "Name",
122
+ "type": "string",
123
+ "description": "The device name. Default: the current device name",
124
+ "pattern": "^[0-9A-Za-zÀ-ÖØ-öø-ÿ](?:[0-9A-Za-zÀ-ÖØ-öø-ÿ '’,.-]+)*[0-9A-Za-zÀ-ÖØ-öø-ÿ.]$",
125
+ "placeholder": "Current Name",
126
+ "minLength": 3,
127
+ "maxLength": 14
128
+ },
129
+ "syncName": {
130
+ "title": "Sync Name",
131
+ "type": "boolean",
132
+ "description": "Enables syncing of the device name with the set-top box name. Default: true",
133
+ "default": true
134
+ },
135
+ "accessoryCategory": {
136
+ "title": "Icon",
137
+ "type": "string",
138
+ "description": "The icon displayed on the tile in Home app. Default: Set-Top Box",
139
+ "default": "settopbox",
140
+ "oneOf": [
141
+ { "title": "Set-Top Box", "enum": ["settopbox"] },
142
+ { "title": "Television", "enum": ["television"] },
143
+ { "title": "Audio Receiver", "enum": ["receiver"] }
144
+ ]
145
+ },
179
146
 
180
- "profile": {
181
- "title": "Profile Name",
182
- "type": "string",
183
- "description": "Use a profile to manage channels shown in the Home app. Default: Shared Profile",
184
- "maxLength": 10
185
- },
186
- "channelOrder": {
187
- "title": "Channel Sort By",
188
- "type": "string",
189
- "description": "Select how the channels should be sorted in the channel list. Default: Most Watched",
190
- "default": "channelOrder",
191
- "required": false,
192
- "oneOf": [
193
- { "title": "Most Watched", "enum": ["mostWatched"] },
194
- { "title": "Channel Order", "enum": ["channelOrder"] }
195
- ]
196
- },
197
- "maxChannels": {
198
- "title": "Max Channels",
199
- "type": "integer",
200
- "description": "Limit the maximum channels to load in the channel list. Default: 95",
201
- "default": 95,
202
- "maximum": 95
203
- },
204
- "showChannelNumbers": {
205
- "title": "Show Channel Numbers",
206
- "type": "boolean",
207
- "description": "Show or hide channel numbers in the channel list. Default: false",
208
- "default": false
209
- },
147
+ "manufacturer": {
148
+ "title": "Manufacturer",
149
+ "type": "string",
150
+ "description": "The manufacturer name to display in the Home app. Default: auto-detected.",
151
+ "placeholder": "ARRIS",
152
+ "maxLength": 64
153
+ },
154
+ "modelName": {
155
+ "title": "Model",
156
+ "type": "string",
157
+ "description": "The model name to display in the Home app. Default: auto-detected.",
158
+ "placeholder": "DCX960",
159
+ "maxLength": 64
160
+ },
161
+ "serialNumber": {
162
+ "title": "Serial Number",
163
+ "type": "string",
164
+ "description": "The serial number to display in the Home app. Default: auto-detected.",
165
+ "placeholder": "Current Serial Number",
166
+ "maxLength": 64
167
+ },
168
+ "firmwareRevision": {
169
+ "title": "Firmware",
170
+ "type": "string",
171
+ "description": "The firmware version to display in the Home app. Numbers only eg 4.44. Default: plugin version.",
172
+ "placeholder": "4.44",
173
+ "pattern": "^(\\d+)((\\.{1}\\d+)*)(\\.{0})$"
174
+ },
210
175
 
211
- "arrowUpButton": {
212
- "title": "ArrowUp Button",
213
- "type": "string",
214
- "description": "Default: ArrowUp",
215
- "default": "ArrowUp",
216
- "oneOf": [
217
- { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
218
- { "title": "ContextMenu", "enum": ["ContextMenu"] },
219
- { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
220
- { "title": "ArrowUp", "enum": ["ArrowUp"] },
221
- { "title": "ArrowDown", "enum": ["ArrowDown"] },
222
- { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
223
- { "title": "ArrowRight", "enum": ["ArrowRight"] },
224
- { "title": "Enter", "enum": ["Enter"] },
225
- { "title": "Info", "enum": ["Info"] },
226
- { "title": "Help", "enum": ["Help"] },
227
- { "title": "Guide", "enum": ["Guide"] },
228
- { "title": "Escape", "enum": ["Escape"] },
229
- { "title": "TV", "enum": ["TV"] },
230
- { "title": "Red", "enum": ["Red"] },
231
- { "title": "Green", "enum": ["Green"] },
232
- { "title": "Yellow", "enum": ["Yellow"] },
233
- { "title": "Blue", "enum": ["Blue"] },
234
- { "title": "ChannelUp", "enum": ["ChannelUp"] },
235
- { "title": "ChannelDown", "enum": ["ChannelDown"] },
236
- { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
237
- { "title": "MediaPause", "enum": ["MediaPause"] },
238
- { "title": "MediaRecord", "enum": ["MediaRecord"] },
239
- { "title": "MediaStop", "enum": ["MediaStop"] },
240
- { "title": "MediaRewind", "enum": ["MediaRewind"] },
241
- { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
242
- ]
243
- },
244
- "arrowUpButtonDoubleTap": {
245
- "title": "ArrowUp Button Double Tap",
246
- "type": "string",
247
- "description": "Default: ChannelUp",
248
- "default": "ChannelUp",
249
- "oneOf": [
250
- { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
251
- { "title": "ContextMenu", "enum": ["ContextMenu"] },
252
- { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
253
- { "title": "ArrowUp", "enum": ["ArrowUp"] },
254
- { "title": "ArrowDown", "enum": ["ArrowDown"] },
255
- { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
256
- { "title": "ArrowRight", "enum": ["ArrowRight"] },
257
- { "title": "Enter", "enum": ["Enter"] },
258
- { "title": "Info", "enum": ["Info"] },
259
- { "title": "Help", "enum": ["Help"] },
260
- { "title": "Guide", "enum": ["Guide"] },
261
- { "title": "Escape", "enum": ["Escape"] },
262
- { "title": "TV", "enum": ["TV"] },
263
- { "title": "Red", "enum": ["Red"] },
264
- { "title": "Green", "enum": ["Green"] },
265
- { "title": "Yellow", "enum": ["Yellow"] },
266
- { "title": "Blue", "enum": ["Blue"] },
267
- { "title": "ChannelUp", "enum": ["ChannelUp"] },
268
- { "title": "ChannelDown", "enum": ["ChannelDown"] },
269
- { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
270
- { "title": "MediaPause", "enum": ["MediaPause"] },
271
- { "title": "MediaRecord", "enum": ["MediaRecord"] },
272
- { "title": "MediaStop", "enum": ["MediaStop"] },
273
- { "title": "MediaRewind", "enum": ["MediaRewind"] },
274
- { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
275
- ]
276
- },
176
+ "profile": {
177
+ "title": "Profile Name",
178
+ "type": "string",
179
+ "description": "Use a profile to manage channels shown in the Home app. Default: Shared Profile",
180
+ "maxLength": 10
181
+ },
182
+ "channelOrder": {
183
+ "title": "Channel Sort By",
184
+ "type": "string",
185
+ "description": "Select how the channels should be sorted in the channel list. Default: Most Watched",
186
+ "default": "channelOrder",
187
+ "required": false,
188
+ "oneOf": [
189
+ { "title": "Most Watched", "enum": ["mostWatched"] },
190
+ { "title": "Channel Order", "enum": ["channelOrder"] }
191
+ ]
192
+ },
193
+ "maxChannels": {
194
+ "title": "Max Channels",
195
+ "type": "integer",
196
+ "description": "Limit the maximum channels to load in the channel list. Default: 95",
197
+ "default": 95,
198
+ "maximum": 95
199
+ },
200
+ "showChannelNumbers": {
201
+ "title": "Show Channel Numbers",
202
+ "type": "boolean",
203
+ "description": "Show or hide channel numbers in the channel list. Default: false",
204
+ "default": false
205
+ },
277
206
 
278
- "arrowDownButton": {
279
- "title": "ArrowDown Button",
280
- "type": "string",
281
- "description": "Default: ArrowDown",
282
- "default": "ArrowDown",
283
- "oneOf": [
284
- { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
285
- { "title": "ContextMenu", "enum": ["ContextMenu"] },
286
- { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
287
- { "title": "ArrowUp", "enum": ["ArrowUp"] },
288
- { "title": "ArrowDown", "enum": ["ArrowDown"] },
289
- { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
290
- { "title": "ArrowRight", "enum": ["ArrowRight"] },
291
- { "title": "Enter", "enum": ["Enter"] },
292
- { "title": "Info", "enum": ["Info"] },
293
- { "title": "Help", "enum": ["Help"] },
294
- { "title": "Guide", "enum": ["Guide"] },
295
- { "title": "Escape", "enum": ["Escape"] },
296
- { "title": "TV", "enum": ["TV"] },
297
- { "title": "Red", "enum": ["Red"] },
298
- { "title": "Green", "enum": ["Green"] },
299
- { "title": "Yellow", "enum": ["Yellow"] },
300
- { "title": "Blue", "enum": ["Blue"] },
301
- { "title": "ChannelUp", "enum": ["ChannelUp"] },
302
- { "title": "ChannelDown", "enum": ["ChannelDown"] },
303
- { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
304
- { "title": "MediaPause", "enum": ["MediaPause"] },
305
- { "title": "MediaRecord", "enum": ["MediaRecord"] },
306
- { "title": "MediaStop", "enum": ["MediaStop"] },
307
- { "title": "MediaRewind", "enum": ["MediaRewind"] },
308
- { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
309
- ]
310
- },
311
- "arrowDownButtonDoubleTap": {
312
- "title": "ArrowDown Button Double Tap",
313
- "type": "string",
314
- "description": "Default: ChannelDown",
315
- "default": "ChannelDown",
316
- "oneOf": [
317
- { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
318
- { "title": "ContextMenu", "enum": ["ContextMenu"] },
319
- { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
320
- { "title": "ArrowUp", "enum": ["ArrowUp"] },
321
- { "title": "ArrowDown", "enum": ["ArrowDown"] },
322
- { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
323
- { "title": "ArrowRight", "enum": ["ArrowRight"] },
324
- { "title": "Enter", "enum": ["Enter"] },
325
- { "title": "Info", "enum": ["Info"] },
326
- { "title": "Help", "enum": ["Help"] },
327
- { "title": "Guide", "enum": ["Guide"] },
328
- { "title": "Escape", "enum": ["Escape"] },
329
- { "title": "TV", "enum": ["TV"] },
330
- { "title": "Red", "enum": ["Red"] },
331
- { "title": "Green", "enum": ["Green"] },
332
- { "title": "Yellow", "enum": ["Yellow"] },
333
- { "title": "Blue", "enum": ["Blue"] },
334
- { "title": "ChannelUp", "enum": ["ChannelUp"] },
335
- { "title": "ChannelDown", "enum": ["ChannelDown"] },
336
- { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
337
- { "title": "MediaPause", "enum": ["MediaPause"] },
338
- { "title": "MediaRecord", "enum": ["MediaRecord"] },
339
- { "title": "MediaStop", "enum": ["MediaStop"] },
340
- { "title": "MediaRewind", "enum": ["MediaRewind"] },
341
- { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
342
- ]
343
- },
207
+ "arrowUpButton": {
208
+ "title": "ArrowUp Button",
209
+ "type": "string",
210
+ "description": "Default: ArrowUp",
211
+ "default": "ArrowUp",
212
+ "oneOf": [
213
+ { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
214
+ { "title": "ContextMenu", "enum": ["ContextMenu"] },
215
+ { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
216
+ { "title": "ArrowUp", "enum": ["ArrowUp"] },
217
+ { "title": "ArrowDown", "enum": ["ArrowDown"] },
218
+ { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
219
+ { "title": "ArrowRight", "enum": ["ArrowRight"] },
220
+ { "title": "Enter", "enum": ["Enter"] },
221
+ { "title": "Info", "enum": ["Info"] },
222
+ { "title": "Help", "enum": ["Help"] },
223
+ { "title": "Guide", "enum": ["Guide"] },
224
+ { "title": "Escape", "enum": ["Escape"] },
225
+ { "title": "TV", "enum": ["TV"] },
226
+ { "title": "Red", "enum": ["Red"] },
227
+ { "title": "Green", "enum": ["Green"] },
228
+ { "title": "Yellow", "enum": ["Yellow"] },
229
+ { "title": "Blue", "enum": ["Blue"] },
230
+ { "title": "ChannelUp", "enum": ["ChannelUp"] },
231
+ { "title": "ChannelDown", "enum": ["ChannelDown"] },
232
+ { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
233
+ { "title": "MediaPause", "enum": ["MediaPause"] },
234
+ { "title": "MediaRecord", "enum": ["MediaRecord"] },
235
+ { "title": "MediaStop", "enum": ["MediaStop"] },
236
+ { "title": "MediaRewind", "enum": ["MediaRewind"] },
237
+ { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
238
+ ]
239
+ },
240
+ "arrowUpButtonDoubleTap": {
241
+ "title": "ArrowUp Button Double Tap",
242
+ "type": "string",
243
+ "description": "Default: ChannelUp",
244
+ "default": "ChannelUp",
245
+ "oneOf": [
246
+ { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
247
+ { "title": "ContextMenu", "enum": ["ContextMenu"] },
248
+ { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
249
+ { "title": "ArrowUp", "enum": ["ArrowUp"] },
250
+ { "title": "ArrowDown", "enum": ["ArrowDown"] },
251
+ { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
252
+ { "title": "ArrowRight", "enum": ["ArrowRight"] },
253
+ { "title": "Enter", "enum": ["Enter"] },
254
+ { "title": "Info", "enum": ["Info"] },
255
+ { "title": "Help", "enum": ["Help"] },
256
+ { "title": "Guide", "enum": ["Guide"] },
257
+ { "title": "Escape", "enum": ["Escape"] },
258
+ { "title": "TV", "enum": ["TV"] },
259
+ { "title": "Red", "enum": ["Red"] },
260
+ { "title": "Green", "enum": ["Green"] },
261
+ { "title": "Yellow", "enum": ["Yellow"] },
262
+ { "title": "Blue", "enum": ["Blue"] },
263
+ { "title": "ChannelUp", "enum": ["ChannelUp"] },
264
+ { "title": "ChannelDown", "enum": ["ChannelDown"] },
265
+ { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
266
+ { "title": "MediaPause", "enum": ["MediaPause"] },
267
+ { "title": "MediaRecord", "enum": ["MediaRecord"] },
268
+ { "title": "MediaStop", "enum": ["MediaStop"] },
269
+ { "title": "MediaRewind", "enum": ["MediaRewind"] },
270
+ { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
271
+ ]
272
+ },
344
273
 
345
- "arrowLeftButton": {
346
- "title": "ArrowLeft Button",
347
- "type": "string",
348
- "description": "Default: ArrowLeft",
349
- "default": "ArrowLeft",
350
- "oneOf": [
351
- { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
352
- { "title": "ContextMenu", "enum": ["ContextMenu"] },
353
- { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
354
- { "title": "ArrowUp", "enum": ["ArrowUp"] },
355
- { "title": "ArrowDown", "enum": ["ArrowDown"] },
356
- { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
357
- { "title": "ArrowRight", "enum": ["ArrowRight"] },
358
- { "title": "Enter", "enum": ["Enter"] },
359
- { "title": "Info", "enum": ["Info"] },
360
- { "title": "Help", "enum": ["Help"] },
361
- { "title": "Guide", "enum": ["Guide"] },
362
- { "title": "Escape", "enum": ["Escape"] },
363
- { "title": "TV", "enum": ["TV"] },
364
- { "title": "Red", "enum": ["Red"] },
365
- { "title": "Green", "enum": ["Green"] },
366
- { "title": "Yellow", "enum": ["Yellow"] },
367
- { "title": "Blue", "enum": ["Blue"] },
368
- { "title": "ChannelUp", "enum": ["ChannelUp"] },
369
- { "title": "ChannelDown", "enum": ["ChannelDown"] },
370
- { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
371
- { "title": "MediaPause", "enum": ["MediaPause"] },
372
- { "title": "MediaRecord", "enum": ["MediaRecord"] },
373
- { "title": "MediaStop", "enum": ["MediaStop"] },
374
- { "title": "MediaRewind", "enum": ["MediaRewind"] },
375
- { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
376
- ]
377
- },
378
- "arrowLeftButtonDoubleTap": {
379
- "title": "ArrowLeft Button Double Tap",
380
- "type": "string",
381
- "description": "Default: MediaRewind",
382
- "default": "MediaRewind",
383
- "oneOf": [
384
- { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
385
- { "title": "ContextMenu", "enum": ["ContextMenu"] },
386
- { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
387
- { "title": "ArrowUp", "enum": ["ArrowUp"] },
388
- { "title": "ArrowDown", "enum": ["ArrowDown"] },
389
- { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
390
- { "title": "ArrowRight", "enum": ["ArrowRight"] },
391
- { "title": "Enter", "enum": ["Enter"] },
392
- { "title": "Info", "enum": ["Info"] },
393
- { "title": "Help", "enum": ["Help"] },
394
- { "title": "Guide", "enum": ["Guide"] },
395
- { "title": "Escape", "enum": ["Escape"] },
396
- { "title": "TV", "enum": ["TV"] },
397
- { "title": "Red", "enum": ["Red"] },
398
- { "title": "Green", "enum": ["Green"] },
399
- { "title": "Yellow", "enum": ["Yellow"] },
400
- { "title": "Blue", "enum": ["Blue"] },
401
- { "title": "ChannelUp", "enum": ["ChannelUp"] },
402
- { "title": "ChannelDown", "enum": ["ChannelDown"] },
403
- { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
404
- { "title": "MediaPause", "enum": ["MediaPause"] },
405
- { "title": "MediaRecord", "enum": ["MediaRecord"] },
406
- { "title": "MediaStop", "enum": ["MediaStop"] },
407
- { "title": "MediaRewind", "enum": ["MediaRewind"] },
408
- { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
409
- ]
410
- },
411
- "arrowRightButton": {
412
- "title": "ArrowRight Button",
413
- "type": "string",
414
- "description": "Default: ArrowRight",
415
- "default": "ArrowRight",
416
- "oneOf": [
417
- { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
418
- { "title": "ContextMenu", "enum": ["ContextMenu"] },
419
- { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
420
- { "title": "ArrowUp", "enum": ["ArrowUp"] },
421
- { "title": "ArrowDown", "enum": ["ArrowDown"] },
422
- { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
423
- { "title": "ArrowRight", "enum": ["ArrowRight"] },
424
- { "title": "Enter", "enum": ["Enter"] },
425
- { "title": "Info", "enum": ["Info"] },
426
- { "title": "Help", "enum": ["Help"] },
427
- { "title": "Guide", "enum": ["Guide"] },
428
- { "title": "Escape", "enum": ["Escape"] },
429
- { "title": "TV", "enum": ["TV"] },
430
- { "title": "Red", "enum": ["Red"] },
431
- { "title": "Green", "enum": ["Green"] },
432
- { "title": "Yellow", "enum": ["Yellow"] },
433
- { "title": "Blue", "enum": ["Blue"] },
434
- { "title": "ChannelUp", "enum": ["ChannelUp"] },
435
- { "title": "ChannelDown", "enum": ["ChannelDown"] },
436
- { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
437
- { "title": "MediaPause", "enum": ["MediaPause"] },
438
- { "title": "MediaRecord", "enum": ["MediaRecord"] },
439
- { "title": "MediaStop", "enum": ["MediaStop"] },
440
- { "title": "MediaRewind", "enum": ["MediaRewind"] },
441
- { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
442
- ]
443
- },
444
- "arrowRightButtonDoubleTap": {
445
- "title": "ArrowRight Button Double Tap",
446
- "type": "string",
447
- "description": "Default: MediaFastForward",
448
- "default": "MediaFastForward",
449
- "oneOf": [
450
- { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
451
- { "title": "ContextMenu", "enum": ["ContextMenu"] },
452
- { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
453
- { "title": "ArrowUp", "enum": ["ArrowUp"] },
454
- { "title": "ArrowDown", "enum": ["ArrowDown"] },
455
- { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
456
- { "title": "ArrowRight", "enum": ["ArrowRight"] },
457
- { "title": "Enter", "enum": ["Enter"] },
458
- { "title": "Info", "enum": ["Info"] },
459
- { "title": "Help", "enum": ["Help"] },
460
- { "title": "Guide", "enum": ["Guide"] },
461
- { "title": "Escape", "enum": ["Escape"] },
462
- { "title": "TV", "enum": ["TV"] },
463
- { "title": "Red", "enum": ["Red"] },
464
- { "title": "Green", "enum": ["Green"] },
465
- { "title": "Yellow", "enum": ["Yellow"] },
466
- { "title": "Blue", "enum": ["Blue"] },
467
- { "title": "ChannelUp", "enum": ["ChannelUp"] },
468
- { "title": "ChannelDown", "enum": ["ChannelDown"] },
469
- { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
470
- { "title": "MediaPause", "enum": ["MediaPause"] },
471
- { "title": "MediaRecord", "enum": ["MediaRecord"] },
472
- { "title": "MediaStop", "enum": ["MediaStop"] },
473
- { "title": "MediaRewind", "enum": ["MediaRewind"] },
474
- { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
475
- ]
476
- },
274
+ "arrowDownButton": {
275
+ "title": "ArrowDown Button",
276
+ "type": "string",
277
+ "description": "Default: ArrowDown",
278
+ "default": "ArrowDown",
279
+ "oneOf": [
280
+ { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
281
+ { "title": "ContextMenu", "enum": ["ContextMenu"] },
282
+ { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
283
+ { "title": "ArrowUp", "enum": ["ArrowUp"] },
284
+ { "title": "ArrowDown", "enum": ["ArrowDown"] },
285
+ { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
286
+ { "title": "ArrowRight", "enum": ["ArrowRight"] },
287
+ { "title": "Enter", "enum": ["Enter"] },
288
+ { "title": "Info", "enum": ["Info"] },
289
+ { "title": "Help", "enum": ["Help"] },
290
+ { "title": "Guide", "enum": ["Guide"] },
291
+ { "title": "Escape", "enum": ["Escape"] },
292
+ { "title": "TV", "enum": ["TV"] },
293
+ { "title": "Red", "enum": ["Red"] },
294
+ { "title": "Green", "enum": ["Green"] },
295
+ { "title": "Yellow", "enum": ["Yellow"] },
296
+ { "title": "Blue", "enum": ["Blue"] },
297
+ { "title": "ChannelUp", "enum": ["ChannelUp"] },
298
+ { "title": "ChannelDown", "enum": ["ChannelDown"] },
299
+ { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
300
+ { "title": "MediaPause", "enum": ["MediaPause"] },
301
+ { "title": "MediaRecord", "enum": ["MediaRecord"] },
302
+ { "title": "MediaStop", "enum": ["MediaStop"] },
303
+ { "title": "MediaRewind", "enum": ["MediaRewind"] },
304
+ { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
305
+ ]
306
+ },
307
+ "arrowDownButtonDoubleTap": {
308
+ "title": "ArrowDown Button Double Tap",
309
+ "type": "string",
310
+ "description": "Default: ChannelDown",
311
+ "default": "ChannelDown",
312
+ "oneOf": [
313
+ { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
314
+ { "title": "ContextMenu", "enum": ["ContextMenu"] },
315
+ { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
316
+ { "title": "ArrowUp", "enum": ["ArrowUp"] },
317
+ { "title": "ArrowDown", "enum": ["ArrowDown"] },
318
+ { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
319
+ { "title": "ArrowRight", "enum": ["ArrowRight"] },
320
+ { "title": "Enter", "enum": ["Enter"] },
321
+ { "title": "Info", "enum": ["Info"] },
322
+ { "title": "Help", "enum": ["Help"] },
323
+ { "title": "Guide", "enum": ["Guide"] },
324
+ { "title": "Escape", "enum": ["Escape"] },
325
+ { "title": "TV", "enum": ["TV"] },
326
+ { "title": "Red", "enum": ["Red"] },
327
+ { "title": "Green", "enum": ["Green"] },
328
+ { "title": "Yellow", "enum": ["Yellow"] },
329
+ { "title": "Blue", "enum": ["Blue"] },
330
+ { "title": "ChannelUp", "enum": ["ChannelUp"] },
331
+ { "title": "ChannelDown", "enum": ["ChannelDown"] },
332
+ { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
333
+ { "title": "MediaPause", "enum": ["MediaPause"] },
334
+ { "title": "MediaRecord", "enum": ["MediaRecord"] },
335
+ { "title": "MediaStop", "enum": ["MediaStop"] },
336
+ { "title": "MediaRewind", "enum": ["MediaRewind"] },
337
+ { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
338
+ ]
339
+ },
477
340
 
478
- "selectButton": {
479
- "title": "Select Button",
480
- "type": "string",
481
- "description": "Default: Enter",
482
- "default": "Enter",
483
- "oneOf": [
484
- { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
485
- { "title": "ContextMenu", "enum": ["ContextMenu"] },
486
- { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
487
- { "title": "ArrowUp", "enum": ["ArrowUp"] },
488
- { "title": "ArrowDown", "enum": ["ArrowDown"] },
489
- { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
490
- { "title": "ArrowRight", "enum": ["ArrowRight"] },
491
- { "title": "Enter", "enum": ["Enter"] },
492
- { "title": "Info", "enum": ["Info"] },
493
- { "title": "Help", "enum": ["Help"] },
494
- { "title": "Guide", "enum": ["Guide"] },
495
- { "title": "Escape", "enum": ["Escape"] },
496
- { "title": "TV", "enum": ["TV"] },
497
- { "title": "Red", "enum": ["Red"] },
498
- { "title": "Green", "enum": ["Green"] },
499
- { "title": "Yellow", "enum": ["Yellow"] },
500
- { "title": "Blue", "enum": ["Blue"] },
501
- { "title": "ChannelUp", "enum": ["ChannelUp"] },
502
- { "title": "ChannelDown", "enum": ["ChannelDown"] },
503
- { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
504
- { "title": "MediaPause", "enum": ["MediaPause"] },
505
- { "title": "MediaRecord", "enum": ["MediaRecord"] },
506
- { "title": "MediaStop", "enum": ["MediaStop"] },
507
- { "title": "MediaRewind", "enum": ["MediaRewind"] },
508
- { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
509
- ]
510
- },
341
+ "arrowLeftButton": {
342
+ "title": "ArrowLeft Button",
343
+ "type": "string",
344
+ "description": "Default: ArrowLeft",
345
+ "default": "ArrowLeft",
346
+ "oneOf": [
347
+ { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
348
+ { "title": "ContextMenu", "enum": ["ContextMenu"] },
349
+ { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
350
+ { "title": "ArrowUp", "enum": ["ArrowUp"] },
351
+ { "title": "ArrowDown", "enum": ["ArrowDown"] },
352
+ { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
353
+ { "title": "ArrowRight", "enum": ["ArrowRight"] },
354
+ { "title": "Enter", "enum": ["Enter"] },
355
+ { "title": "Info", "enum": ["Info"] },
356
+ { "title": "Help", "enum": ["Help"] },
357
+ { "title": "Guide", "enum": ["Guide"] },
358
+ { "title": "Escape", "enum": ["Escape"] },
359
+ { "title": "TV", "enum": ["TV"] },
360
+ { "title": "Red", "enum": ["Red"] },
361
+ { "title": "Green", "enum": ["Green"] },
362
+ { "title": "Yellow", "enum": ["Yellow"] },
363
+ { "title": "Blue", "enum": ["Blue"] },
364
+ { "title": "ChannelUp", "enum": ["ChannelUp"] },
365
+ { "title": "ChannelDown", "enum": ["ChannelDown"] },
366
+ { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
367
+ { "title": "MediaPause", "enum": ["MediaPause"] },
368
+ { "title": "MediaRecord", "enum": ["MediaRecord"] },
369
+ { "title": "MediaStop", "enum": ["MediaStop"] },
370
+ { "title": "MediaRewind", "enum": ["MediaRewind"] },
371
+ { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
372
+ ]
373
+ },
374
+ "arrowLeftButtonDoubleTap": {
375
+ "title": "ArrowLeft Button Double Tap",
376
+ "type": "string",
377
+ "description": "Default: MediaRewind",
378
+ "default": "MediaRewind",
379
+ "oneOf": [
380
+ { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
381
+ { "title": "ContextMenu", "enum": ["ContextMenu"] },
382
+ { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
383
+ { "title": "ArrowUp", "enum": ["ArrowUp"] },
384
+ { "title": "ArrowDown", "enum": ["ArrowDown"] },
385
+ { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
386
+ { "title": "ArrowRight", "enum": ["ArrowRight"] },
387
+ { "title": "Enter", "enum": ["Enter"] },
388
+ { "title": "Info", "enum": ["Info"] },
389
+ { "title": "Help", "enum": ["Help"] },
390
+ { "title": "Guide", "enum": ["Guide"] },
391
+ { "title": "Escape", "enum": ["Escape"] },
392
+ { "title": "TV", "enum": ["TV"] },
393
+ { "title": "Red", "enum": ["Red"] },
394
+ { "title": "Green", "enum": ["Green"] },
395
+ { "title": "Yellow", "enum": ["Yellow"] },
396
+ { "title": "Blue", "enum": ["Blue"] },
397
+ { "title": "ChannelUp", "enum": ["ChannelUp"] },
398
+ { "title": "ChannelDown", "enum": ["ChannelDown"] },
399
+ { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
400
+ { "title": "MediaPause", "enum": ["MediaPause"] },
401
+ { "title": "MediaRecord", "enum": ["MediaRecord"] },
402
+ { "title": "MediaStop", "enum": ["MediaStop"] },
403
+ { "title": "MediaRewind", "enum": ["MediaRewind"] },
404
+ { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
405
+ ]
406
+ },
407
+ "arrowRightButton": {
408
+ "title": "ArrowRight Button",
409
+ "type": "string",
410
+ "description": "Default: ArrowRight",
411
+ "default": "ArrowRight",
412
+ "oneOf": [
413
+ { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
414
+ { "title": "ContextMenu", "enum": ["ContextMenu"] },
415
+ { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
416
+ { "title": "ArrowUp", "enum": ["ArrowUp"] },
417
+ { "title": "ArrowDown", "enum": ["ArrowDown"] },
418
+ { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
419
+ { "title": "ArrowRight", "enum": ["ArrowRight"] },
420
+ { "title": "Enter", "enum": ["Enter"] },
421
+ { "title": "Info", "enum": ["Info"] },
422
+ { "title": "Help", "enum": ["Help"] },
423
+ { "title": "Guide", "enum": ["Guide"] },
424
+ { "title": "Escape", "enum": ["Escape"] },
425
+ { "title": "TV", "enum": ["TV"] },
426
+ { "title": "Red", "enum": ["Red"] },
427
+ { "title": "Green", "enum": ["Green"] },
428
+ { "title": "Yellow", "enum": ["Yellow"] },
429
+ { "title": "Blue", "enum": ["Blue"] },
430
+ { "title": "ChannelUp", "enum": ["ChannelUp"] },
431
+ { "title": "ChannelDown", "enum": ["ChannelDown"] },
432
+ { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
433
+ { "title": "MediaPause", "enum": ["MediaPause"] },
434
+ { "title": "MediaRecord", "enum": ["MediaRecord"] },
435
+ { "title": "MediaStop", "enum": ["MediaStop"] },
436
+ { "title": "MediaRewind", "enum": ["MediaRewind"] },
437
+ { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
438
+ ]
439
+ },
440
+ "arrowRightButtonDoubleTap": {
441
+ "title": "ArrowRight Button Double Tap",
442
+ "type": "string",
443
+ "description": "Default: MediaFastForward",
444
+ "default": "MediaFastForward",
445
+ "oneOf": [
446
+ { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
447
+ { "title": "ContextMenu", "enum": ["ContextMenu"] },
448
+ { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
449
+ { "title": "ArrowUp", "enum": ["ArrowUp"] },
450
+ { "title": "ArrowDown", "enum": ["ArrowDown"] },
451
+ { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
452
+ { "title": "ArrowRight", "enum": ["ArrowRight"] },
453
+ { "title": "Enter", "enum": ["Enter"] },
454
+ { "title": "Info", "enum": ["Info"] },
455
+ { "title": "Help", "enum": ["Help"] },
456
+ { "title": "Guide", "enum": ["Guide"] },
457
+ { "title": "Escape", "enum": ["Escape"] },
458
+ { "title": "TV", "enum": ["TV"] },
459
+ { "title": "Red", "enum": ["Red"] },
460
+ { "title": "Green", "enum": ["Green"] },
461
+ { "title": "Yellow", "enum": ["Yellow"] },
462
+ { "title": "Blue", "enum": ["Blue"] },
463
+ { "title": "ChannelUp", "enum": ["ChannelUp"] },
464
+ { "title": "ChannelDown", "enum": ["ChannelDown"] },
465
+ { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
466
+ { "title": "MediaPause", "enum": ["MediaPause"] },
467
+ { "title": "MediaRecord", "enum": ["MediaRecord"] },
468
+ { "title": "MediaStop", "enum": ["MediaStop"] },
469
+ { "title": "MediaRewind", "enum": ["MediaRewind"] },
470
+ { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
471
+ ]
472
+ },
511
473
 
512
- "selectButtonDoubleTap": {
513
- "title": "Select Button Double Tap",
514
- "type": "string",
515
- "description": "Default: Enter",
516
- "default": "Enter",
517
- "oneOf": [
518
- { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
519
- { "title": "ContextMenu", "enum": ["ContextMenu"] },
520
- { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
521
- { "title": "ArrowUp", "enum": ["ArrowUp"] },
522
- { "title": "ArrowDown", "enum": ["ArrowDown"] },
523
- { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
524
- { "title": "ArrowRight", "enum": ["ArrowRight"] },
525
- { "title": "Enter", "enum": ["Enter"] },
526
- { "title": "Info", "enum": ["Info"] },
527
- { "title": "Help", "enum": ["Help"] },
528
- { "title": "Guide", "enum": ["Guide"] },
529
- { "title": "Escape", "enum": ["Escape"] },
530
- { "title": "TV", "enum": ["TV"] },
531
- { "title": "Red", "enum": ["Red"] },
532
- { "title": "Green", "enum": ["Green"] },
533
- { "title": "Yellow", "enum": ["Yellow"] },
534
- { "title": "Blue", "enum": ["Blue"] },
535
- { "title": "ChannelUp", "enum": ["ChannelUp"] },
536
- { "title": "ChannelDown", "enum": ["ChannelDown"] },
537
- { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
538
- { "title": "MediaPause", "enum": ["MediaPause"] },
539
- { "title": "MediaRecord", "enum": ["MediaRecord"] },
540
- { "title": "MediaStop", "enum": ["MediaStop"] },
541
- { "title": "MediaRewind", "enum": ["MediaRewind"] },
542
- { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
543
- ]
544
- },
474
+ "selectButton": {
475
+ "title": "Select Button",
476
+ "type": "string",
477
+ "description": "Default: Enter",
478
+ "default": "Enter",
479
+ "oneOf": [
480
+ { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
481
+ { "title": "ContextMenu", "enum": ["ContextMenu"] },
482
+ { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
483
+ { "title": "ArrowUp", "enum": ["ArrowUp"] },
484
+ { "title": "ArrowDown", "enum": ["ArrowDown"] },
485
+ { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
486
+ { "title": "ArrowRight", "enum": ["ArrowRight"] },
487
+ { "title": "Enter", "enum": ["Enter"] },
488
+ { "title": "Info", "enum": ["Info"] },
489
+ { "title": "Help", "enum": ["Help"] },
490
+ { "title": "Guide", "enum": ["Guide"] },
491
+ { "title": "Escape", "enum": ["Escape"] },
492
+ { "title": "TV", "enum": ["TV"] },
493
+ { "title": "Red", "enum": ["Red"] },
494
+ { "title": "Green", "enum": ["Green"] },
495
+ { "title": "Yellow", "enum": ["Yellow"] },
496
+ { "title": "Blue", "enum": ["Blue"] },
497
+ { "title": "ChannelUp", "enum": ["ChannelUp"] },
498
+ { "title": "ChannelDown", "enum": ["ChannelDown"] },
499
+ { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
500
+ { "title": "MediaPause", "enum": ["MediaPause"] },
501
+ { "title": "MediaRecord", "enum": ["MediaRecord"] },
502
+ { "title": "MediaStop", "enum": ["MediaStop"] },
503
+ { "title": "MediaRewind", "enum": ["MediaRewind"] },
504
+ { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
505
+ ]
506
+ },
545
507
 
546
- "playPauseButton": {
547
- "title": "Play/Pause Button",
548
- "type": "string",
549
- "description": "Default: MediaPlayPause",
550
- "default": "MediaPlayPause",
551
- "oneOf": [
552
- { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
553
- { "title": "ContextMenu", "enum": ["ContextMenu"] },
554
- { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
555
- { "title": "ArrowUp", "enum": ["ArrowUp"] },
556
- { "title": "ArrowDown", "enum": ["ArrowDown"] },
557
- { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
558
- { "title": "ArrowRight", "enum": ["ArrowRight"] },
559
- { "title": "Enter", "enum": ["Enter"] },
560
- { "title": "Info", "enum": ["Info"] },
561
- { "title": "Help", "enum": ["Help"] },
562
- { "title": "Guide", "enum": ["Guide"] },
563
- { "title": "Escape", "enum": ["Escape"] },
564
- { "title": "TV", "enum": ["TV"] },
565
- { "title": "Red", "enum": ["Red"] },
566
- { "title": "Green", "enum": ["Green"] },
567
- { "title": "Yellow", "enum": ["Yellow"] },
568
- { "title": "Blue", "enum": ["Blue"] },
569
- { "title": "ChannelUp", "enum": ["ChannelUp"] },
570
- { "title": "ChannelDown", "enum": ["ChannelDown"] },
571
- { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
572
- { "title": "MediaPause", "enum": ["MediaPause"] },
573
- { "title": "MediaRecord", "enum": ["MediaRecord"] },
574
- { "title": "MediaStop", "enum": ["MediaStop"] },
575
- { "title": "MediaRewind", "enum": ["MediaRewind"] },
576
- { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
577
- ]
578
- },
579
- "playPauseButtonDoubleTap": {
580
- "title": "Play/Pause Button Double Tap",
581
- "type": "string",
582
- "description": "Default: MediaPlayPause",
583
- "default": "MediaPlayPause",
584
- "oneOf": [
585
- { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
586
- { "title": "ContextMenu", "enum": ["ContextMenu"] },
587
- { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
588
- { "title": "ArrowUp", "enum": ["ArrowUp"] },
589
- { "title": "ArrowDown", "enum": ["ArrowDown"] },
590
- { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
591
- { "title": "ArrowRight", "enum": ["ArrowRight"] },
592
- { "title": "Enter", "enum": ["Enter"] },
593
- { "title": "Info", "enum": ["Info"] },
594
- { "title": "Help", "enum": ["Help"] },
595
- { "title": "Guide", "enum": ["Guide"] },
596
- { "title": "Escape", "enum": ["Escape"] },
597
- { "title": "TV", "enum": ["TV"] },
598
- { "title": "Red", "enum": ["Red"] },
599
- { "title": "Green", "enum": ["Green"] },
600
- { "title": "Yellow", "enum": ["Yellow"] },
601
- { "title": "Blue", "enum": ["Blue"] },
602
- { "title": "ChannelUp", "enum": ["ChannelUp"] },
603
- { "title": "ChannelDown", "enum": ["ChannelDown"] },
604
- { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
605
- { "title": "MediaPause", "enum": ["MediaPause"] },
606
- { "title": "MediaRecord", "enum": ["MediaRecord"] },
607
- { "title": "MediaStop", "enum": ["MediaStop"] },
608
- { "title": "MediaRewind", "enum": ["MediaRewind"] },
609
- { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
610
- ]
611
- },
508
+ "selectButtonDoubleTap": {
509
+ "title": "Select Button Double Tap",
510
+ "type": "string",
511
+ "description": "Default: Enter",
512
+ "default": "Enter",
513
+ "oneOf": [
514
+ { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
515
+ { "title": "ContextMenu", "enum": ["ContextMenu"] },
516
+ { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
517
+ { "title": "ArrowUp", "enum": ["ArrowUp"] },
518
+ { "title": "ArrowDown", "enum": ["ArrowDown"] },
519
+ { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
520
+ { "title": "ArrowRight", "enum": ["ArrowRight"] },
521
+ { "title": "Enter", "enum": ["Enter"] },
522
+ { "title": "Info", "enum": ["Info"] },
523
+ { "title": "Help", "enum": ["Help"] },
524
+ { "title": "Guide", "enum": ["Guide"] },
525
+ { "title": "Escape", "enum": ["Escape"] },
526
+ { "title": "TV", "enum": ["TV"] },
527
+ { "title": "Red", "enum": ["Red"] },
528
+ { "title": "Green", "enum": ["Green"] },
529
+ { "title": "Yellow", "enum": ["Yellow"] },
530
+ { "title": "Blue", "enum": ["Blue"] },
531
+ { "title": "ChannelUp", "enum": ["ChannelUp"] },
532
+ { "title": "ChannelDown", "enum": ["ChannelDown"] },
533
+ { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
534
+ { "title": "MediaPause", "enum": ["MediaPause"] },
535
+ { "title": "MediaRecord", "enum": ["MediaRecord"] },
536
+ { "title": "MediaStop", "enum": ["MediaStop"] },
537
+ { "title": "MediaRewind", "enum": ["MediaRewind"] },
538
+ { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
539
+ ]
540
+ },
612
541
 
542
+ "playPauseButton": {
543
+ "title": "Play/Pause Button",
544
+ "type": "string",
545
+ "description": "Default: MediaPlayPause",
546
+ "default": "MediaPlayPause",
547
+ "oneOf": [
548
+ { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
549
+ { "title": "ContextMenu", "enum": ["ContextMenu"] },
550
+ { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
551
+ { "title": "ArrowUp", "enum": ["ArrowUp"] },
552
+ { "title": "ArrowDown", "enum": ["ArrowDown"] },
553
+ { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
554
+ { "title": "ArrowRight", "enum": ["ArrowRight"] },
555
+ { "title": "Enter", "enum": ["Enter"] },
556
+ { "title": "Info", "enum": ["Info"] },
557
+ { "title": "Help", "enum": ["Help"] },
558
+ { "title": "Guide", "enum": ["Guide"] },
559
+ { "title": "Escape", "enum": ["Escape"] },
560
+ { "title": "TV", "enum": ["TV"] },
561
+ { "title": "Red", "enum": ["Red"] },
562
+ { "title": "Green", "enum": ["Green"] },
563
+ { "title": "Yellow", "enum": ["Yellow"] },
564
+ { "title": "Blue", "enum": ["Blue"] },
565
+ { "title": "ChannelUp", "enum": ["ChannelUp"] },
566
+ { "title": "ChannelDown", "enum": ["ChannelDown"] },
567
+ { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
568
+ { "title": "MediaPause", "enum": ["MediaPause"] },
569
+ { "title": "MediaRecord", "enum": ["MediaRecord"] },
570
+ { "title": "MediaStop", "enum": ["MediaStop"] },
571
+ { "title": "MediaRewind", "enum": ["MediaRewind"] },
572
+ { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
573
+ ]
574
+ },
575
+ "playPauseButtonDoubleTap": {
576
+ "title": "Play/Pause Button Double Tap",
577
+ "type": "string",
578
+ "description": "Default: MediaPlayPause",
579
+ "default": "MediaPlayPause",
580
+ "oneOf": [
581
+ { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
582
+ { "title": "ContextMenu", "enum": ["ContextMenu"] },
583
+ { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
584
+ { "title": "ArrowUp", "enum": ["ArrowUp"] },
585
+ { "title": "ArrowDown", "enum": ["ArrowDown"] },
586
+ { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
587
+ { "title": "ArrowRight", "enum": ["ArrowRight"] },
588
+ { "title": "Enter", "enum": ["Enter"] },
589
+ { "title": "Info", "enum": ["Info"] },
590
+ { "title": "Help", "enum": ["Help"] },
591
+ { "title": "Guide", "enum": ["Guide"] },
592
+ { "title": "Escape", "enum": ["Escape"] },
593
+ { "title": "TV", "enum": ["TV"] },
594
+ { "title": "Red", "enum": ["Red"] },
595
+ { "title": "Green", "enum": ["Green"] },
596
+ { "title": "Yellow", "enum": ["Yellow"] },
597
+ { "title": "Blue", "enum": ["Blue"] },
598
+ { "title": "ChannelUp", "enum": ["ChannelUp"] },
599
+ { "title": "ChannelDown", "enum": ["ChannelDown"] },
600
+ { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
601
+ { "title": "MediaPause", "enum": ["MediaPause"] },
602
+ { "title": "MediaRecord", "enum": ["MediaRecord"] },
603
+ { "title": "MediaStop", "enum": ["MediaStop"] },
604
+ { "title": "MediaRewind", "enum": ["MediaRewind"] },
605
+ { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
606
+ ]
607
+ },
613
608
 
614
- "backButton": {
615
- "title": "Back Button",
616
- "type": "string",
617
- "description": "Default: Escape",
618
- "default": "Escape",
619
- "oneOf": [
620
- { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
621
- { "title": "ContextMenu", "enum": ["ContextMenu"] },
622
- { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
623
- { "title": "ArrowUp", "enum": ["ArrowUp"] },
624
- { "title": "ArrowDown", "enum": ["ArrowDown"] },
625
- { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
626
- { "title": "ArrowRight", "enum": ["ArrowRight"] },
627
- { "title": "Enter", "enum": ["Enter"] },
628
- { "title": "Info", "enum": ["Info"] },
629
- { "title": "Help", "enum": ["Help"] },
630
- { "title": "Guide", "enum": ["Guide"] },
631
- { "title": "Escape", "enum": ["Escape"] },
632
- { "title": "TV", "enum": ["TV"] },
633
- { "title": "Red", "enum": ["Red"] },
634
- { "title": "Green", "enum": ["Green"] },
635
- { "title": "Yellow", "enum": ["Yellow"] },
636
- { "title": "Blue", "enum": ["Blue"] },
637
- { "title": "ChannelUp", "enum": ["ChannelUp"] },
638
- { "title": "ChannelDown", "enum": ["ChannelDown"] },
639
- { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
640
- { "title": "MediaPause", "enum": ["MediaPause"] },
641
- { "title": "MediaRecord", "enum": ["MediaRecord"] },
642
- { "title": "MediaStop", "enum": ["MediaStop"] },
643
- { "title": "MediaRewind", "enum": ["MediaRewind"] },
644
- { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
645
- ]
646
- },
647
- "backButtonDoubleTap": {
648
- "title": "Back Button Double Tap",
649
- "type": "string",
650
- "description": "Default: Escape",
651
- "default": "Escape",
652
- "oneOf": [
653
- { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
654
- { "title": "ContextMenu", "enum": ["ContextMenu"] },
655
- { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
656
- { "title": "ArrowUp", "enum": ["ArrowUp"] },
657
- { "title": "ArrowDown", "enum": ["ArrowDown"] },
658
- { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
659
- { "title": "ArrowRight", "enum": ["ArrowRight"] },
660
- { "title": "Enter", "enum": ["Enter"] },
661
- { "title": "Info", "enum": ["Info"] },
662
- { "title": "Help", "enum": ["Help"] },
663
- { "title": "Guide", "enum": ["Guide"] },
664
- { "title": "Escape", "enum": ["Escape"] },
665
- { "title": "TV", "enum": ["TV"] },
666
- { "title": "Red", "enum": ["Red"] },
667
- { "title": "Green", "enum": ["Green"] },
668
- { "title": "Yellow", "enum": ["Yellow"] },
669
- { "title": "Blue", "enum": ["Blue"] },
670
- { "title": "ChannelUp", "enum": ["ChannelUp"] },
671
- { "title": "ChannelDown", "enum": ["ChannelDown"] },
672
- { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
673
- { "title": "MediaPause", "enum": ["MediaPause"] },
674
- { "title": "MediaRecord", "enum": ["MediaRecord"] },
675
- { "title": "MediaStop", "enum": ["MediaStop"] },
676
- { "title": "MediaRewind", "enum": ["MediaRewind"] },
677
- { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
678
- ]
679
- },
609
+ "backButton": {
610
+ "title": "Back Button",
611
+ "type": "string",
612
+ "description": "Default: Escape",
613
+ "default": "Escape",
614
+ "oneOf": [
615
+ { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
616
+ { "title": "ContextMenu", "enum": ["ContextMenu"] },
617
+ { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
618
+ { "title": "ArrowUp", "enum": ["ArrowUp"] },
619
+ { "title": "ArrowDown", "enum": ["ArrowDown"] },
620
+ { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
621
+ { "title": "ArrowRight", "enum": ["ArrowRight"] },
622
+ { "title": "Enter", "enum": ["Enter"] },
623
+ { "title": "Info", "enum": ["Info"] },
624
+ { "title": "Help", "enum": ["Help"] },
625
+ { "title": "Guide", "enum": ["Guide"] },
626
+ { "title": "Escape", "enum": ["Escape"] },
627
+ { "title": "TV", "enum": ["TV"] },
628
+ { "title": "Red", "enum": ["Red"] },
629
+ { "title": "Green", "enum": ["Green"] },
630
+ { "title": "Yellow", "enum": ["Yellow"] },
631
+ { "title": "Blue", "enum": ["Blue"] },
632
+ { "title": "ChannelUp", "enum": ["ChannelUp"] },
633
+ { "title": "ChannelDown", "enum": ["ChannelDown"] },
634
+ { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
635
+ { "title": "MediaPause", "enum": ["MediaPause"] },
636
+ { "title": "MediaRecord", "enum": ["MediaRecord"] },
637
+ { "title": "MediaStop", "enum": ["MediaStop"] },
638
+ { "title": "MediaRewind", "enum": ["MediaRewind"] },
639
+ { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
640
+ ]
641
+ },
642
+ "backButtonDoubleTap": {
643
+ "title": "Back Button Double Tap",
644
+ "type": "string",
645
+ "description": "Default: Escape",
646
+ "default": "Escape",
647
+ "oneOf": [
648
+ { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
649
+ { "title": "ContextMenu", "enum": ["ContextMenu"] },
650
+ { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
651
+ { "title": "ArrowUp", "enum": ["ArrowUp"] },
652
+ { "title": "ArrowDown", "enum": ["ArrowDown"] },
653
+ { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
654
+ { "title": "ArrowRight", "enum": ["ArrowRight"] },
655
+ { "title": "Enter", "enum": ["Enter"] },
656
+ { "title": "Info", "enum": ["Info"] },
657
+ { "title": "Help", "enum": ["Help"] },
658
+ { "title": "Guide", "enum": ["Guide"] },
659
+ { "title": "Escape", "enum": ["Escape"] },
660
+ { "title": "TV", "enum": ["TV"] },
661
+ { "title": "Red", "enum": ["Red"] },
662
+ { "title": "Green", "enum": ["Green"] },
663
+ { "title": "Yellow", "enum": ["Yellow"] },
664
+ { "title": "Blue", "enum": ["Blue"] },
665
+ { "title": "ChannelUp", "enum": ["ChannelUp"] },
666
+ { "title": "ChannelDown", "enum": ["ChannelDown"] },
667
+ { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
668
+ { "title": "MediaPause", "enum": ["MediaPause"] },
669
+ { "title": "MediaRecord", "enum": ["MediaRecord"] },
670
+ { "title": "MediaStop", "enum": ["MediaStop"] },
671
+ { "title": "MediaRewind", "enum": ["MediaRewind"] },
672
+ { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
673
+ ]
674
+ },
680
675
 
681
- "infoButton": {
682
- "title": "Info Button",
683
- "type": "string",
684
- "description": "Default: MediaTopMenu",
685
- "default": "MediaTopMenu",
686
- "oneOf": [
687
- { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
688
- { "title": "ContextMenu", "enum": ["ContextMenu"] },
689
- { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
690
- { "title": "ArrowUp", "enum": ["ArrowUp"] },
691
- { "title": "ArrowDown", "enum": ["ArrowDown"] },
692
- { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
693
- { "title": "ArrowRight", "enum": ["ArrowRight"] },
694
- { "title": "Enter", "enum": ["Enter"] },
695
- { "title": "Info", "enum": ["Info"] },
696
- { "title": "Help", "enum": ["Help"] },
697
- { "title": "Guide", "enum": ["Guide"] },
698
- { "title": "Escape", "enum": ["Escape"] },
699
- { "title": "TV", "enum": ["TV"] },
700
- { "title": "Red", "enum": ["Red"] },
701
- { "title": "Green", "enum": ["Green"] },
702
- { "title": "Yellow", "enum": ["Yellow"] },
703
- { "title": "Blue", "enum": ["Blue"] },
704
- { "title": "ChannelUp", "enum": ["ChannelUp"] },
705
- { "title": "ChannelDown", "enum": ["ChannelDown"] },
706
- { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
707
- { "title": "MediaPause", "enum": ["MediaPause"] },
708
- { "title": "MediaRecord", "enum": ["MediaRecord"] },
709
- { "title": "MediaStop", "enum": ["MediaStop"] },
710
- { "title": "MediaRewind", "enum": ["MediaRewind"] },
711
- { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
712
- ]
713
- },
714
- "infoButtonDoubleTap": {
715
- "title": "Info Button Double Tap",
716
- "type": "string",
717
- "description": "Default: Guide",
718
- "default": "Guide",
719
- "oneOf": [
720
- { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
721
- { "title": "ContextMenu", "enum": ["ContextMenu"] },
722
- { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
723
- { "title": "ArrowUp", "enum": ["ArrowUp"] },
724
- { "title": "ArrowDown", "enum": ["ArrowDown"] },
725
- { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
726
- { "title": "ArrowRight", "enum": ["ArrowRight"] },
727
- { "title": "Enter", "enum": ["Enter"] },
728
- { "title": "Info", "enum": ["Info"] },
729
- { "title": "Help", "enum": ["Help"] },
730
- { "title": "Guide", "enum": ["Guide"] },
731
- { "title": "Escape", "enum": ["Escape"] },
732
- { "title": "TV", "enum": ["TV"] },
733
- { "title": "Red", "enum": ["Red"] },
734
- { "title": "Green", "enum": ["Green"] },
735
- { "title": "Yellow", "enum": ["Yellow"] },
736
- { "title": "Blue", "enum": ["Blue"] },
737
- { "title": "ChannelUp", "enum": ["ChannelUp"] },
738
- { "title": "ChannelDown", "enum": ["ChannelDown"] },
739
- { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
740
- { "title": "MediaPause", "enum": ["MediaPause"] },
741
- { "title": "MediaRecord", "enum": ["MediaRecord"] },
742
- { "title": "MediaStop", "enum": ["MediaStop"] },
743
- { "title": "MediaRewind", "enum": ["MediaRewind"] },
744
- { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
745
- ]
746
- },
676
+ "infoButton": {
677
+ "title": "Info Button",
678
+ "type": "string",
679
+ "description": "Default: MediaTopMenu",
680
+ "default": "MediaTopMenu",
681
+ "oneOf": [
682
+ { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
683
+ { "title": "ContextMenu", "enum": ["ContextMenu"] },
684
+ { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
685
+ { "title": "ArrowUp", "enum": ["ArrowUp"] },
686
+ { "title": "ArrowDown", "enum": ["ArrowDown"] },
687
+ { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
688
+ { "title": "ArrowRight", "enum": ["ArrowRight"] },
689
+ { "title": "Enter", "enum": ["Enter"] },
690
+ { "title": "Info", "enum": ["Info"] },
691
+ { "title": "Help", "enum": ["Help"] },
692
+ { "title": "Guide", "enum": ["Guide"] },
693
+ { "title": "Escape", "enum": ["Escape"] },
694
+ { "title": "TV", "enum": ["TV"] },
695
+ { "title": "Red", "enum": ["Red"] },
696
+ { "title": "Green", "enum": ["Green"] },
697
+ { "title": "Yellow", "enum": ["Yellow"] },
698
+ { "title": "Blue", "enum": ["Blue"] },
699
+ { "title": "ChannelUp", "enum": ["ChannelUp"] },
700
+ { "title": "ChannelDown", "enum": ["ChannelDown"] },
701
+ { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
702
+ { "title": "MediaPause", "enum": ["MediaPause"] },
703
+ { "title": "MediaRecord", "enum": ["MediaRecord"] },
704
+ { "title": "MediaStop", "enum": ["MediaStop"] },
705
+ { "title": "MediaRewind", "enum": ["MediaRewind"] },
706
+ { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
707
+ ]
708
+ },
709
+ "infoButtonDoubleTap": {
710
+ "title": "Info Button Double Tap",
711
+ "type": "string",
712
+ "description": "Default: Guide",
713
+ "default": "Guide",
714
+ "oneOf": [
715
+ { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
716
+ { "title": "ContextMenu", "enum": ["ContextMenu"] },
717
+ { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
718
+ { "title": "ArrowUp", "enum": ["ArrowUp"] },
719
+ { "title": "ArrowDown", "enum": ["ArrowDown"] },
720
+ { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
721
+ { "title": "ArrowRight", "enum": ["ArrowRight"] },
722
+ { "title": "Enter", "enum": ["Enter"] },
723
+ { "title": "Info", "enum": ["Info"] },
724
+ { "title": "Help", "enum": ["Help"] },
725
+ { "title": "Guide", "enum": ["Guide"] },
726
+ { "title": "Escape", "enum": ["Escape"] },
727
+ { "title": "TV", "enum": ["TV"] },
728
+ { "title": "Red", "enum": ["Red"] },
729
+ { "title": "Green", "enum": ["Green"] },
730
+ { "title": "Yellow", "enum": ["Yellow"] },
731
+ { "title": "Blue", "enum": ["Blue"] },
732
+ { "title": "ChannelUp", "enum": ["ChannelUp"] },
733
+ { "title": "ChannelDown", "enum": ["ChannelDown"] },
734
+ { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
735
+ { "title": "MediaPause", "enum": ["MediaPause"] },
736
+ { "title": "MediaRecord", "enum": ["MediaRecord"] },
737
+ { "title": "MediaStop", "enum": ["MediaStop"] },
738
+ { "title": "MediaRewind", "enum": ["MediaRewind"] },
739
+ { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
740
+ ]
741
+ },
747
742
 
748
- "viewTvSettingsCommand": {
749
- "title": "View TV Settings",
750
- "type": "string",
751
- "description": "Default: Help",
752
- "default": "Help",
753
- "oneOf": [
754
- { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
755
- { "title": "ContextMenu", "enum": ["ContextMenu"] },
756
- { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
757
- { "title": "ArrowUp", "enum": ["ArrowUp"] },
758
- { "title": "ArrowDown", "enum": ["ArrowDown"] },
759
- { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
760
- { "title": "ArrowRight", "enum": ["ArrowRight"] },
761
- { "title": "Enter", "enum": ["Enter"] },
762
- { "title": "Info", "enum": ["Info"] },
763
- { "title": "Help", "enum": ["Help"] },
764
- { "title": "Guide", "enum": ["Guide"] },
765
- { "title": "Escape", "enum": ["Escape"] },
766
- { "title": "TV", "enum": ["TV"] },
767
- { "title": "Red", "enum": ["Red"] },
768
- { "title": "Green", "enum": ["Green"] },
769
- { "title": "Yellow", "enum": ["Yellow"] },
770
- { "title": "Blue", "enum": ["Blue"] },
771
- { "title": "ChannelUp", "enum": ["ChannelUp"] },
772
- { "title": "ChannelDown", "enum": ["ChannelDown"] },
773
- { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
774
- { "title": "MediaPause", "enum": ["MediaPause"] },
775
- { "title": "MediaRecord", "enum": ["MediaRecord"] },
776
- { "title": "MediaStop", "enum": ["MediaStop"] },
777
- { "title": "MediaRewind", "enum": ["MediaRewind"] },
778
- { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
779
- ]
780
- },
743
+ "viewTvSettingsCommand": {
744
+ "title": "View TV Settings",
745
+ "type": "string",
746
+ "description": "Default: Help",
747
+ "default": "Help",
748
+ "oneOf": [
749
+ { "title": "MediaTopMenu", "enum": ["MediaTopMenu"] },
750
+ { "title": "ContextMenu", "enum": ["ContextMenu"] },
751
+ { "title": "NextUserProfile", "enum": ["NextUserProfile"] },
752
+ { "title": "ArrowUp", "enum": ["ArrowUp"] },
753
+ { "title": "ArrowDown", "enum": ["ArrowDown"] },
754
+ { "title": "ArrowLeft", "enum": ["ArrowLeft"] },
755
+ { "title": "ArrowRight", "enum": ["ArrowRight"] },
756
+ { "title": "Enter", "enum": ["Enter"] },
757
+ { "title": "Info", "enum": ["Info"] },
758
+ { "title": "Help", "enum": ["Help"] },
759
+ { "title": "Guide", "enum": ["Guide"] },
760
+ { "title": "Escape", "enum": ["Escape"] },
761
+ { "title": "TV", "enum": ["TV"] },
762
+ { "title": "Red", "enum": ["Red"] },
763
+ { "title": "Green", "enum": ["Green"] },
764
+ { "title": "Yellow", "enum": ["Yellow"] },
765
+ { "title": "Blue", "enum": ["Blue"] },
766
+ { "title": "ChannelUp", "enum": ["ChannelUp"] },
767
+ { "title": "ChannelDown", "enum": ["ChannelDown"] },
768
+ { "title": "MediaPlayPause", "enum": ["MediaPlayPause"] },
769
+ { "title": "MediaPause", "enum": ["MediaPause"] },
770
+ { "title": "MediaRecord", "enum": ["MediaRecord"] },
771
+ { "title": "MediaStop", "enum": ["MediaStop"] },
772
+ { "title": "MediaRewind", "enum": ["MediaRewind"] },
773
+ { "title": "MediaFastForward", "enum": ["MediaFastForward"] }
774
+ ]
775
+ },
781
776
 
782
- "volUpCommand": {
783
- "title": "Volume Up Command",
784
- "type": "string",
785
- "description": "An executable command to increase the volume. The command is executed by the plugin on Homebridge, and must work on the platform running Homebridge."
786
- },
787
- "volDownCommand": {
788
- "title": "Volume Down Command",
789
- "type": "string",
790
- "description": "An executable command to reduce the volume. The command is executed by the plugin on Homebridge, and must work on the platform running Homebridge."
791
- },
792
- "muteCommand": {
793
- "title": "Mute Command",
794
- "type": "string",
795
- "description": "An executable command to mute the sound. The command is executed by the plugin on Homebridge, and must work on the platform running Homebridge."
796
- },
777
+ "volUpCommand": {
778
+ "title": "Volume Up Command",
779
+ "type": "string",
780
+ "description": "An executable command to increase the volume. The command is executed by the plugin on Homebridge, and must work on the platform running Homebridge."
781
+ },
782
+ "volDownCommand": {
783
+ "title": "Volume Down Command",
784
+ "type": "string",
785
+ "description": "An executable command to reduce the volume. The command is executed by the plugin on Homebridge, and must work on the platform running Homebridge."
786
+ },
787
+ "muteCommand": {
788
+ "title": "Mute Command",
789
+ "type": "string",
790
+ "description": "An executable command to mute the sound. The command is executed by the plugin on Homebridge, and must work on the platform running Homebridge."
791
+ },
797
792
 
798
-
799
- "customPictureMode": {
800
- "title": "Custom Picture Mode",
801
- "type": "string",
802
- "description": "Allow Picture Mode to be used for other custom functionality, see README for full details.",
803
- "oneOf": [
804
- { "title": "Recording State", "enum": ["recordingState"] }
805
- ]
806
- }
807
-
808
-
809
- }
793
+ "customPictureMode": {
794
+ "title": "Custom Picture Mode",
795
+ "type": "string",
796
+ "description": "Allow Picture Mode to be used for other custom functionality, see README for full details.",
797
+ "oneOf": [
798
+ { "title": "Recording State", "enum": ["recordingState"] }
799
+ ]
810
800
  }
811
- },
812
-
813
- "channels": {
814
- "type": "array",
815
- "title": "Channels",
816
- "description": "Add custom channel names for any special channels (such as Netflix) where the channel name cannot be auto-detected by the plugin.",
817
- "items": {
818
- "title": "Channel Names",
819
- "type": "object",
820
- "properties": {
821
- "channelId": {
822
- "title": "Channel ID",
823
- "type": "string",
824
- "description": "Unique channelId, see the Homebridge log."
825
- },
826
- "channelKeyMacro": {
827
- "title": "Channel Key Macro",
828
- "type": "string",
829
- "description": "A sequence of remote control keys for enhanced customising. Channel ID must be empty to use key macros. Example: '1 2 3 Enter' to select channel 123. See the <a href=\"https://github.com/jsiegenthaler/homebridge-eosstb/wiki/KeyEvents#known-keys\">Wiki</a> for a description of all keys."
830
- },
831
- "channelName": {
832
- "title": "Channel Name",
833
- "type": "string",
834
- "description": "Custom channel name."
835
- }
836
- }
801
+ }
802
+ }
803
+ },
837
804
 
805
+ "channels": {
806
+ "type": "array",
807
+ "title": "Channels",
808
+ "description": "Add custom channel names for any special channels (such as Netflix) where the channel name cannot be auto-detected by the plugin.",
809
+ "items": {
810
+ "title": "Channel Names",
811
+ "type": "object",
812
+ "properties": {
813
+ "channelId": {
814
+ "title": "Channel ID",
815
+ "type": "string",
816
+ "description": "Unique channelId, see the Homebridge log."
817
+ },
818
+ "channelKeyMacro": {
819
+ "title": "Channel Key Macro",
820
+ "type": "string",
821
+ "description": "A sequence of remote control keys for enhanced customising. Channel ID must be empty to use key macros. Example: '1 2 3 Enter' to select channel 123. See the <a href=\"https://github.com/jsiegenthaler/homebridge-eosstb/wiki/KeyEvents#known-keys\">Wiki</a> for a description of all keys."
822
+ },
823
+ "channelName": {
824
+ "title": "Channel Name",
825
+ "type": "string",
826
+ "description": "Custom channel name."
838
827
  }
828
+ }
839
829
  }
840
-
841
-
830
+ }
842
831
  }
843
- },
844
-
832
+ },
845
833
 
846
-
847
-
848
- "layout": [
834
+ "layout": [
849
835
  {
850
- "type": "fieldset",
851
- "title": "Mandatory Platform Config *",
852
- "description": "The minimum EOSSTB config items that must be configured.",
853
- "expandable": true,
854
- "expanded": false,
855
- "items": [
856
- {
857
- "type": "flex",
858
- "flex-flow": "row wrap",
859
- "items": [
860
- {
861
- "type": "flex",
862
- "flex-flow": "column",
863
- "items": [
864
- "country",
865
- "authmethod",
866
- "watchdogDisabled"
867
- ]
868
- },
869
- {
870
- "type": "flex",
871
- "flex-flow": "row wrap",
872
- "items": [ "username", "password" ]
873
- }
874
- ]
875
- }
876
- ]
877
- },
878
-
879
-
836
+ "type": "fieldset",
837
+ "title": "Mandatory Platform Config *",
838
+ "description": "The minimum EOSSTB config items that must be configured.",
839
+ "expandable": true,
840
+ "expanded": false,
841
+ "items": [
880
842
  {
881
- "type": "fieldset",
882
- "title": "Optional Platform Config",
883
- "description": "Customise the platform config and set the debug level in this section.",
884
- "expandable": true,
885
- "expanded": false,
886
- "items": [
887
- "name",
888
- "doublePressTime",
889
- "triplePressTime",
890
- "masterChannelListValidFor",
891
- "debugLevel"
892
- ]
893
- },
843
+ "type": "flex",
844
+ "flex-flow": "row wrap",
845
+ "items": [
846
+ {
847
+ "type": "flex",
848
+ "flex-flow": "column",
849
+ "items": ["country", "authmethod", "watchdogDisabled"]
850
+ },
851
+ {
852
+ "type": "flex",
853
+ "flex-flow": "row wrap",
854
+ "items": ["username", "password"]
855
+ }
856
+ ]
857
+ }
858
+ ]
859
+ },
894
860
 
861
+ {
862
+ "type": "fieldset",
863
+ "title": "Optional Platform Config",
864
+ "description": "Customise the platform config and set the debug level in this section.",
865
+ "expandable": true,
866
+ "expanded": false,
867
+ "items": [
868
+ "name",
869
+ "doublePressTime",
870
+ "triplePressTime",
871
+ "masterChannelListValidFor",
872
+ "debugLevel"
873
+ ]
874
+ },
895
875
 
876
+ {
877
+ "type": "fieldset",
878
+ "title": "Optional Device Config",
879
+ "description": "Customise and fine tune your device config in this section.",
880
+ "expandable": true,
881
+ "expanded": false,
882
+ "items": [
896
883
  {
897
- "type": "fieldset",
898
- "title": "Optional Device Config",
899
- "description": "Customise and fine tune your device config in this section.",
900
- "expandable": true,
901
- "expanded": false,
902
- "items": [
884
+ "key": "devices",
885
+ "type": "array",
886
+ "items": [
887
+ "devices[].deviceId",
888
+ {
889
+ "key": "devices[]",
890
+ "type": "section",
891
+ "title": "Name and Icon",
892
+ "expandable": true,
893
+ "items": [
894
+ "devices[].name",
895
+ "devices[].syncName",
896
+ "devices[].accessoryCategory"
897
+ ]
898
+ },
899
+ {
900
+ "key": "devices[]",
901
+ "type": "section",
902
+ "title": "Accessory Information",
903
+ "expandable": true,
904
+ "items": [
905
+ "devices[].manufacturer",
906
+ "devices[].serialNumber",
907
+ "devices[].modelName",
908
+ "devices[].firmwareRevision"
909
+ ]
910
+ },
911
+ {
912
+ "key": "devices[]",
913
+ "type": "section",
914
+ "title": "Channel Display",
915
+ "expandable": true,
916
+ "items": [
917
+ "devices[].profile",
918
+ "devices[].channelOrder",
919
+ "devices[].maxChannels",
920
+ "devices[].showChannelNumbers"
921
+ ]
922
+ },
923
+ {
924
+ "key": "devices[]",
925
+ "type": "section",
926
+ "title": "Remote Control and Menu Commands",
927
+ "expandable": true,
928
+ "items": [
903
929
  {
904
- "key": "devices",
905
- "type": "array",
906
- "items": [
907
- "devices[].deviceId",
908
- {
909
- "key": "devices[]",
910
- "type": "section",
911
- "title": "Name and Icon",
912
- "expandable": true,
913
- "items": [
914
- "devices[].name",
915
- "devices[].syncName",
916
- "devices[].accessoryCategory"
917
- ]
918
- },
919
- {
920
- "key": "devices[]",
921
- "type": "section",
922
- "title": "Accessory Information",
923
- "expandable": true,
924
- "items": [
925
- "devices[].manufacturer",
926
- "devices[].serialNumber",
927
- "devices[].modelName",
928
- "devices[].firmwareRevision"
929
- ]
930
- },
931
- {
932
- "key": "devices[]",
933
- "type": "section",
934
- "title": "Channel Display",
935
- "expandable": true,
936
- "items": [
937
- "devices[].profile",
938
- "devices[].channelOrder",
939
- "devices[].maxChannels",
940
- "devices[].showChannelNumbers"
941
- ]
942
- },
943
- {
944
- "key": "devices[]",
945
- "type": "section",
946
- "title": "Remote Control and Menu Commands",
947
- "expandable": true,
948
- "items": [
949
- {
950
- "key": "devices[]",
951
- "type": "section",
952
- "title": "...Arrow Up Button",
953
- "expandable": true,
954
- "items": [
955
- {
956
- "type": "flex",
957
- "flex-flow": "row wrap",
958
- "title": "The key to send when the <b>(Arrow Up)</b> button is tapped on the iOS remote.<br>See the <a href=\"https://github.com/jsiegenthaler/homebridge-eosstb/wiki/KeyEvents#known-keys\">Wiki</a> for a description of all keys.",
959
- "items": [
960
- "devices[].arrowUpButton",
961
- "devices[].arrowUpButtonDoubleTap"
962
- ]
963
- }
964
- ]
965
- },
966
- {
967
- "key": "devices[]",
968
- "type": "section",
969
- "title": "...Arrow Down Button",
970
- "expandable": true,
971
- "items": [
972
- {
973
- "type": "flex",
974
- "flex-flow": "row wrap",
975
- "title": "The key to send when the <b>(Arrow Down)</b> button is tapped on the iOS remote.<br>See the <a href=\"https://github.com/jsiegenthaler/homebridge-eosstb/wiki/KeyEvents#known-keys\">Wiki</a> for a description of all keys.",
976
- "items": [
977
- "devices[].arrowDownButton",
978
- "devices[].arrowDownButtonDoubleTap"
979
- ]
980
- }
981
- ]
982
- },
983
- {
984
- "key": "devices[]",
985
- "type": "section",
986
- "title": "...Arrow Left Button",
987
- "expandable": true,
988
- "items": [
989
- {
990
- "type": "flex",
991
- "flex-flow": "row wrap",
992
- "title": "The key to send when the <b>(Arrow Left)</b> button is tapped on the iOS remote.<br>See the <a href=\"https://github.com/jsiegenthaler/homebridge-eosstb/wiki/KeyEvents#known-keys\">Wiki</a> for a description of all keys.",
993
- "items": [
994
- "devices[].arrowLeftButton",
995
- "devices[].arrowLeftButtonDoubleTap"
996
- ]
997
- }
998
- ]
999
- },
1000
- {
1001
- "key": "devices[]",
1002
- "type": "section",
1003
- "title": "...Arrow Right Button",
1004
- "expandable": true,
1005
- "items": [
1006
- {
1007
- "type": "flex",
1008
- "flex-flow": "row wrap",
1009
- "title": "The key to send when the <b>(Arrow Right)</b> button is tapped on the iOS remote.<br>See the <a href=\"https://github.com/jsiegenthaler/homebridge-eosstb/wiki/KeyEvents#known-keys\">Wiki</a> for a description of all keys.",
1010
- "items": [
1011
- "devices[].arrowRightButton",
1012
- "devices[].arrowRightButtonDoubleTap"
1013
- ]
1014
- }
1015
- ]
1016
- },
1017
- {
1018
- "key": "devices[]",
1019
- "type": "section",
1020
- "title": "...Select Button",
1021
- "expandable": true,
1022
- "items": [
1023
- {
1024
- "type": "flex",
1025
- "flex-flow": "row wrap",
1026
- "title": "The key to send when the <b>(Select)</b> button is tapped on the iOS remote.<br>See the <a href=\"https://github.com/jsiegenthaler/homebridge-eosstb/wiki/KeyEvents#known-keys\">Wiki</a> for a description of all keys.",
1027
- "items": [
1028
- "devices[].selectButton",
1029
- "devices[].selectButtonDoubleTap"
1030
- ]
1031
- }
1032
- ]
1033
- },
1034
-
1035
-
1036
- {
1037
- "key": "devices[]",
1038
- "type": "section",
1039
- "title": "...Play/Pause Button",
1040
- "expandable": true,
1041
- "items": [
1042
- {
1043
- "type": "flex",
1044
- "flex-flow": "row wrap",
1045
- "title": "The key to send when the <b>(Play/Pause)</b> button is tapped on the iOS remote.<br>See the <a href=\"https://github.com/jsiegenthaler/homebridge-eosstb/wiki/KeyEvents#known-keys\">Wiki</a> for a description of all keys.",
1046
- "items": [
1047
- "devices[].playPauseButton",
1048
- "devices[].playPauseButtonDoubleTap"
1049
- ]
1050
- }
1051
- ]
1052
- },
1053
- {
1054
- "key": "devices[]",
1055
- "type": "section",
1056
- "title": "...Back Button",
1057
- "expandable": true,
1058
- "items": [
1059
- {
1060
- "type": "flex",
1061
- "flex-flow": "row wrap",
1062
- "title": "The key to send when the <b>(BACK)</b> button is tapped on the iOS remote.<br>See the <a href=\"https://github.com/jsiegenthaler/homebridge-eosstb/wiki/KeyEvents#known-keys\">Wiki</a> for a description of all keys.",
1063
- "items": [
1064
- "devices[].backButton",
1065
- "devices[].backButtonDoubleTap"
1066
- ]
1067
- }
1068
- ]
1069
- },
1070
- {
1071
- "key": "devices[]",
1072
- "type": "section",
1073
- "title": "...Info Button",
1074
- "expandable": true,
1075
- "items": [
1076
- {
1077
- "type": "flex",
1078
- "flex-flow": "row wrap",
1079
- "title": "The key to send when the <b>(i)</b> info button is tapped on the iOS remote.<br>See the <a href=\"https://github.com/jsiegenthaler/homebridge-eosstb/wiki/KeyEvents#known-keys\">Wiki</a> for a description of all keys.",
1080
- "items": [
1081
- "devices[].infoButton",
1082
- "devices[].infoButtonDoubleTap"
1083
- ]
1084
- }
1085
- ]
1086
- },
1087
-
1088
- {
1089
- "key": "devices[]",
1090
- "type": "section",
1091
- "title": "...View TV Settings Command",
1092
- "expandable": true,
1093
- "items": [
1094
- {
1095
- "type": "flex",
1096
- "flex-flow": "row wrap",
1097
- "title": "The key to send when <b>View TV Settings</b> is selected in the accessory in the Home app.<br>See the <a href=\"https://github.com/jsiegenthaler/homebridge-eosstb/wiki/KeyEvents#known-keys\">Wiki</a> for a description of all keys.",
1098
- "items": [
1099
- "devices[].viewTvSettingsCommand"
1100
- ]
1101
- }
1102
- ]
1103
- }
1104
- ]
1105
- },
1106
- {
1107
- "key": "devices[]",
1108
- "type": "section",
1109
- "title": "Remote Control Volume Commands",
1110
- "expandable": true,
1111
- "items": [
1112
- "devices[].volUpCommand",
1113
- "devices[].volDownCommand",
1114
- "devices[].muteCommand"
1115
- ]
1116
- }
1117
- ]
1118
- }
1119
- ]
1120
- },
930
+ "key": "devices[]",
931
+ "type": "section",
932
+ "title": "...Arrow Up Button",
933
+ "expandable": true,
934
+ "items": [
935
+ {
936
+ "type": "flex",
937
+ "flex-flow": "row wrap",
938
+ "title": "The key to send when the <b>(Arrow Up)</b> button is tapped on the iOS remote.<br>See the <a href=\"https://github.com/jsiegenthaler/homebridge-eosstb/wiki/KeyEvents#known-keys\">Wiki</a> for a description of all keys.",
939
+ "items": [
940
+ "devices[].arrowUpButton",
941
+ "devices[].arrowUpButtonDoubleTap"
942
+ ]
943
+ }
944
+ ]
945
+ },
946
+ {
947
+ "key": "devices[]",
948
+ "type": "section",
949
+ "title": "...Arrow Down Button",
950
+ "expandable": true,
951
+ "items": [
952
+ {
953
+ "type": "flex",
954
+ "flex-flow": "row wrap",
955
+ "title": "The key to send when the <b>(Arrow Down)</b> button is tapped on the iOS remote.<br>See the <a href=\"https://github.com/jsiegenthaler/homebridge-eosstb/wiki/KeyEvents#known-keys\">Wiki</a> for a description of all keys.",
956
+ "items": [
957
+ "devices[].arrowDownButton",
958
+ "devices[].arrowDownButtonDoubleTap"
959
+ ]
960
+ }
961
+ ]
962
+ },
963
+ {
964
+ "key": "devices[]",
965
+ "type": "section",
966
+ "title": "...Arrow Left Button",
967
+ "expandable": true,
968
+ "items": [
969
+ {
970
+ "type": "flex",
971
+ "flex-flow": "row wrap",
972
+ "title": "The key to send when the <b>(Arrow Left)</b> button is tapped on the iOS remote.<br>See the <a href=\"https://github.com/jsiegenthaler/homebridge-eosstb/wiki/KeyEvents#known-keys\">Wiki</a> for a description of all keys.",
973
+ "items": [
974
+ "devices[].arrowLeftButton",
975
+ "devices[].arrowLeftButtonDoubleTap"
976
+ ]
977
+ }
978
+ ]
979
+ },
980
+ {
981
+ "key": "devices[]",
982
+ "type": "section",
983
+ "title": "...Arrow Right Button",
984
+ "expandable": true,
985
+ "items": [
986
+ {
987
+ "type": "flex",
988
+ "flex-flow": "row wrap",
989
+ "title": "The key to send when the <b>(Arrow Right)</b> button is tapped on the iOS remote.<br>See the <a href=\"https://github.com/jsiegenthaler/homebridge-eosstb/wiki/KeyEvents#known-keys\">Wiki</a> for a description of all keys.",
990
+ "items": [
991
+ "devices[].arrowRightButton",
992
+ "devices[].arrowRightButtonDoubleTap"
993
+ ]
994
+ }
995
+ ]
996
+ },
997
+ {
998
+ "key": "devices[]",
999
+ "type": "section",
1000
+ "title": "...Select Button",
1001
+ "expandable": true,
1002
+ "items": [
1003
+ {
1004
+ "type": "flex",
1005
+ "flex-flow": "row wrap",
1006
+ "title": "The key to send when the <b>(Select)</b> button is tapped on the iOS remote.<br>See the <a href=\"https://github.com/jsiegenthaler/homebridge-eosstb/wiki/KeyEvents#known-keys\">Wiki</a> for a description of all keys.",
1007
+ "items": [
1008
+ "devices[].selectButton",
1009
+ "devices[].selectButtonDoubleTap"
1010
+ ]
1011
+ }
1012
+ ]
1013
+ },
1121
1014
 
1015
+ {
1016
+ "key": "devices[]",
1017
+ "type": "section",
1018
+ "title": "...Play/Pause Button",
1019
+ "expandable": true,
1020
+ "items": [
1021
+ {
1022
+ "type": "flex",
1023
+ "flex-flow": "row wrap",
1024
+ "title": "The key to send when the <b>(Play/Pause)</b> button is tapped on the iOS remote.<br>See the <a href=\"https://github.com/jsiegenthaler/homebridge-eosstb/wiki/KeyEvents#known-keys\">Wiki</a> for a description of all keys.",
1025
+ "items": [
1026
+ "devices[].playPauseButton",
1027
+ "devices[].playPauseButtonDoubleTap"
1028
+ ]
1029
+ }
1030
+ ]
1031
+ },
1032
+ {
1033
+ "key": "devices[]",
1034
+ "type": "section",
1035
+ "title": "...Back Button",
1036
+ "expandable": true,
1037
+ "items": [
1038
+ {
1039
+ "type": "flex",
1040
+ "flex-flow": "row wrap",
1041
+ "title": "The key to send when the <b>(BACK)</b> button is tapped on the iOS remote.<br>See the <a href=\"https://github.com/jsiegenthaler/homebridge-eosstb/wiki/KeyEvents#known-keys\">Wiki</a> for a description of all keys.",
1042
+ "items": [
1043
+ "devices[].backButton",
1044
+ "devices[].backButtonDoubleTap"
1045
+ ]
1046
+ }
1047
+ ]
1048
+ },
1049
+ {
1050
+ "key": "devices[]",
1051
+ "type": "section",
1052
+ "title": "...Info Button",
1053
+ "expandable": true,
1054
+ "items": [
1055
+ {
1056
+ "type": "flex",
1057
+ "flex-flow": "row wrap",
1058
+ "title": "The key to send when the <b>(i)</b> info button is tapped on the iOS remote.<br>See the <a href=\"https://github.com/jsiegenthaler/homebridge-eosstb/wiki/KeyEvents#known-keys\">Wiki</a> for a description of all keys.",
1059
+ "items": [
1060
+ "devices[].infoButton",
1061
+ "devices[].infoButtonDoubleTap"
1062
+ ]
1063
+ }
1064
+ ]
1065
+ },
1122
1066
 
1123
- {
1124
- "type": "fieldset",
1125
- "title": "Optional Channel Config",
1126
- "description": "Customise special channel names in this section.",
1127
- "expandable": true,
1128
- "expanded": false,
1129
- "items": [
1130
1067
  {
1131
- "key": "channels",
1132
- "type": "array",
1133
- "items": [
1134
- "channels[].channelId",
1135
- "channels[].channelKeyMacro",
1136
- "channels[].channelName"
1137
- ]
1068
+ "key": "devices[]",
1069
+ "type": "section",
1070
+ "title": "...View TV Settings Command",
1071
+ "expandable": true,
1072
+ "items": [
1073
+ {
1074
+ "type": "flex",
1075
+ "flex-flow": "row wrap",
1076
+ "title": "The key to send when <b>View TV Settings</b> is selected in the accessory in the Home app.<br>See the <a href=\"https://github.com/jsiegenthaler/homebridge-eosstb/wiki/KeyEvents#known-keys\">Wiki</a> for a description of all keys.",
1077
+ "items": ["devices[].viewTvSettingsCommand"]
1078
+ }
1079
+ ]
1138
1080
  }
1139
- ]
1081
+ ]
1082
+ },
1083
+ {
1084
+ "key": "devices[]",
1085
+ "type": "section",
1086
+ "title": "Remote Control Volume Commands",
1087
+ "expandable": true,
1088
+ "items": [
1089
+ "devices[].volUpCommand",
1090
+ "devices[].volDownCommand",
1091
+ "devices[].muteCommand"
1092
+ ]
1093
+ }
1094
+ ]
1140
1095
  }
1096
+ ]
1097
+ },
1141
1098
 
1142
- ]
1143
- }
1099
+ {
1100
+ "type": "fieldset",
1101
+ "title": "Optional Channel Config",
1102
+ "description": "Customise special channel names in this section.",
1103
+ "expandable": true,
1104
+ "expanded": false,
1105
+ "items": [
1106
+ {
1107
+ "key": "channels",
1108
+ "type": "array",
1109
+ "items": [
1110
+ "channels[].channelId",
1111
+ "channels[].channelKeyMacro",
1112
+ "channels[].channelName"
1113
+ ]
1114
+ }
1115
+ ]
1116
+ }
1117
+ ]
1118
+ }