-
Notifications
You must be signed in to change notification settings - Fork 7
/
io-package.json
1030 lines (1020 loc) · 29.4 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": "kostal-piko-ba",
"version": "4.2.3",
"news": {
"4.2.3":{
"en": "optimize responsive design (#699)\ndependency updates",
"de": "responsives Design optimiert (#699)\nAbhängigkeitsupdates",
"ru": "оптимизация адаптивного дизайна (#699)\nобновления зависимостей",
"pt": "otimização do design responsivo (#699)\natualizações de dependências",
"nl": "responsive design geoptimaliseerd (#699)\nbijwerken van afhankelijkheden",
"fr": "optimisation du design réactif (#699)\nmises à jour des dépendances",
"it": "ottimizzazione del design reattivo (#699)\naggiornamenti delle dipendenze",
"es": "optimización del diseño responsivo (#699)\nactualizaciones de dependencias",
"pl": "optymalizacja responsywnego projektu (#699)\naktualizacje zależności",
"uk": "оптимізація адаптивного дизайну (#699)\nоновлення залежностей",
"zh-cn": "优化响应式设计 (#699)\n依赖项更新"
},
"4.2.2":{
"en": "add more Sentry triggered error handling\ncode optimization\nupdate adapter core\ndependency updates",
"de": "weitere Sentry-Fehlerbehandlungsroutinen hinzufügen\nCode-Optimierung\nAdapter-Core aktualisieren\nAbhängigkeitsaktualisierungen",
"ru": "добавить больше обработки ошибок, инициированных Sentry\nоптимизация кода\nобновить ядро адаптера\nобновление зависимостей",
"pt": "adicionar mais manipulação de erros acionados pelo Sentry\notimização de código\natualizar núcleo do adaptador\natualizações de dependências",
"nl": "meer door Sentry getriggerde foutafhandeling toevoegen\ncode-optimalisatie\nadapterkern bijwerken\nafhankelijkheidsupdates",
"fr": "ajouter plus de gestion des erreurs déclenchées par Sentry\noptimisation du code\nmettre à jour le noyau de l'adaptateur\nmises à jour des dépendances",
"it": "aggiungi più gestione degli errori attivati da Sentry\nottimizzazione del codice\naggiorna il core dell'adattatore\naggiornamenti delle dipendenze",
"es": "añadir más manejo de errores activados por Sentry\noptimización de código\nactualizar el núcleo del adaptador\nactualizaciones de dependencias",
"pl": "dodaj więcej obsługi błędów wywoływanych przez Sentry\noptymalizacja kodu\nzaktualizuj rdzeń adaptera\naktualizacje zależności",
"uk": "додати більше обробки помилок, спричинених Sentry\nоптимізація коду\nоновити ядро адаптера\nоновлення залежностей",
"zh-cn": "添加更多 Sentry 触发的错误处理\n代码优化\n更新适配器核心\n更新依赖项"
},
"4.2.1":{
"en": "add node.js 22 to the adapter testing (#666)\nupdate ioBroker testing\ndependency updates",
"de": "Node.js 22 zur Adapter-Testumgebung hinzufügen (#666)\nioBroker-Tests aktualisieren\nAbhängigkeitsaktualisierungen",
"ru": "добавить node.js 22 в тестирование адаптера (#666)\nобновить тестирование ioBroker\nобновление зависимостей",
"pt": "adicionar node.js 22 aos testes do adaptador (#666)\natualizar testes ioBroker\natualizações de dependências",
"nl": "node.js 22 toevoegen aan de adaptertests (#666)\nioBroker-testen bijwerken\nbijwerken van afhankelijkheden",
"fr": "ajouter node.js 22 aux tests de l'adaptateur (#666)\nmettre à jour les tests ioBroker\nmises à jour des dépendances",
"it": "aggiungi node.js 22 ai test dell'adattatore (#666)\naggiorna i test ioBroker\naggiornamenti delle dipendenze",
"es": "añadir node.js 22 a las pruebas del adaptador (#666)\nactualizar pruebas de ioBroker\nactualizaciones de dependencias",
"pl": "dodaj node.js 22 do testowania adaptera (#666)\naktualizuj testy ioBroker\naktualizacje zależności",
"uk": "додати node.js 22 до тестування адаптера (#666)\nоновити тестування ioBroker\nоновлення залежностей",
"zh-cn": "将 node.js 22 添加到适配器测试中 (#666)\n更新 ioBroker 测试\n更新依赖项"
},
"4.2.0":{
"en": "convert adapter to TypeScript\nswitch to ES2022 code\nrepository cleanup\ndependency updates\ncode optimizations",
"de": "Adapter auf TypeScript umstellen\nWechsel zu ES2022-Code\nRepository-Bereinigung\nAbhängigkeits-Updates\nCode-Optimierungen",
"ru": "перевести адаптер на TypeScript\nпереход на код ES2022\nочистка репозитория\nобновление зависимостей\nоптимизация кода",
"pt": "converter adaptador para TypeScript\nmudar para o código ES2022\nlimpeza do repositório\natualizações de dependências\notimizações de código",
"nl": "adapter omzetten naar TypeScript\noverschakelen naar ES2022-code\nopruiming van repository\nafhankelijkheidsupdates\ncodeoptimalisaties",
"fr": "convertir l'adaptateur en TypeScript\npassage au code ES2022\nnettoyage du dépôt\nmises à jour des dépendances\noptimisations du code",
"it": "convertire l'adattatore a TypeScript\npassaggio al codice ES2022\npulizia del repository\naggiornamenti delle dipendenze\nottimizzazioni del codice",
"es": "convertir el adaptador a TypeScript\ncambio al código ES2022\nlimpieza del repositorio\nactualizaciones de dependencias\noptimizaciones de código",
"pl": "konwersja adaptera na TypeScript\nprzejście na kod ES2022\nczyszczenie repozytorium\naktualizacje zależności\noptymalizacje kodu",
"uk": "переведення адаптера на TypeScript\nперехід на код ES2022\nочищення репозиторію\nоновлення залежностей\nоптимізація коду",
"zh-cn": "将适配器转换为 TypeScript\n切换到 ES2022 代码\n存储库清理\n依赖项更新\n代码优化"
},
"4.1.3":{
"en": "fixed vulnerability in dependency",
"de": "Schwachstelle in Abhängigkeit behoben",
"ru": "устранена уязвимость в зависимости",
"pt": "vulnerabilidade corrigida na dependência",
"nl": "kwetsbaarheid in afhankelijkheid opgelost",
"fr": "vulnérabilité corrigée dans la dépendance",
"it": "corretta vulnerabilità nella dipendenza",
"es": "vulnerabilidad solucionada en la dependencia",
"pl": "usunięto lukę w zależności",
"uk": "виправлено уразливість у залежності",
"zh-cn": "修复了依赖项中的漏洞"
},
"4.1.0":{
"en": "replaced deprecated ioBroker state calls\n*doku cleanup",
"de": "veraltete ioBroker-Zustandsaufrufe ersetzt\n*Dokumentationsbereinigung",
"ru": "заменены устаревшие вызовы состояний ioBroker\n*очистка документации",
"pt": "substituiu chamadas de estado obsoletas do ioBroker\n*limpeza de documentação",
"nl": "verouderde ioBroker-statusaanroepen vervangen\n*doku-opruiming",
"fr": "remplacement des appels d'état obsolètes de ioBroker\n*nettoyage de la documentation",
"it": "sostituito le chiamate di stato deprecate di ioBroker\n*pulizia della documentazione",
"es": "reemplazadas las llamadas de estado obsoletas de ioBroker\n*limpieza de documentación",
"pl": "zastąpiono przestarzałe wywołania stanów ioBroker\n*oczyszczenie dokumentacji",
"uk": "замінили застарілі виклики стану ioBroker\n*очищення документації",
"zh-cn": "替换了弃用的 ioBroker 状态调用\n*文档清理"
},
"4.0.0":{
"en": "BREAKING: Dropped support for Node.js 16 (#591)\nBREAKING: Minimum required js-controller version bumped to 5 (#592)\nChanged timeout settings for older Kostal inverters (#589)\nDependency updates\nAdded tests for Node.js 21\nRaised minimum poll time for daily statistics\nCode optimizations",
"de": "WICHTIG: Unterstützung für Node.js 16 eingestellt (#591)\nWICHTIG: Mindestens benötigte js-controller-Version auf 5 erhöht (#592)\nTimeout-Einstellungen für ältere Kostal-Wechselrichter geändert (#589)\nAbhängigkeitsaktualisierungen\nTests für Node.js 21 hinzugefügt\nMindestabfragezeit für tägliche Statistiken erhöht\nCode-Optimierungen",
"ru": "ВАЖНО: Прекращена поддержка Node.js 16 (#591)\nВАЖНО: Минимально требуемая версия js-controller повышена до 5 (#592)\nИзменены настройки тайм-аута для старых инверторов Kostal (#589)\nОбновления зависимостей\nДобавлены тесты для Node.js 21\nУвеличено минимальное время опроса для ежедневной статистики\nОптимизация кода",
"pt": "IMPORTANTE: Suporte para Node.js 16 removido (#591)\nIMPORTANTE: Versão mínima necessária do js-controller atualizada para 5 (#592)\nAlteradas as configurações de timeout para inversores Kostal mais antigos (#589)\nAtualizações de dependência\nAdicionados testes para o Node.js 21\nTempo mínimo de consulta aumentado para estatísticas diárias\nOtimizações de código",
"nl": "BELANGRIJK: Ondersteuning voor Node.js 16 verwijderd (#591)\nBELANGRIJK: Minimum vereiste js-controller versie verhoogd naar 5 (#592)\nTimeout-instellingen voor oudere Kostal omvormers gewijzigd (#589)\nAfhankelijkheidsupdates\nTests toegevoegd voor Node.js 21\nMinimale polltijd verhoogd voor dagelijkse statistieken\nCode-optimalisaties",
"fr": "IMPORTANT : Prise en charge de Node.js 16 abandonnée (#591)\nIMPORTANT : Version minimale requise de js-controller augmentée à 5 (#592)\nModification des paramètres de délai d'attente pour les anciens onduleurs Kostal (#589)\nMises à jour des dépendances\nAjout de tests pour Node.js 21\nAugmentation du temps minimum de sondage pour les statistiques quotidiennes\nOptimisations de code",
"it": "IMPORTANTE: Supporto per Node.js 16 eliminato (#591)\nIMPORTANTE: Versione minima richiesta di js-controller incrementata a 5 (#592)\nModificate le impostazioni di timeout per gli inverter Kostal più vecchi (#589)\nAggiornamenti delle dipendenze\nAggiunti test per Node.js 21\nAumentato il tempo minimo di interrogazione per le statistiche giornaliere\nOttimizzazioni del codice",
"es": "IMPORTANTE: Se eliminó el soporte para Node.js 16 (#591)\nIMPORTANTE: La versión mínima requerida de js-controller se elevó a 5 (#592)\nSe cambiaron las configuraciones de tiempo de espera para inversores Kostal más antiguos (#589)\nActualizaciones de dependencias\nSe agregaron pruebas para Node.js 21\nSe aumentó el tiempo mínimo de encuesta para estadísticas diarias\nOptimizaciones de código",
"pl": "WAŻNE: Wsparcie dla Node.js 16 zostało usunięte (#591)\nWAŻNE: Minimalna wymagana wersja js-controller została podniesiona do 5 (#592)\nZmienione ustawienia limitu czasu dla starszych inwerterów Kostal (#589)\nAktualizacje zależności\nDodano testy dla Node.js 21\nPodniesiono minimalny czas odpytywania dla codziennych statystyk\nOptymalizacje kodu",
"uk": "ВАЖЛИВО: Підтримка Node.js 16 припинена (#591)\nВАЖЛИВО: Мінімально потрібна версія js-controller підвищена до 5 (#592)\nЗмінено налаштування тайм-ауту для старших інверторів Kostal (#589)\nОновлення залежностей\nДодано тести для Node.js 21\nПідвищено мінімальний час опитування для щоденної статистики\nОптимізації коду",
"zh-cn": "重要: 放弃对 Node.js 16 的支持 (#591)\n重要: 最低需要的 js-controller 版本已提升至 5 (#592)\n更改了老款 Kostal 逆变器的超时设置 (#589)\n依赖项更新\n添加了对 Node.js 21 的测试\n提高了每日统计的最小轮询时间\n代码优化"
}
},
"titleLang": {
"en": "Kostal PikoBA",
"de": "Kostal PikoBA",
"ru": "Костал ПиКОБА",
"pt": "Kostal PikoBA",
"nl": "Kostal PikoBA",
"fr": "Kostal PikoBA",
"it": "Kostal PikoBA",
"es": "Kostal PikoBA",
"pl": "Kostal PikoBA",
"uk": "Kostal PikoBA",
"zh-cn": "科斯塔尔皮科巴"
},
"desc": {
"en": "Adapter for reading Kostal Piko (BA) data",
"de": "Adapter zum Lesen von Kostal Piko (BA) Daten",
"ru": "Адаптер для чтения данных Kostal Piko (BA)",
"pt": "Adaptador para leitura de dados Kostal Piko (BA)",
"nl": "Adapter voor het lezen van Kostal Piko (BA) gegevens",
"fr": "Adaptateur pour la lecture des données Kostal Piko (BA)",
"it": "Adattatore per la lettura dei dati Kostal Piko (BA)",
"es": "Adaptador para leer datos de Kostal Piko (BA)",
"pl": "Adapter do odczytu danych Kostal Piko (BA)",
"uk": "Адаптер для читання даних Костал Піко (BA)",
"zh-cn": "阅读Kostal Piko BA数据"
},
"authors": [
"Hombach <kostal-piko-ba@homba.ch>"
],
"keywords": [
"Kostal",
"Piko",
"Piko-BA",
"Piko MP",
"Piko MP plus",
"inverter",
"solar"
],
"licenseInformation": {
"license": "MIT",
"type": "free"
},
"platform": "Javascript/Node.js",
"icon": "picoba.png",
"enabled": true,
"extIcon": "https://raw.githubusercontent.com/Hombach/ioBroker.kostal-piko-ba/master/admin/picoba.png",
"readme": "https://github.com/Hombach/ioBroker.kostal-piko-ba/blob/master/README.md",
"loglevel": "info",
"tier": 2,
"mode": "daemon",
"messagebox": true,
"allowInit": true,
"type": "energy",
"compact": true,
"connectionType": "local",
"dataSource": "poll",
"adminUI": {
"config": "json"
},
"dependencies": [
{
"js-controller": ">=5.0.19"
}
],
"globalDependencies": [
{
"admin": ">=5.1.28"
}
],
"plugins": {
"sentry": {
"dsn": "https://8d5efc328e36ebb90292e20d5e1be95b@o415875.ingest.sentry.io/4505778454134784"
}
},
"supportCustoms": false
},
"native": {
"ipaddress": "",
"polltimelive": 10000,
"polltimedaily": 60000,
"polltimetotal": 200000,
"readanalogs": false,
"readbattery": true,
"normAn1Max": 10,
"normAn1Min": 0,
"normAn2Max": 10,
"normAn2Min": 0,
"normAn3Max": 10,
"normAn3Min": 0,
"normAn4Max": 10,
"normAn4Min": 0
},
"objects": [],
"instanceObjects": [
{
"_id": "info",
"type": "channel",
"common": {
"name": "Information"
},
"native": {}
},
{
"_id": "info.connection",
"type": "state",
"common": {
"role": "indicator.connected",
"name": "Device or service connected",
"type": "boolean",
"read": true,
"write": false,
"def": false
},
"native": {}
},
{
"_id": "State",
"type": "state",
"common": {
"role": "value.state",
"name": "Inverter state; 0:off; 3:feed grid(MPP)",
"type": "number",
"unit": "",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "StateAsString",
"type": "state",
"common": {
"role": "info.status",
"name": "Inverter state string",
"type": "string",
"unit": "",
"read": true,
"write": false,
"def": "unknown"
},
"native": {}
},
{
"_id": "GridLimitation",
"type": "state",
"common": {
"role": "value",
"name": "Power limit of inverter by grid parameters",
"type": "number",
"unit": "%",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "LastSentryLogDay",
"type": "state",
"common": {
"role": "value",
"name": "Last day of month for Sentry log",
"type": "number",
"unit": "",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "LastSentryLoggedError",
"type": "state",
"common": {
"role": "value",
"name": "Last error sent by Sentry log",
"type": "string",
"unit": "",
"read": true,
"write": false,
"def": "unknown"
},
"native": {}
},
{
"_id": "Info",
"type": "channel",
"common": { "name": "general inverter information" },
"native": {}
},
{
"_id": "Info.InverterName",
"type": "state",
"common": {
"role": "value",
"name": "Inverter name",
"type": "string",
"unit": "",
"read": true,
"write": false,
"def": "unknown"
},
"native": {}
},
{
"_id": "Info.InverterType",
"type": "state",
"common": {
"role": "value",
"name": "Inverter type",
"type": "string",
"unit": "",
"read": true,
"write": false,
"def": "unknown"
},
"native": {}
},
{
"_id": "Info.InverterUIVersion",
"type": "state",
"common": {
"role": "value",
"name": "Inverter UI version",
"type": "string",
"unit": "",
"read": true,
"write": false,
"def": "unknown"
},
"native": {}
},
{
"_id": "Power",
"type": "channel",
"common": { "name": "current inverter power data" },
"native": {}
},
{
"_id": "Power.GridAC",
"type": "state",
"common": {
"role": "value.power",
"name": "Grid output power excluding battery charging",
"type": "number",
"unit": "W",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Power.SolarDC",
"type": "state",
"common": {
"role": "value.power",
"name": "Total solar input power",
"type": "number",
"unit": "W",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Power.DC1Power",
"type": "state",
"common": {
"role": "value.power",
"name": "Solar input power 1",
"type": "number",
"unit": "W",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Power.DC1Current",
"type": "state",
"common": {
"role": "value.current",
"name": "Solar input current 1",
"type": "number",
"unit": "A",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Power.DC1Voltage",
"type": "state",
"common": {
"role": "value.voltage",
"name": "Solar input voltage 1",
"type": "number",
"unit": "V",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Power.DC2Power",
"type": "state",
"common": {
"role": "value.power",
"name": "Solar input power 2",
"type": "number",
"unit": "W",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Power.DC2Current",
"type": "state",
"common": {
"role": "value.current",
"name": "Solar input current 2",
"type": "number",
"unit": "A",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Power.DC2Voltage",
"type": "state",
"common": {
"role": "value.voltage",
"name": "Solar input voltage 2",
"type": "number",
"unit": "V",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Power.DC3Power",
"type": "state",
"common": {
"role": "value.power",
"name": "Solar input power 3",
"type": "number",
"unit": "W",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Power.DC3Current",
"type": "state",
"common": {
"role": "value.current",
"name": "Solar input current 3",
"type": "number",
"unit": "A",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Power.DC3Voltage",
"type": "state",
"common": {
"role": "value.voltage",
"name": "Solar input voltage 3",
"type": "number",
"unit": "V",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Power.SelfConsumption",
"type": "state",
"common": {
"role": "value.power.consumption",
"name": "Selfconsumption Power",
"type": "number",
"unit": "W",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Power.HouseConsumption",
"type": "state",
"common": {
"role": "value.power.consumption",
"name": "Powerconsumption of house",
"type": "number",
"unit": "W",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Power.HouseConsumptionPhase1",
"type": "state",
"common": {
"role": "value.power.consumption",
"name": "Powerconsumption of house on phase 1",
"type": "number",
"unit": "W",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Power.HouseConsumptionPhase2",
"type": "state",
"common": {
"role": "value.power.consumption",
"name": "Powerconsumption of house on phase 2",
"type": "number",
"unit": "W",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Power.HouseConsumptionPhase3",
"type": "state",
"common": {
"role": "value.power.consumption",
"name": "Powerconsumption of house on phase 3",
"type": "number",
"unit": "W",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Power.Surplus",
"type": "state",
"common": {
"role": "value.power",
"name": "Power surplus of system",
"type": "number",
"unit": "W",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Power.AC1Power",
"type": "state",
"common": {
"role": "value.power",
"name": "Grid output power phase 1",
"type": "number",
"unit": "W",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Power.AC1Current",
"type": "state",
"common": {
"role": "value.current",
"name": "Grid output current phase 1",
"type": "number",
"unit": "A",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Power.AC1Voltage",
"type": "state",
"common": {
"role": "value.voltage",
"name": "Grid voltage phase 1",
"type": "number",
"unit": "V",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Power.AC2Power",
"type": "state",
"common": {
"role": "value.power",
"name": "Grid output power phase 2",
"type": "number",
"unit": "W",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Power.AC2Current",
"type": "state",
"common": {
"role": "value.current",
"name": "Grid output current phase 2",
"type": "number",
"unit": "A",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Power.AC2Voltage",
"type": "state",
"common": {
"role": "value.voltage",
"name": "Grid voltage phase 2",
"type": "number",
"unit": "V",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Power.AC3Power",
"type": "state",
"common": {
"role": "value.power",
"name": "Grid output power phase 3",
"type": "number",
"unit": "W",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Power.AC3Current",
"type": "state",
"common": {
"role": "value.current",
"name": "Grid output current phase 3",
"type": "number",
"unit": "A",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Power.AC3Voltage",
"type": "state",
"common": {
"role": "value.voltage",
"name": "Grid voltage phase 3",
"type": "number",
"unit": "V",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Statistics_Daily",
"type": "channel",
"common": { "name": "statistical data daily" },
"native": {}
},
{
"_id": "Statistics_Daily.Yield",
"type": "state",
"common": {
"role": "value",
"name": "Total yield today",
"type": "number",
"unit": "kWh",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Statistics_Daily.HouseConsumption",
"type": "state",
"common": {
"role": "value.power.consumption",
"name": "Total consumption house today",
"type": "number",
"unit": "kWh",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Statistics_Daily.SelfConsumption",
"type": "state",
"common": {
"role": "value.power.consumption",
"name": "Total selfconsumption today",
"type": "number",
"unit": "kWh",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Statistics_Daily.SelfConsumptionRate",
"type": "state",
"common": {
"role": "value",
"name": "Rate of selfconsumption today",
"type": "number",
"unit": "%",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Statistics_Daily.Autarky",
"type": "state",
"common": {
"role": "value",
"name": "Degree of autarky today",
"type": "number",
"unit": "%",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Statistics_Total",
"type": "channel",
"common": { "name": "statistical data total lifetime" },
"native": {}
},
{
"_id": "Statistics_Total.OperatingTime",
"type": "state",
"common": {
"role": "value.time",
"name": "Total time of inverter operation",
"type": "number",
"unit": "h",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Statistics_Total.Yield",
"type": "state",
"common": {
"role": "value",
"name": "Total yield of inverter lifetime",
"type": "number",
"unit": "kWh",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Statistics_Total.HouseConsumption",
"type": "state",
"common": {
"role": "value.power.consumption",
"name": "Total consumption of house in inverter lifetime",
"type": "number",
"unit": "kWh",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Statistics_Total.SelfConsumption",
"type": "state",
"common": {
"role": "value.power.consumption",
"name": "Total selfconsumption in inverter lifetime",
"type": "number",
"unit": "kWh",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Statistics_Total.SelfConsumptionRate",
"type": "state",
"common": {
"role": "value",
"name": "Rate of selfconsumption in inverter lifetime",
"type": "number",
"unit": "%",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Statistics_Total.Autarky",
"type": "state",
"common": {
"role": "value",
"name": "Degree of autarky in inverter lifetime",
"type": "number",
"unit": "%",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Battery",
"type": "channel",
"common": { "name": "Battery data" },
"native": {}
},
{
"_id": "Battery.Temperature",
"type": "state",
"common": {
"role": "value.temperature",
"name": "Battery Temperature",
"type": "number",
"unit": "°C",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Battery.SoC",
"type": "state",
"common": {
"role": "value.battery",
"name": "Battery State of Charge",
"type": "number",
"unit": "%",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Battery.Current",
"type": "state",
"common": {
"role": "value.current",
"name": "Battery current; <0 => charge; >0 => discharge",
"type": "number",
"unit": "A",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Battery.Voltage",
"type": "state",
"common": {
"role": "value.voltage",
"name": "Battery voltage",
"type": "number",
"unit": "V",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Battery.Power",
"type": "state",
"common": {
"role": "value.power",
"name": "Battery power; <0 => charge; >0 => discharge",
"type": "number",
"unit": "W",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Battery.ChargeCycles",
"type": "state",
"common": {
"role": "value.count",
"name": "Battery Full Charge Cycles",
"type": "number",
"unit": "",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Inputs",
"type": "channel",
"common": { "name": "Input values" },
"native": {}
},
{
"_id": "Inputs.Analog1",
"type": "state",
"common": {
"role": "value.voltage",
"name": "Analog input 1 voltage",
"type": "number",
"unit": "V",
"read": true,
"write": false,
"def": 0
},
"native": {}
},
{
"_id": "Inputs.Analog2",
"type": "state",
"common": {
"role": "value.voltage",
"name": "Analog input 2 voltage",
"type": "number",
"unit": "V",
"read": true,
"write": false,
"def": 0
},
"native": {}
},