forked from klein0r/ioBroker.lametric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathio-package.json
1502 lines (1502 loc) · 43.3 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": "lametric",
"version": "1.5.2",
"news": {
"1.5.2": {
"en": "Updated dependencies\nUpdated documentation",
"de": "Aktualisierte Abhängigkeiten\nAktualisierte Dokumentation",
"ru": "Обновленные зависимости\nОбновленная документация",
"pt": "Dependências atualizadas\nDocumentação atualizada",
"nl": "Bijgewerkte afhankelijkheden\nBijgewerkte documentatie",
"fr": "Dépendances mises à jour\nDocumentation mise à jour",
"it": "Dipendenze aggiornate\nDocumentazione aggiornata",
"es": "Dependencias actualizadas\nDocumentación actualizada",
"pl": "Zaktualizowane zależności\nZaktualizowana dokumentacja",
"zh-cn": "更新的依赖项\n更新文档"
},
"1.5.1": {
"en": "Translated all objects",
"de": "Alle Objekte übersetzt",
"ru": "Переведены все объекты",
"pt": "Todos os objetos traduzidos",
"nl": "Alle objecten vertaald",
"fr": "Traduit tous les objets",
"it": "Tradotto tutti gli oggetti",
"es": "Traducido todos los objetos",
"pl": "Przetłumaczono wszystkie obiekty",
"zh-cn": "翻译所有对象"
},
"1.5.0": {
"en": "Fixed myData DIY data type",
"de": "myData DIY Datentyp korrigiert",
"ru": "Исправлен тип данных myData DIY",
"pt": "Tipo de dados myData DIY corrigido",
"nl": "Vast myData DIY-gegevenstype",
"fr": "Type de données myData DIY fixe",
"it": "Corretto il tipo di dati myData DIY",
"es": "Se corrigió el tipo de datos myData DIY",
"pl": "Naprawiono typ danych myData DIY",
"zh-cn": "修复了 myData DIY 数据类型"
},
"1.4.1": {
"en": "Fixed missing translations",
"de": "Fehlende Übersetzungen hinzugefügt",
"ru": "Исправлены отсутствующие переводы",
"pt": "Traduções em falta corrigidas",
"nl": "Ontbrekende vertalingen verholpen",
"fr": "Correction des traductions manquantes",
"it": "Risolte le traduzioni mancanti",
"es": "Se corrigieron las traducciones faltantes",
"pl": "Naprawiono brakujące tłumaczenia",
"zh-cn": "修复了丢失的翻译"
},
"1.4.0": {
"en": "Admin 5 Support",
"de": "Admin 5 Support",
"ru": "Admin 5 Поддержка",
"pt": "Suporte Admin 5",
"nl": "Beheerder 5 Ondersteuning",
"fr": "Assistance administrateur 5",
"it": "Supporto amministratore 5",
"es": "Soporte Admin 5",
"pl": "Wsparcie administratora 5",
"zh-cn": "管理员 5 支持"
},
"1.3.2": {
"en": "Updated dependencies",
"de": "Abhängigkeiten aktualisiert",
"ru": "Обновленные зависимости",
"pt": "Dependências atualizadas",
"nl": "Bijgewerkte afhankelijkheden",
"fr": "Dépendances mises à jour",
"it": "Dipendenze aggiornate",
"es": "Dependencias actualizadas",
"pl": "Zaktualizowane zależności",
"zh-cn": "更新的依赖项"
},
"1.3.1": {
"en": "Added local start and end time for screensaver",
"de": "Lokale Start- und Endzeit vom Bildschirmschoner",
"ru": "Добавлено местное время начала и окончания для заставки",
"pt": "Adicionada hora local de início e término para o protetor de tela",
"nl": "Lokale start- en eindtijd toegevoegd voor screensaver",
"fr": "Ajout de l'heure de début et de fin locale pour l'économiseur d'écran",
"it": "Aggiunto l'ora di inizio e di fine locale per lo screensaver",
"es": "Se agregó la hora local de inicio y finalización para el protector de pantalla.",
"pl": "Dodano lokalny czas rozpoczęcia i zakończenia wygaszacza ekranu",
"zh-cn": "为屏幕保护程序添加了本地开始和结束时间"
}
},
"title": "LaMetric Time",
"titleLang": {
"en": "LaMetric Time",
"de": "LaMetric Time",
"ru": "LaMetric Time",
"pt": "LaMetric Time",
"nl": "LaMetric Time",
"fr": "LaMetric Time",
"it": "LaMetric Time",
"es": "LaMetric Time",
"pl": "LaMetric Time",
"zh-cn": "LaMetric Time"
},
"desc": {
"en": "Control and manage your LaMetric Time",
"de": "Steuere und Verwalte Deine LaMetric Time",
"ru": "Контролируйте свое время LaMetric и управляйте им",
"pt": "Controle e gerencie seu LaMetric Time",
"nl": "Beheer en beheer uw LaMetric Time",
"fr": "Contrôlez et gérez votre LaMetric Time",
"it": "Controlla e gestisci il tuo LaMetric Time",
"es": "Controle y administre su tiempo LaMetric",
"pl": "Kontroluj i zarządzaj swoim czasem LaMetric",
"zh-cn": "控制和管理您的 LaMetric 时间"
},
"authors": [
"Matthias Kleine <[email protected]>"
],
"keywords": [
"lametric",
"hardware",
"clock",
"message",
"notification"
],
"license": "MIT",
"platform": "Javascript/Node.js",
"icon": "lametric.png",
"extIcon": "https://raw.githubusercontent.com/klein0r/ioBroker.lametric/master/admin/lametric.png",
"enabled": true,
"readme": "https://github.com/klein0r/ioBroker.lametric/blob/master/README.md",
"loglevel": "info",
"mode": "daemon",
"type": "hardware",
"compact": true,
"connectionType": "local",
"dataSource": "poll",
"blockly": true,
"messagebox": true,
"adminUI": {
"config": "json"
},
"docs": {
"en": "docs/en/basics.md",
"de": "docs/de/basics.md"
},
"dependencies": [
{
"js-controller": ">=3.3.19"
}
],
"globalDependencies": [
{
"admin": ">=5.1.28"
}
],
"plugins": {
"sentry": {
"dsn": "https://[email protected]/106"
}
}
},
"protectedNative": [
"lametricToken"
],
"encryptedNative": [
"lametricToken"
],
"native": {
"lametricIp": "",
"lametricToken": "",
"useHttps": false
},
"objects": [],
"instanceObjects": [
{
"_id": "info",
"type": "channel",
"common": {
"name": {
"en": "Information",
"de": "Information",
"ru": "Информация",
"pt": "Em formação",
"nl": "Informatie",
"fr": "Informations",
"it": "Informazione",
"es": "Información",
"pl": "Informacja",
"zh-cn": "信息"
}
},
"native": {}
},
{
"_id": "info.connection",
"type": "state",
"common": {
"role": "indicator.reachable",
"name": {
"en": "Connected to LaMetric",
"de": "Verbindung mit LaMetric",
"ru": "При подключении к LaMetric",
"pt": "Se conectado ao LaMetric",
"nl": "Indien verbonden met LaMetric",
"fr": "Si connecté à LaMetric",
"it": "Se connesso a LaMetric",
"es": "Si está conectado a LaMetric",
"pl": "W przypadku połączenia z LaMetric",
"zh-cn": "如果连接到 LaMetric"
},
"type": "boolean",
"read": true,
"write": false,
"def": false
},
"native": {}
},
{
"_id": "meta",
"type": "channel",
"common": {
"role": "",
"name": {
"en": "Meta information",
"de": "Meta-Informationen",
"ru": "Мета информация",
"pt": "Meta informação",
"nl": "Meta informatie",
"fr": "Méta-information",
"it": "Meta informazioni",
"es": "Meta informacion",
"pl": "Metainformacje",
"zh-cn": "元信息"
}
},
"native": {}
},
{
"_id": "meta.name",
"type": "state",
"common": {
"name": {
"en": "Name",
"de": "Name",
"ru": "Имя",
"pt": "Nome",
"nl": "Naam",
"fr": "Nom",
"it": "Nome",
"es": "Nombre",
"pl": "Nazwa",
"zh-cn": "姓名"
},
"type": "string",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "meta.serial",
"type": "state",
"common": {
"name": {
"en": "Serial number",
"de": "Seriennummer",
"ru": "Серийный номер",
"pt": "Número de série",
"nl": "Serienummer",
"fr": "Numéro de série",
"it": "Numero di serie",
"es": "Número de serie",
"pl": "Numer seryjny",
"zh-cn": "序列号"
},
"type": "string",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "meta.version",
"type": "state",
"common": {
"name": {
"en": "OS Version",
"de": "OS-Version",
"ru": "Версия ОС",
"pt": "Versão do sistema operacional",
"nl": "OS-versie",
"fr": "Version du système d'exploitation",
"it": "Versione del sistema operativo",
"es": "Versión del sistema operativo",
"pl": "Wersja systemu operacyjnego",
"zh-cn": "操作系统版本"
},
"type": "string",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "meta.model",
"type": "state",
"common": {
"name": {
"en": "Model number",
"de": "Modell-Nr",
"ru": "Номер модели",
"pt": "Número do modelo",
"nl": "Modelnummer",
"fr": "Numéro de modèle",
"it": "Numero di modello",
"es": "Número de modelo",
"pl": "Numer modelu",
"zh-cn": "型号"
},
"type": "string",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "meta.mode",
"type": "state",
"common": {
"name": {
"en": "Device mode",
"de": "Gerätemodus",
"ru": "Режим устройства",
"pt": "Modo de dispositivo",
"nl": "Apparaatmodus:",
"fr": "Mode appareil",
"it": "Modalità dispositivo",
"es": "Modo de dispositivo",
"pl": "Tryb urządzenia",
"zh-cn": "设备模式"
},
"type": "string",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "meta.audio",
"type": "channel",
"common": {
"role": "",
"name": {
"en": "Audio",
"de": "Audio",
"ru": "Аудио",
"pt": "Áudio",
"nl": "Audio",
"fr": "l'audio",
"it": "Audio",
"es": "Audio",
"pl": "Audio",
"zh-cn": "声音的"
}
},
"native": {}
},
{
"_id": "meta.audio.volume",
"type": "state",
"common": {
"name": {
"en": "Audio volume",
"de": "Audiolautstärke",
"ru": "Громкость звука",
"pt": "Volume de áudio",
"nl": "Audiovolume",
"fr": "Volume sonore",
"it": "Volume audio",
"es": "Volumen de audio",
"pl": "Głośność dźwięku",
"zh-cn": "音量"
},
"type": "number",
"role": "level.volume",
"unit": "%",
"read": true,
"write": true
},
"native": {}
},
{
"_id": "meta.audio.volumeMin",
"type": "state",
"common": {
"name": {
"en": "Audio volume (min)",
"de": "Audiolautstärke (min)",
"ru": "Громкость звука (мин.)",
"pt": "Volume de áudio (min)",
"nl": "Audiovolume (min)",
"fr": "Volume sonore (min)",
"it": "Volume audio (min)",
"es": "Volumen de audio (min)",
"pl": "Głośność dźwięku (min)",
"zh-cn": "音频音量(分钟)"
},
"type": "number",
"role": "level.volume",
"unit": "%",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "meta.audio.volumeMax",
"type": "state",
"common": {
"name": {
"en": "Audio volume (max)",
"de": "Audiolautstärke (max.)",
"ru": "Громкость звука (макс.)",
"pt": "Volume de áudio (máximo)",
"nl": "Audiovolume (max.)",
"fr": "Volume sonore (max)",
"it": "Volume audio (massimo)",
"es": "Volumen de audio (máx.)",
"pl": "Głośność dźwięku (maks.)",
"zh-cn": "音频音量(最大)"
},
"type": "number",
"role": "level.volume",
"unit": "%",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "meta.bluetooth",
"type": "channel",
"common": {
"role": "",
"name": {
"en": "Bluetooth",
"de": "Bluetooth",
"ru": "блютуз",
"pt": "Bluetooth",
"nl": "Bluetooth",
"fr": "Bluetooth",
"it": "Bluetooth",
"es": "Bluetooth",
"pl": "Bluetooth",
"zh-cn": "蓝牙"
}
},
"native": {}
},
{
"_id": "meta.bluetooth.available",
"type": "state",
"common": {
"name": {
"en": "Bluetooth Available",
"de": "Bluetooth verfügbar",
"ru": "Bluetooth доступен",
"pt": "Bluetooth disponível",
"nl": "Bluetooth beschikbaar",
"fr": "Bluetooth disponible",
"it": "Bluetooth disponibile",
"es": "Bluetooth disponible",
"pl": "Dostępny Bluetooth",
"zh-cn": "蓝牙可用"
},
"type": "boolean",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "meta.bluetooth.name",
"type": "state",
"common": {
"name": {
"en": "Bluetooth Name",
"de": "Bluetooth-Name",
"ru": "Имя Bluetooth",
"pt": "Nome Bluetooth",
"nl": "Bluetooth-naam",
"fr": "Nom Bluetooth",
"it": "Nome Bluetooth",
"es": "Nombre de Bluetooth",
"pl": "Nazwa Bluetooth",
"zh-cn": "蓝牙名称"
},
"type": "string",
"role": "value",
"read": true,
"write": true
},
"native": {}
},
{
"_id": "meta.bluetooth.active",
"type": "state",
"common": {
"name": {
"en": "Bluetooth Active",
"de": "Bluetooth aktiv",
"ru": "Bluetooth активен",
"pt": "Bluetooth ativo",
"nl": "Bluetooth actief",
"fr": "Bluetooth actif",
"it": "Bluetooth attivo",
"es": "Bluetooth activo",
"pl": "Bluetooth aktywny",
"zh-cn": "蓝牙有源"
},
"type": "boolean",
"role": "value",
"read": true,
"write": true
},
"native": {}
},
{
"_id": "meta.bluetooth.discoverable",
"type": "state",
"common": {
"name": {
"en": "Bluetooth Discoverable",
"de": "Bluetooth erkennbar",
"ru": "Обнаружение Bluetooth",
"pt": "Bluetooth detectável",
"nl": "Bluetooth detecteerbaar",
"fr": "Bluetooth détectable",
"it": "Rilevabile Bluetooth",
"es": "Bluetooth detectable",
"pl": "Wykrywalny przez Bluetooth",
"zh-cn": "蓝牙可发现"
},
"type": "boolean",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "meta.bluetooth.pairable",
"type": "state",
"common": {
"name": {
"en": "Bluetooth Pairable",
"de": "Bluetooth koppelbar",
"ru": "Bluetooth Pairable",
"pt": "Bluetooth emparelhável",
"nl": "Bluetooth-koppelbaar",
"fr": "Bluetooth appairable",
"it": "Bluetooth abbinabile",
"es": "Bluetooth emparejable",
"pl": "Możliwość parowania przez Bluetooth",
"zh-cn": "蓝牙配对"
},
"type": "boolean",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "meta.bluetooth.address",
"type": "state",
"common": {
"name": {
"en": "Bluetooth Address",
"de": "Bluetooth-Adresse",
"ru": "Адрес Bluetooth",
"pt": "Endereço Bluetooth",
"nl": "Bluetooth-adres",
"fr": "Adresse Bluetooth",
"it": "Indirizzo Bluetooth",
"es": "Dirección de Bluetooth",
"pl": "Adres Bluetooth",
"zh-cn": "蓝牙地址"
},
"type": "string",
"role": "info.mac",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "meta.bluetooth.low_energy",
"type": "channel",
"common": {
"role": "",
"name": {
"en": "Bluetooth Low Energy",
"de": "Bluetooth Low Energy",
"ru": "Bluetooth с низким энергопотреблением",
"pt": "Bluetooth de baixa energia",
"nl": "Bluetooth lage energie",
"fr": "Bluetooth à faible consommation d'énergie",
"it": "Bluetooth a bassa energia",
"es": "Bluetooth de baja energía",
"pl": "Niska energia Bluetooth",
"zh-cn": "低功耗蓝牙"
}
},
"native": {}
},
{
"_id": "meta.bluetooth.low_energy.active",
"type": "state",
"common": {
"name": {
"en": "Bluetooth Low Energy Active",
"de": "Bluetooth Low Energy Aktiv",
"ru": "Bluetooth с низким энергопотреблением, активный",
"pt": "Bluetooth de baixa energia ativo",
"nl": "Bluetooth Lage Energie Actief",
"fr": "Bluetooth à faible consommation d'énergie actif",
"it": "Bluetooth a basso consumo energetico attivo",
"es": "Bluetooth de baja energía activo",
"pl": "Aktywny Bluetooth Low Energy",
"zh-cn": "低功耗蓝牙有源"
},
"type": "boolean",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "meta.bluetooth.low_energy.advertising",
"type": "state",
"common": {
"name": {
"en": "Bluetooth Low Energy Advertising",
"de": "Bluetooth Low Energy Auffindbar",
"ru": "Bluetooth с низким энергопотреблением",
"pt": "Publicidade de Bluetooth de baixa energia",
"nl": "Bluetooth Low Energy-advertenties",
"fr": "Publicité Bluetooth Low Energy",
"it": "Pubblicità Bluetooth a basso consumo energetico",
"es": "Publicidad Bluetooth Low Energy",
"pl": "Reklama Bluetooth o niskiej energii",
"zh-cn": "蓝牙低功耗广告"
},
"type": "boolean",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "meta.bluetooth.low_energy.connectable",
"type": "state",
"common": {
"name": {
"en": "Bluetooth Low Energy Connectable",
"de": "Bluetooth Low Energy verbindbar",
"ru": "Возможность подключения по Bluetooth с низким энергопотреблением",
"pt": "Bluetooth conectável de baixa energia",
"nl": "Bluetooth Low Energy aansluitbaar",
"fr": "Bluetooth à faible consommation d'énergie connectable",
"it": "Bluetooth a bassa energia collegabile",
"es": "Bluetooth de baja energía conectable",
"pl": "Możliwość podłączenia Bluetooth Low Energy",
"zh-cn": "蓝牙低功耗可连接"
},
"type": "boolean",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "meta.display",
"type": "channel",
"common": {
"role": "",
"name": {
"en": "Display",
"de": "Anzeige",
"ru": "Отображать",
"pt": "Exibição",
"nl": "Weergave",
"fr": "Affichage",
"it": "Schermo",
"es": "Monitor",
"pl": "Wyświetlacz",
"zh-cn": "展示"
}
},
"native": {}
},
{
"_id": "meta.display.brightness",
"type": "state",
"common": {
"name": {
"en": "Brightness",
"de": "Helligkeit",
"ru": "Яркость",
"pt": "Brilho",
"nl": "Helderheid",
"fr": "Luminosité",
"it": "Luminosità",
"es": "Brillo",
"pl": "Jasność",
"zh-cn": "亮度"
},
"type": "number",
"role": "level.dimmer",
"unit": "%",
"read": true,
"write": true
},
"native": {}
},
{
"_id": "meta.display.brightnessMin",
"type": "state",
"common": {
"name": {
"en": "Brightness Min",
"de": "Helligkeit Min",
"ru": "Яркость Мин.",
"pt": "Brilho Mín",
"nl": "Helderheid Min",
"fr": "Luminosité minimale",
"it": "Luminosità Min",
"es": "Brillo mínimo",
"pl": "Minimalna jasność",
"zh-cn": "亮度最小值"
},
"type": "number",
"role": "level.dimmer",
"unit": "%",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "meta.display.brightnessMax",
"type": "state",
"common": {
"name": {
"en": "Brightness Max",
"de": "Helligkeit Max",
"ru": "Яркость Макс.",
"pt": "Brilho máximo",
"nl": "Helderheid Max",
"fr": "Luminosité maximale",
"it": "Luminosità massima",
"es": "Brillo máximo",
"pl": "Maksymalna jasność",
"zh-cn": "最大亮度"
},
"type": "number",
"role": "level.dimmer",
"unit": "%",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "meta.display.brightnessAuto",
"type": "state",
"common": {
"name": {
"en": "Brightness Auto",
"de": "Helligkeit Auto",
"ru": "Яркость Авто",
"pt": "Brilho Automático",
"nl": "Helderheid Auto",
"fr": "Luminosité Automatique",
"it": "Luminosità automatica",
"es": "Brillo automático",
"pl": "Jasność Auto",
"zh-cn": "亮度自动"
},
"type": "boolean",
"role": "value",
"read": true,
"write": true
},
"native": {}
},
{
"_id": "meta.display.brightnessMode",
"type": "state",
"common": {
"name": {
"en": "Brightness Mode",
"de": "Helligkeitsmodus",
"ru": "Режим яркости",
"pt": "Modo de Brilho",
"nl": "Helderheidsmodus",
"fr": "Mode de luminosité",
"it": "Modalità luminosità",
"es": "Modo de brillo",
"pl": "Tryb jasności",
"zh-cn": "亮度模式"
},
"type": "string",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "meta.display.width",
"type": "state",
"common": {
"name": {
"en": "Width",
"de": "Breite",
"ru": "Ширина",
"pt": "Largura",
"nl": "Breedte",
"fr": "Largeur",
"it": "Larghezza",
"es": "Ancho",
"pl": "Szerokość",
"zh-cn": "宽度"
},
"type": "number",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "meta.display.height",
"type": "state",
"common": {
"name": {
"en": "Height",
"de": "Höhe",
"ru": "Рост",
"pt": "Altura",
"nl": "Hoogte",
"fr": "Hauteur",
"it": "Altezza",
"es": "Altura",
"pl": "Wzrost",
"zh-cn": "高度"
},
"type": "number",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "meta.display.type",
"type": "state",
"common": {
"name": {
"en": "Type",
"de": "Typ",
"ru": "Тип",
"pt": "Modelo",
"nl": "Type",
"fr": "Taper",
"it": "Tipo",
"es": "Escribe",
"pl": "Rodzaj",
"zh-cn": "类型"
},
"type": "string",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "meta.display.screensaver",
"type": "channel",
"common": {
"role": "",
"name": {
"en": "Screensaver",
"de": "Bildschirmschoner",
"ru": "Заставка",
"pt": "Protetor de tela",
"nl": "Screensaver",
"fr": "Économiseur d'écran",
"it": "Salvaschermo",
"es": "Protector de pantalla",
"pl": "Wygaszacz ekranu",
"zh-cn": "屏幕保护程序"
}
},
"native": {}
},
{
"_id": "meta.display.screensaver.enabled",
"type": "state",
"common": {
"name": {
"en": "Screensaver Enabled",
"de": "Bildschirmschoner aktiviert",
"ru": "Заставка включена",
"pt": "Protetor de tela ativado",
"nl": "Schermbeveiliging ingeschakeld",
"fr": "Économiseur d'écran activé",
"it": "Salvaschermo abilitato",
"es": "Salvapantallas habilitado",
"pl": "Włączony wygaszacz ekranu",
"zh-cn": "启用屏幕保护程序"
},
"type": "boolean",
"role": "value",
"read": true,
"write": true
},
"native": {}
},
{
"_id": "meta.display.screensaver.widget",
"type": "state",
"common": {
"name": {
"en": "Widget",
"de": "Widget",
"ru": "Виджет",
"pt": "Ferramenta",
"nl": "Widget",
"fr": "Widget",
"it": "Aggeggio",
"es": "Widget",
"pl": "Widżet",
"zh-cn": "小工具"
},
"type": "string",
"role": "value",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "meta.display.screensaver.modes",
"type": "channel",
"common": {
"role": "",
"name": {
"en": "Screensaver Modes",
"de": "Bildschirmschoner-Modi",
"ru": "Режимы заставки",
"pt": "Modos de proteção de tela",
"nl": "Schermbeveiligingsmodi",
"fr": "Modes économiseur d'écran",
"it": "Modalità salvaschermo",
"es": "Modos de salvapantallas",
"pl": "Tryby wygaszacza ekranu",
"zh-cn": "屏保模式"
}
},
"native": {}
},
{
"_id": "meta.display.screensaver.modes.timeBased",
"type": "channel",
"common": {
"role": "",
"name": {
"en": "Time Based Screensaver",
"de": "Zeitbasierter Bildschirmschoner",
"ru": "Заставка по времени",
"pt": "Time Based Screensaver",
"nl": "Op tijd gebaseerde screensaver",
"fr": "Économiseur d'écran basé sur le temps",
"it": "Salvaschermo basato sul tempo",
"es": "Salvapantallas basado en tiempo",
"pl": "Wygaszacz ekranu oparty na czasie",