-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
io-package.json
1672 lines (1672 loc) · 52.7 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": "3.4.1",
"news": {
"3.4.1": {
"en": "Limit frame duration to 10 seconds (limited by LaMetric)",
"de": "Rahmendauer auf 10 Sekunden (begrenzt durch LaMetric)",
"ru": "Ограничение рамы до 10 секунд (ограничено LaMetric)",
"pt": "Limitar a duração do quadro a 10 segundos (limitado por LaMetric)",
"nl": "Beperk frame duur tot 10 seconden (beperkt door LaMetric)",
"fr": "Limiter la durée du cadre à 10 secondes (limitée par LaMetric)",
"it": "Durata della cornice di limite a 10 secondi (limitata da LaMetric)",
"es": "Duración límite del marco a 10 segundos (limitado por LaMetric)",
"pl": "Ograniczenie czasu trwania ramki do 10 sekund (ograniczone przez LaMetric)",
"uk": "Тривалість ліміту до 10 секунд (обмежена LaMetric)",
"zh-cn": "将帧长度限制为 10 秒( 受 LaMetric 限制)"
},
"3.4.0": {
"en": "Updated LaMetric firmware version recommendation to 2.3.9 (3.1.2)\nAdded support for notification manager\nAdded validator for icon inputs\nFixed some missing translations",
"de": "Aktualisierte LaMetric Firmwareversion Empfehlung auf 2.3.9 (3.1.2)\nUnterstützung für Benachrichtigungsmanager hinzugefügt\nValidator für Icon-Eingänge hinzugefügt\nEinige fehlende Übersetzungen behoben",
"ru": "Обновленная рекомендация LaMetric прошивки к 2.3.9 (3.1.2)\nДополнительная поддержка администратора уведомлений\nДобавлен валидатор для входных знаков\nИсправлены некоторые недостающие переводы",
"pt": "Recomendação de versão de firmware LaMetric atualizada para 2.3.9 (3.1.2)\nAdicionado suporte para o gerenciador de notificações\nAdicionado validador para entradas de ícone\nCorrigido algumas traduções em falta",
"nl": "Bijgewerkt LaMetric firmware versie aanbeveling aan 2.3.9 (3.1.2)\nOndersteuning voor notificatiebeheer toegevoegd\nToegevoegde validator voor pictograminvoer\nEnkele ontbrekende vertalingen hersteld",
"fr": "Mise à jour de la recommandation de version du firmware LaMetric à 2.3.9 (3.1.2)\nSoutien supplémentaire au gestionnaire de notification\nAjout du validateur pour les entrées d'icônes\nCorrection de certaines traductions manquantes",
"it": "Raccomandazione di versione firmware LaMetric aggiornata a 2.3.9 (3.1.2)\nAggiunto supporto per il gestore di notifica\nAggiunto validatore per ingressi icona\nRisolto alcune traduzioni mancanti",
"es": "Recomendación actualizada de la versión de firmware de LaMetric (3.1.2)\nApoyo adicional para el administrador de notificación\nAgregado validador para entradas de icono\nArreglado algunas traducciones faltantes",
"pl": "Aktualizacja rekomendacji LaMetric firmware wersja do 2.3.9 (3.1.2)\nDodano wsparcie dla menedżera powiadomień\nDodano walidator dla wejść ikon\nNaprawiono kilka brakujących tłumaczeń",
"uk": "Оновлено рекомендацію прошивки LaMetric до 2.3.9 (3.1.2)\nДодано підтримку менеджера повідомлень\nДодано валідатор для вхідних іконок\nВиправлено деякі відсутні переклади",
"zh-cn": "更新后的 LaMetric 固件版本建议为2.3.9(3.1.2)\n添加对通知管理器的支持\n图标输入添加验证符\n修复一些缺失的翻译"
},
"3.3.0": {
"en": "Added api version as state (and check value)",
"de": "Api-Version als Zustand hinzugefügt (und Prüfwert)",
"ru": "Добавлена версия api как состояние (и значение проверки)",
"pt": "Adicionado api versão como estado (e valor de verificação)",
"nl": "Toegevoegd api-versie als status (en controlewaarde)",
"fr": "Ajout de la version api comme état (et vérifier la valeur)",
"it": "Aggiunto versione api come stato (e il valore di controllo)",
"es": "Añadido api versión como estado (y valor de comprobación)",
"pl": "Dodano wersję api jako stan (i wartość kontrolna)",
"uk": "Додано версію api як стан (і значення перевірки)",
"zh-cn": "添加的 api 版本为状态( 并检查值)"
},
"3.2.3": {
"en": "Fixed blockly definitions",
"de": "Feste blockweise Definitionen",
"ru": "Исправленные блокированные определения",
"pt": "Definições bloqueadas fixas",
"nl": "Vaste blokdefinities",
"fr": "Définition par blocs",
"it": "Definizioni bloccate fissate",
"es": "Definiciones bloqueadas fijas",
"pl": "Poprawione definicje blokowane",
"uk": "Фіксовані визначення блоків",
"zh-cn": "固定的区块定义"
},
"3.2.2": {
"en": "Updated LaMetric firmware version recommendation to 2.3.9 (3.1.1)",
"de": "Aktualisierte LaMetric Firmwareversion Empfehlung auf 2.3.9 (3.1.1)",
"ru": "Обновленная рекомендация LaMetric прошивки к 2.3.9 (3.1.1)",
"pt": "Recomendação de versão de firmware LaMetric atualizada para 2.3.9 (3.1.1)",
"nl": "Bijgewerkte LaMetric firmware versie aanbeveling naar 2.3.9 (3.1.1)",
"fr": "Mise à jour de la recommandation de version du firmware LaMetric à 2.3.9 (3.1.1)",
"it": "Raccomandazione di versione firmware LaMetric aggiornata a 2.3.9 (3.1.1)",
"es": "Recomendación actualizada de la versión de firmware de LaMetric (3.1.1)",
"pl": "Aktualizacja rekomendacji LaMetric firmware wersja do 2.3.9 (3.1.1)",
"uk": "Оновлено рекомендацію прошивки LaMetric до 2.3.9 (3.1.1)",
"zh-cn": "更新后的 LaMetric 固件版建议为2.3.9(3.1.1)"
},
"3.2.1": {
"en": "Updated LaMetric firmware version recommendation to 2.3.8 (3.1.0)\nUpdated dependencies",
"de": "Aktualisierte LaMetric Firmware-Versionsempfehlung auf 2.3.8 (3.1.0)\nAktualisierte Abhängigkeiten",
"ru": "(@klein0r)\nОбновленные зависимости",
"pt": "Recomendação atualizada da versão de firmware LaMetric para 2.3.8 (3.1.0)\nDependências atualizadas",
"nl": "Bijgewerkte LaMetric firmware versie aanbeveling naar 2.3.8 (3.10.0)\nBijgewerkte afhankelijkheden",
"fr": "Mise à jour de la recommandation du firmware LaMetric à 2.3.8 (3.1.0)\nDépendances actualisées",
"it": "Raccomandazione della versione firmware LaMetric aggiornata a 2.3.8 (3.1.0)\nDipendenze aggiornate",
"es": "Recomendación actualizada de la versión de firmware de LaMetric (3.1.0)\nDependencias actualizadas",
"pl": "(@ klein0r) Aktualizacja rekomendacji LaMetric firmware wersja do 2.3.8 (3.1.0)\n(@ klein0r) Aktualizacja zależności",
"uk": "Оновлено рекомендацію версії прошивки LaMetric до 2.3.8 (3.1.0)\nОновлені залежності",
"zh-cn": "更新后的 LaMetric 固件版本建议为2.3.8 (3.1.0)\n(韩语). 更新的依赖关系"
},
"3.2.0": {
"en": "NodeJS >= 18.x and js-controller >= 5 is required\n\n* Fixed Blockly definitions (removed warnings)",
"de": "NodeJS >= 18.x und js-Controller >= 5 ist erforderlich\n\n* Feste Blockdefinitionen (entfernte Warnungen)",
"ru": "NodeJS >= 18.x и js-контроллер >= 5 требуется\n\n* Исправленные блокированные определения (удаленные предупреждения)",
"pt": "NodeJS >= 18.x e js-controller >= 5 é necessário\n\n* Definições bloqueadas fixas (avisões remotas)",
"nl": "Voor de toepassing van de onderverdelingen 870190 tot en met 870290 wordt onder post 8702 verstaan: 5 is vereist\n\n* Vaste blokdefinities (verwijderde waarschuwingen)",
"fr": "NodeJS >= 18.x et js-controller >= 5 est nécessaire\n\n* Définitions fixes par blocs (avertissements supprimés)",
"it": "NodeJS >= 18.x e js-controller 5 è richiesto\n\n* Definizioni Bloccate Fisse (avviso rimosso)",
"es": "NodeJS >= 18.x y js-controller Se requiere 5\n\n* Definiciones limitadas (removidas advertencias)",
"pl": "NodeJS > = 18.x i kontroler js- > = 5 jest wymagane\n\n* Poprawione definicje Blockly (usunięte ostrzeżenia)",
"uk": "NodeJS >= 18.x та js-controller >= 5 обов'язково\n\n* Виправлені помилкові визначення (виділені попередження)",
"zh-cn": "节点JS18x和js控制器QQ 需要5个\n\n* 固定块定义(撤消警告)"
}
},
"titleLang": {
"en": "LaMetric",
"de": "LaMetric",
"ru": "LaMetric",
"pt": "LaMetric",
"nl": "LaMetric",
"fr": "LaMetric",
"it": "LaMetric",
"es": "LaMetric",
"pl": "LaMetric",
"uk": "LaMetric",
"zh-cn": "LaMetric"
},
"desc": {
"en": "Control and manage your LaMetric device",
"de": "Steuerung und Verwaltung Deines LaMetric Geräts",
"ru": "Управление и управление вашим LaMetric устройством",
"pt": "Controlar e gerenciar seu dispositivo LaMetric",
"nl": "Uw LaMetric-apparaat bedienen en beheren",
"fr": "Contrôlez et gérez votre appareil LaMetric",
"it": "Controllare e gestire il dispositivo LaMetric",
"es": "Controla y gestiona tu dispositivo LaMetric",
"pl": "Sterowanie urządzeniem LaMetric i zarządzanie nim",
"uk": "Управління та управління пристроєм LaMetric",
"zh-cn": "控制并管理您的 LaMetric 设备"
},
"authors": [
"Matthias Kleine <info@haus-automatisierung.com>"
],
"keywords": [
"lametric",
"hardware",
"clock",
"message",
"notification"
],
"tier": 3,
"licenseInformation": {
"license": "MIT",
"type": "free"
},
"platform": "Javascript/Node.js",
"icon": "lametric.png",
"extIcon": "https://raw.githubusercontent.com/klein0r/ioBroker.lametric/master/admin/lametric.png",
"enabled": false,
"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,
"supportedMessages": {
"custom": true,
"notifications": true
},
"webExtension": "lib/web.js",
"adminUI": {
"config": "json"
},
"docs": {
"en": [
"docs/en/README.md",
"docs/en/apps.md",
"docs/en/my-data-diy.md",
"docs/en/notifications.md",
"docs/en/blockly.md"
],
"de": [
"docs/de/README.md",
"docs/de/apps.md",
"docs/de/my-data-diy.md",
"docs/de/notifications.md",
"docs/de/blockly.md"
]
},
"dependencies": [
{
"js-controller": ">=5.0.19"
}
],
"globalDependencies": [
{
"admin": ">=6.0.0"
}
],
"plugins": {
"sentry": {
"dsn": "https://e3a7f6c5e3984bc1819c3e5f67a0257d@sentry.iobroker.net/106"
}
}
},
"protectedNative": [
"lametricToken"
],
"encryptedNative": [
"lametricToken"
],
"native": {
"lametricIp": "",
"lametricToken": "",
"useHttps": false,
"mydatadiy": [],
"type": "push",
"webInstance": ""
},
"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",
"uk": "Інформація",
"zh-cn": "信息"
}
},
"native": {}
},
{
"_id": "info.connection",
"type": "state",
"common": {
"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",
"uk": "Підключається до LaMetric",
"zh-cn": "如果连接到 LaMetric"
},
"role": "indicator.reachable",
"type": "boolean",
"read": true,
"write": false,
"def": false
},
"native": {}
},
{
"_id": "meta",
"type": "channel",
"common": {
"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",
"uk": "Мета",
"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",
"uk": "Ім'я",
"zh-cn": "姓名"
},
"type": "string",
"role": "text",
"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",
"uk": "Серійний номер",
"zh-cn": "序列号"
},
"type": "string",
"role": "text",
"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",
"uk": "Версія OS",
"zh-cn": "操作系统版本"
},
"type": "string",
"role": "text",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "meta.versionUpdate",
"type": "state",
"common": {
"name": {
"en": "OS Version available for update",
"de": "OS Version verfügbar für Update",
"ru": "Версия ОС доступна для обновления",
"pt": "Versão do sistema operacional disponível para atualização",
"nl": "OS Version beschikbaar voor update",
"fr": "Version OS disponible pour la mise à jour",
"it": "Versione OS disponibile per l'aggiornamento",
"es": "Versión OS disponible para actualización",
"pl": "Wersja OS dostępna dla aktualizacji",
"uk": "Версія OS доступна для оновлення",
"zh-cn": "OS Version available for最新情况"
},
"type": "string",
"role": "text",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "meta.versionApi",
"type": "state",
"common": {
"name": {
"en": "API version",
"de": "API-Version",
"ru": "API",
"pt": "Versão API",
"nl": "API-versie",
"fr": "Version de l'API",
"it": "Versione API",
"es": "Versión API",
"pl": "Wersja API",
"uk": "Версія API",
"zh-cn": "API 版本"
},
"type": "string",
"role": "text",
"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",
"uk": "Номер моделі",
"zh-cn": "型号"
},
"type": "string",
"role": "text",
"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",
"uk": "Режим пристрою",
"zh-cn": "设备模式"
},
"type": "string",
"role": "text",
"read": true,
"write": true,
"states": {
"manual": "manual",
"auto": "auto",
"schedule": "schedule",
"kiosk": "kiosk"
}
},
"native": {}
},
{
"_id": "meta.audio",
"type": "channel",
"common": {
"name": {
"en": "Audio",
"de": "Audio",
"ru": "Аудио",
"pt": "Áudio",
"nl": "Audio",
"fr": "l'audio",
"it": "Audio",
"es": "Audio",
"pl": "Audio",
"uk": "Аудіо",
"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",
"uk": "Аудіо об'єм",
"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)",
"uk": "Аудіо об'єм (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.)",
"uk": "Аудіо об'єм (max)",
"zh-cn": "音频音量(最大)"
},
"type": "number",
"role": "level.volume",
"unit": "%",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "meta.bluetooth",
"type": "channel",
"common": {
"name": {
"en": "Bluetooth",
"de": "Bluetooth",
"ru": "блютуз",
"pt": "Bluetooth",
"nl": "Bluetooth",
"fr": "Bluetooth",
"it": "Bluetooth",
"es": "Bluetooth",
"pl": "Bluetooth",
"uk": "Билетень",
"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",
"uk": "Bluetooth Доступний",
"zh-cn": "蓝牙可用"
},
"type": "boolean",
"role": "indicator",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "meta.bluetooth.name",
"type": "state",
"common": {
"name": {
"en": "Bluetooth name",
"de": "Bluetooth-Name",
"ru": "Имя Bluetooth",
"pt": "Nome de Bluetooth",
"nl": "Bluetooth naam",
"fr": "Nom Bluetooth",
"it": "Nome Bluetooth",
"es": "Nombre Bluetooth",
"pl": "Nazwa Bluetooth",
"uk": "Назва Bluetooth",
"zh-cn": "蓝牙名称"
},
"type": "string",
"role": "text",
"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": "Aktywny Bluetooth",
"uk": "Активний Bluetooth",
"zh-cn": "蓝牙活动"
},
"type": "boolean",
"role": "switch.enable",
"read": true,
"write": true
},
"native": {}
},
{
"_id": "meta.bluetooth.discoverable",
"type": "state",
"common": {
"name": {
"en": "Bluetooth discoverable",
"de": "Bluetooth auffindbar",
"ru": "Обнаружение Bluetooth",
"pt": "Descoberta de Bluetooth",
"nl": "Bluetooth te ontdekken",
"fr": "Bluetooth découvrable",
"it": "Bluetooth scoperto",
"es": "Bluetooth descubierta",
"pl": "Odkrywalny Bluetooth",
"uk": "Bluetooth відкрив",
"zh-cn": "蓝牙可发现"
},
"type": "boolean",
"role": "indicator",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "meta.bluetooth.pairable",
"type": "state",
"common": {
"name": {
"en": "Bluetooth pairable",
"de": "Bluetooth paarbar",
"ru": "Bluetooth pairable",
"pt": "Bluetooth emparelhado",
"nl": "Bluetooth-paarbaar",
"fr": "Jumelage Bluetooth",
"it": "Compatibile con Bluetooth",
"es": "Bluetooth parable",
"pl": "Bluetooth",
"uk": "Bluetooth парний",
"zh-cn": "蓝牙配对"
},
"type": "boolean",
"role": "indicator",
"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 Bluetooth",
"pl": "Adres Bluetooth",
"uk": "Адреса Bluetooth",
"zh-cn": "蓝牙地址"
},
"type": "string",
"role": "info.mac",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "meta.bluetooth.low_energy",
"type": "channel",
"common": {
"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",
"uk": "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 Low Energy",
"pt": "Bluetooth baixa energia ativa",
"nl": "Bluetooth Low Energy actief",
"fr": "Bluetooth Low Energy active",
"it": "Bluetooth Low Energy attivo",
"es": "Bluetooth Low Energy activo",
"pl": "Aktywność Bluetooth Low Energy",
"uk": "Bluetooth Низька енергія Активний",
"zh-cn": "蓝牙低能活动"
},
"type": "boolean",
"role": "indicator",
"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 Low Energy",
"pt": "Bluetooth publicidade de baixa energia",
"nl": "Bluetooth Low Energy-reclame",
"fr": "Publicité Bluetooth basse énergie",
"it": "Pubblicità Bluetooth Low Energy",
"es": "Publicidad Bluetooth Low Energy",
"pl": "Reklama Bluetooth Low Energy",
"uk": "Bluetooth Low Energy реклама",
"zh-cn": "蓝牙低能广告"
},
"type": "boolean",
"role": "indicator",
"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 Low Energy",
"pt": "Bluetooth de baixa energia conecável",
"nl": "Bluetooth lage energie aansluitbaar",
"fr": "Connexion Bluetooth basse énergie",
"it": "Connessione Bluetooth Low Energy",
"es": "Bluetooth Low Energy conectado",
"pl": "Połączenia Bluetooth Low Energy",
"uk": "Bluetooth Low Energy підключений",
"zh-cn": "蓝牙低能连接"
},
"type": "boolean",
"role": "indicator",
"read": true,
"write": false
},
"native": {}
},
{
"_id": "meta.display",
"type": "channel",
"common": {
"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": "switch.enable",
"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": "state",
"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": "text",
"read": true,
"write": false
},