-
Notifications
You must be signed in to change notification settings - Fork 5
/
app.json
1884 lines (1884 loc) · 47.2 KB
/
app.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
{
"_comment": "This file is generated. Please edit .homeycompose/app.json instead.",
"id": "sma.modbus",
"sdk": 3,
"version": "2.6.4",
"compatibility": ">=12.1.2",
"name": {
"en": "SMA Energy",
"sv": "SMA Energy"
},
"description": {
"en": "My home. My energy. Our climate.",
"sv": "Mitt hem. Min energi. Vårt klimat."
},
"category": "energy",
"tags": {
"en": [
"sma",
"inverter",
"solar",
"sunny boy",
"tripower",
"pv",
"energy",
"energy meter",
"home manager",
"modbus"
],
"sv": [
"sma",
"växelriktare",
"sol",
"solceller",
"sunny boy",
"tripower",
"energi",
"batteri",
"el",
"elmätare",
"modbus"
]
},
"author": {
"name": "Richard Barkestam",
"email": "[email protected]"
},
"contributors": {
"developers": [
{
"name": "Richard Barkestam",
"email": "[email protected]"
},
{
"name": "Jelger Haanstra",
"email": "[email protected]"
}
]
},
"contributing": {
"donate": {
"paypal": {
"username": "RBarkestam"
}
}
},
"bugs": {
"url": "https://github.com/ricott/sma.modbus/issues"
},
"source": "https://github.com/ricott/sma.modbus",
"homeyCommunityTopicId": 696,
"images": {
"large": "./assets/images/large.png",
"small": "./assets/images/small.png"
},
"brandColor": "#015a93",
"dependencies": {
"net": "*"
},
"flow": {
"triggers": [
{
"id": "inverter_condition_changed",
"title": {
"en": "Condition changed",
"nl": "Staat gewijzigd",
"sv": "Tillstånd ändrad"
},
"titleFormatted": {
"en": "Condition changed to [[inverter_condition]]",
"sv": "Tillstånd ändrades till [[inverter_condition]]"
},
"tokens": [
{
"name": "inverter_condition",
"type": "string",
"title": {
"en": "Condition",
"nl": "Staat",
"sv": "Tillstånd"
},
"example": {
"en": "Ok"
}
}
],
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=inverter"
}
]
},
{
"id": "inverter_status_changed",
"title": {
"en": "Operational Status Changed",
"nl": "Operationele status gewijzigd",
"sv": "Operationell status ändrad"
},
"titleFormatted": {
"en": "Operational status changed to [[inverter_status]]",
"sv": "Operationell status ändrades till [[inverter_status]]"
},
"tokens": [
{
"name": "inverter_status",
"type": "string",
"title": {
"en": "Operational Status",
"nl": "Operationele status",
"sv": "Operationell status"
},
"example": {
"en": "MPP"
}
}
],
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=inverter"
}
]
},
{
"id": "phase_threshold_triggered",
"title": {
"en": "Phase utilization alert",
"sv": "Fasöverbelastning"
},
"titleFormatted": {
"en": "Phase [[phase]] is utilized to [[percentageUtilized]]%",
"sv": "Fas [[phase]] är utnyttjad till [[percentageUtilized]]%"
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=energy"
}
],
"tokens": [
{
"name": "phase",
"type": "string",
"title": {
"en": "Phase",
"sv": "Fas"
},
"example": {
"en": "L1"
}
},
{
"name": "percentageUtilized",
"type": "number",
"title": {
"en": "Utilized (%)",
"sv": "Utnyttjad (%)"
},
"example": {
"en": "98"
}
}
]
},
{
"id": "changedOperationalStatus",
"title": {
"en": "Operational status changed",
"nl": "Operationele status gewijzigd",
"sv": "Operationell status ändrad"
},
"titleFormatted": {
"en": "Operational status changed to [[status]]",
"sv": "Operationell status ändrades till [[status]]"
},
"tokens": [
{
"name": "status",
"type": "string",
"title": {
"en": "Operational Status",
"nl": "Operationele status",
"sv": "Operationell status"
},
"example": "Battery Standby"
}
],
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=storage"
}
]
},
{
"id": "changedBattery",
"title": {
"en": "Battery charge changed",
"nl": "Batterij lading gewijzigd",
"sv": "Batteriladdning ändrad"
},
"titleFormatted": {
"en": "Battery charge changed to [[charge]]%",
"sv": "Batteriladdning ändrades till [[charge]]%"
},
"tokens": [
{
"name": "charge",
"type": "number",
"title": {
"en": "Battery Charge (%)",
"nl": "Batterij lading (%)",
"sv": "Batteriladdning (%)"
},
"example": 66
}
],
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=storage"
}
]
},
{
"id": "changedBatteryCharging",
"title": {
"en": "Battery charging changed (W)",
"nl": "Batterij opladen gewijzigd (W)",
"sv": "Batteriladdning ändrad (W)"
},
"titleFormatted": {
"en": "Battery charging changed to [[charging]]W",
"sv": "Batteriladdning ändrades till [[charging]]W"
},
"tokens": [
{
"name": "charging",
"type": "number",
"title": {
"en": "Battery Charging (W)",
"nl": "Batterij opladen (W)",
"sv": "Batteriladdning effekt (W)"
},
"example": 1337
}
],
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=storage"
}
]
},
{
"id": "changedBatteryDischarging",
"title": {
"en": "Battery discharging changed (W)",
"nl": "Batterij ontladen gewijzigd (W)",
"sv": "Batteriurladdning ändrad (W)"
},
"titleFormatted": {
"en": "Battery discharging changed to [[discharging]]W",
"sv": "Batteriurladdning ändrades till [[discharging]]W"
},
"tokens": [
{
"name": "discharging",
"type": "number",
"title": {
"en": "Battery Discharging (W)",
"nl": "Batterij ontladen (W)",
"sv": "Urladdning (W)"
},
"example": 187
}
],
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=storage"
}
]
},
{
"id": "changedPowerDrawn",
"title": {
"en": "Power drawn changed (W)",
"nl": "Stroom afname gewijzigd (W)",
"sv": "Effekt uttagen ändrad (W)"
},
"titleFormatted": {
"en": "Power drawn changed to [[drawn]]W",
"sv": "Effekt uttagen ändrades till [[drawn]]W"
},
"tokens": [
{
"name": "drawn",
"type": "number",
"title": {
"en": "Power Drawn (W)",
"nl": "Stroom afname (W)",
"sv": "Effekt uttagen (W)"
},
"example": 303
}
],
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=storage"
}
]
},
{
"id": "changedPowerGridFeedin",
"title": {
"en": "Powergrid feed in changed (W)",
"nl": "Vermogen netvoeding gewijzigd (W)",
"sv": "Inmatning elnät ändrad (W)"
},
"titleFormatted": {
"en": "Powergrid feed in changed [[feedin]]W",
"sv": "Inmatning elnät ändrad [[feedin]]W"
},
"tokens": [
{
"name": "feedin",
"type": "number",
"title": {
"en": "Powergrid Feed In (W)",
"nl": "Vermogen netvoeding (W)",
"sv": "Inmatning elnät (W)"
},
"example": 42
}
],
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=storage"
}
]
},
{
"id": "changedBatteryCapacity",
"title": {
"en": "Battery capacity changed (%)",
"nl": "Batterij capaciteit gewijzigd (%)",
"sv": "Batterladdning ändrad (%)"
},
"titleFormatted": {
"en": "Battery capacity changed to [[capacity]]%",
"sv": "Batterladdning ändrades till [[capacity]]%"
},
"tokens": [
{
"name": "capacity",
"type": "number",
"title": {
"en": "Battery Capacity (%)",
"nl": "Batterij capaciteit (%)",
"sv": "Batteriladdning (%)"
},
"example": 42
}
],
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=storage"
}
]
}
],
"conditions": [
{
"id": "anyPhaseUtilized",
"title": {
"en": "Any phase utilized !{{above|below}}",
"sv": "Någon fas är utnyttjad !{{över|under}}"
},
"titleFormatted": {
"en": "Any phase is utilized !{{above|below}} [[utilization]]%",
"sv": "Någon fas är utnyttjad !{{över|under}} [[utilization]]%"
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=energy"
},
{
"name": "utilization",
"type": "number",
"title": {
"en": "Utilization (%)",
"sv": "Utnyttjad (%)"
}
}
]
},
{
"id": "isInverterDailyYield",
"title": {
"en": "Daily yield is !{{|not}} above",
"sv": "Dagens produktion är !{{|inte}} mer än"
},
"titleFormatted": {
"en": "Daily yield is !{{|not}} above [[daily_yield]]",
"sv": "Dagens produktion är !{{|inte}} mer än [[daily_yield]]"
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=inverter"
},
{
"name": "daily_yield",
"type": "number",
"title": {
"en": "Daily yield (kWh)",
"sv": "Dagens produktion (kWh)"
}
}
]
},
{
"id": "isInverterStatus",
"title": {
"en": "Operational status !{{contains|doesn't contain}}",
"sv": "Operationell status innehåller !{{|inte}}"
},
"titleFormatted": {
"en": "Operational status !{{contains|doesn't contain}} [[inverter_status]]",
"sv": "Operationell status innehåller !{{|inte}} [[inverter_status]]"
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=inverter"
},
{
"name": "inverter_status",
"type": "text",
"title": {
"en": "Operational status",
"sv": "Operationell status"
}
}
]
},
{
"id": "phaseUtilized",
"title": {
"en": "A phase utilized !{{above|below}}",
"sv": "En fas är utnyttjad !{{över|under}}"
},
"titleFormatted": {
"en": "Phase [[phase]] is utilized !{{above|below}} [[utilization]]%",
"sv": "Fas [[phase]] är utnyttjad !{{över|under}} [[utilization]]%"
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=energy"
},
{
"name": "phase",
"type": "dropdown",
"values": [
{
"id": "L1",
"label": {
"en": "L1",
"sv": "L1"
}
},
{
"id": "L2",
"label": {
"en": "L2",
"sv": "L2"
}
},
{
"id": "L3",
"label": {
"en": "L3",
"sv": "L3"
}
}
]
},
{
"name": "utilization",
"type": "number",
"title": {
"en": "Utilization (%)",
"sv": "Utnyttjad (%)"
}
}
]
},
{
"id": "power_condition",
"title": {
"en": "Power is !{{below|above}}",
"sv": "Effekt är !{{under|över}}"
},
"titleFormatted": {
"en": "Power is !{{below|above}} [[power]]",
"sv": "Effekt är !{{under|över}} [[power]]"
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=inverter"
},
{
"name": "power",
"type": "number",
"title": {
"en": "Power (W)",
"sv": "Effekt (W)"
}
}
]
},
{
"id": "isOperationalStatus",
"title": {
"en": "Operational status !{{is|is not}}",
"nl": "Operationele status !{{is|is niet}}",
"sv": "Operationell status !{{är|är inte}}"
},
"titleFormatted": {
"en": "Operational status !{{is|is not}} [[status]]",
"nl": "Operationele status !{{is|is niet}} [[status]]",
"sv": "Operationell status !{{är|är inte}} [[status]]"
},
"args": [
{
"type": "device",
"name": "device",
"filter": "driver_id=storage"
},
{
"name": "status",
"type": "dropdown",
"values": [
{
"id": "303",
"label": {
"en": "Off",
"nl": "Uit",
"sv": "Off"
}
},
{
"id": "2291",
"label": {
"en": "Battery Standby",
"nl": "Batterij standby",
"sv": "Batteri standby"
}
},
{
"id": "2292",
"label": {
"en": "Battery Charging",
"nl": "Batterij opladen",
"sv": "Batteri laddas"
}
},
{
"id": "2293",
"label": {
"en": "Battery Discharging",
"nl": "Batterij ontladen",
"sv": "Batteri urladdas"
}
},
{
"id": "16777213",
"label": {
"en": "Information Not Available",
"nl": "Informatie Niet Beschikbaar",
"sv": "Information inte tillgänglig"
}
}
]
}
]
}
],
"actions": [
{
"id": "set_target_power",
"title": {
"en": "Limit the active power output",
"sv": "Begränsa den aktiva effekten"
},
"titleFormatted": {
"en": "Limit the active power output to [[power]]",
"sv": "Begränsa den aktiva effekten till [[power]]"
},
"args": [
{
"name": "power",
"type": "number",
"title": {
"en": "Power (W)",
"sv": "Effekt (W)"
},
"min": 0,
"max": 655360,
"step": 1
},
{
"name": "device",
"type": "device",
"filter": "driver_id=inverter"
}
]
}
]
},
"drivers": [
{
"name": {
"en": "Energy Meter",
"sv": "Elmätare"
},
"images": {
"large": "drivers/energy/assets/images/large.png",
"small": "drivers/energy/assets/images/small.png"
},
"class": "sensor",
"capabilities": [
"measure_power",
"measure_power.surplus",
"measure_power.L1",
"measure_current.L1",
"measure_voltage.L1",
"measure_power.L2",
"measure_current.L2",
"measure_voltage.L2",
"measure_power.L3",
"measure_current.L3",
"measure_voltage.L3",
"frequency",
"meter_power",
"meter_power.export"
],
"capabilitiesOptions": {
"measure_power": {
"title": {
"en": "Grid power",
"sv": "Uttag elnät"
}
},
"measure_power.surplus": {
"title": {
"en": "Grid feed-in",
"sv": "Inmatning elnät"
}
},
"measure_power.L1": {
"title": {
"en": "L1 power",
"sv": "L1 effekt"
}
},
"measure_current.L1": {
"title": {
"en": "L1 current",
"sv": "L1 ström"
}
},
"measure_voltage.L1": {
"title": {
"en": "L1 voltage",
"sv": "L1 spänning"
}
},
"measure_power.L2": {
"title": {
"en": "L2 power",
"sv": "L2 effekt"
}
},
"measure_current.L2": {
"title": {
"en": "L2 current",
"sv": "L2 ström"
}
},
"measure_voltage.L2": {
"title": {
"en": "L2 voltage",
"sv": "L2 spänning"
}
},
"measure_power.L3": {
"title": {
"en": "L3 power",
"sv": "L3 effekt"
}
},
"measure_current.L3": {
"title": {
"en": "L3 current",
"sv": "L3 ström"
}
},
"measure_voltage.L3": {
"title": {
"en": "L3 voltage",
"sv": "L3 spänning"
}
},
"meter_power": {
"title": {
"en": "Lifetime import",
"sv": "Livstid import"
}
},
"meter_power.export": {
"title": {
"en": "Lifetime export",
"sv": "Livstid export"
}
}
},
"energy": {
"cumulative": true,
"cumulativeImportedCapability": "meter_power",
"cumulativeExportedCapability": "meter_power.export"
},
"pair": [
{
"id": "list_devices",
"template": "list_devices",
"navigation": {
"next": "add_devices"
}
},
{
"id": "add_devices",
"template": "add_devices"
}
],
"id": "energy",
"settings": [
{
"type": "group",
"label": {
"en": "Emergy Meter settings",
"nl": "Omvormer instellingen",
"sv": "Elmätare inställningar"
},
"children": [
{
"id": "polling",
"type": "number",
"value": 5,
"step": 1,
"attr": {
"min": 2,
"max": 3600
},
"label": {
"en": "Poll interval",
"nl": "Polling",
"sv": "Uppdateringsfrekvens"
}
}
]
},
{
"type": "group",
"label": {
"en": "Load balancing",
"sv": "Lastbalansering"
},
"children": [
{
"id": "mainFuse",
"type": "number",
"value": 20,
"step": 1,
"attr": {
"min": 1,
"max": 100
},
"label": {
"en": "Main fuse (A)",
"sv": "Huvudsäkring (A)"
},
"hint": {
"en": "Main fuse of your property, typically 16, 20, 25, 32 etc.",
"sv": "Huvudsäkring för din fastighet, normalt 16, 20, 25, 32 etc."
}
},
{
"id": "threshold",
"type": "number",
"value": 95,
"step": 1,
"attr": {
"min": 1,
"max": 120
},
"label": {
"en": "Trigger threshold (%)",
"sv": "Fasbelasningslarm (%)"
},
"hint": {
"en": "At what utilization in percentage should the phase utilization alert trigger fire",
"sv": "Vid vilken utnyttjandegrad i procent skall fasbelastningslarmet triggas"
}
},
{
"id": "offset",
"type": "number",
"value": 2,
"step": 1,
"attr": {
"min": 0,
"max": 100
},
"label": {
"en": "Available current offset (A)",
"sv": "Tillgänglig ström offset (A)"
},
"hint": {
"en": "The available current is calculated from the most utilized phase vs main fuse. This offset parameter gives a possibility to decrease the available current to allow for some margin.",
"sv": "Tillgänglig ström i ampere på den mest lastade fasen mot huvudsäkringen. Denna offset ger möjlighet att minska tillgänglig ström (A) för att bygga in en marginal."
}
}
]
},
{
"type": "group",
"label": {
"en": "Information",
"nl": "Informatie",
"sv": "Information"
},
"children": [
{
"id": "serialNo",
"type": "label",
"label": {
"en": "Serial number",
"nl": "Serienummer",
"sv": "Serienummer"
},
"value": ""
},
{
"id": "swVersion",
"type": "label",
"label": {
"en": "Software version",
"nl": "Software versie",
"sv": "Mjukvaruversion"
},
"value": ""
}
]
},
{
"type": "group",
"label": {
"en": "Debug",
"nl": "Debug",
"sv": "Felsökning"
},
"children": [
{
"id": "sma_last_error",
"type": "textarea",
"label": {
"en": "Most recent SMA Error",
"nl": "Meest recente SMA-fout",
"sv": "Senaste SMA felmeddelandet"
},
"value": ""
}
]
}
]
},
{
"name": {
"en": "Inverter",
"nl": "Omvormer",
"sv": "Växelriktare"
},
"images": {
"large": "drivers/inverter/assets/images/large.png",
"small": "drivers/inverter/assets/images/small.png"
},
"class": "solarpanel",
"energy": {
"batteries": [
"INTERNAL"
]
},
"capabilities": [
"measure_battery",
"target_power",
"measure_power.battery",
"operational_status.health",
"operational_status",
"operational_status.battery",
"measure_voltage.dcA",
"measure_voltage.dcB",
"measure_power.dcA",
"measure_power.dcB",
"measure_power",
"measure_voltage",
"measure_voltage.l2",
"measure_voltage.l3",
"meter_power",
"measure_yield"
],
"capabilitiesOptions": {
"operational_status.health": {
"title": {
"en": "Condition",
"nl": "Staat",
"sv": "Tillstånd"
}
},
"measure_voltage.dcA": {
"title": {
"en": "MPP A (DC) voltage",
"sv": "MPP A (DC) spänning"
}
},
"measure_voltage.dcB": {
"title": {
"en": "MPP B (DC) voltage",
"sv": "MPP B (DC) spänning"
}
},
"measure_power.dcA": {
"title": {
"en": "MPP A (DC) power",
"sv": "MPP A (DC) effekt"
}
},
"measure_power.dcB": {
"title": {
"en": "MPP B (DC) power",
"sv": "MPP B (DC) effekt"
}
},
"measure_power": {
"title": {
"en": "Grid power",
"nl": "Netvermogen",