iobroker.senec 1.6.14 → 1.6.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -31
- package/admin/jsonConfig.json +144 -68
- package/io-package.json +20 -69
- package/package.json +17 -16
package/README.md
CHANGED
|
@@ -299,6 +299,9 @@ This channel contains values polled from SENEC App-API.
|
|
|
299
299
|
|
|
300
300
|
## Changelog
|
|
301
301
|
|
|
302
|
+
### 1.6.15
|
|
303
|
+
* Maintenance update (dependencies, ...)
|
|
304
|
+
|
|
302
305
|
### 1.6.14
|
|
303
306
|
* Bugfix (values were way off)
|
|
304
307
|
|
|
@@ -323,37 +326,6 @@ This channel contains values polled from SENEC App-API.
|
|
|
323
326
|
* Improved handling of forced loading (please report if we need more appliance-states covered by this)
|
|
324
327
|
* Minor improvements and bugfixes
|
|
325
328
|
|
|
326
|
-
### 1.6.8 (NoBl)
|
|
327
|
-
* Added switch control.ForceLoadBattery to start/stop charging battery. Use this to start/stop forced charging (like with dynamic power prices, ...).
|
|
328
|
-
|
|
329
|
-
### 1.6.7 (NoBl)
|
|
330
|
-
* Added option to turn off local polling.
|
|
331
|
-
|
|
332
|
-
### 1.6.6 (NoBl)
|
|
333
|
-
* Node 16 required
|
|
334
|
-
* Bugfixes
|
|
335
|
-
* Removed non-existing branches: _calc, Bat1Obj[2-4], Display, Statistic, File
|
|
336
|
-
* Added branches: CURRENT_IMBALANCE_CONTROL, BMZ_CURRENT_LIMITS, CELL_DEVIATION_ROC, SENEC_IO_OUTPUT, SENEC_IO_INPUT
|
|
337
|
-
|
|
338
|
-
### 1.6.5 (NoBl)
|
|
339
|
-
* Added AllTime Statistics (trigger initial calculations in adapter settings)
|
|
340
|
-
* https is now default for new instances
|
|
341
|
-
|
|
342
|
-
### 1.6.4 (NoBl)
|
|
343
|
-
* Bugfix (numbers are numbers again)
|
|
344
|
-
|
|
345
|
-
### 1.6.3 (NoBl)
|
|
346
|
-
* Code optimization
|
|
347
|
-
|
|
348
|
-
### 1.6.2 (NoBl)
|
|
349
|
-
* Added statistics values from API along with some own calculations.
|
|
350
|
-
|
|
351
|
-
### 1.6.1 (NoBl)
|
|
352
|
-
* Bugfixes
|
|
353
|
-
|
|
354
|
-
### 1.6.0 (NoBl)
|
|
355
|
-
* Added option to also poll SENEC App API. This requires user credentials for mein-senec.de
|
|
356
|
-
* We are starting with just some information - more to follow. But with Dashboard we at least have current values and day statistics back.
|
|
357
329
|
|
|
358
330
|
### [Former Updates](CHANGELOG_old.md)
|
|
359
331
|
|
package/admin/jsonConfig.json
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"i18n": false,
|
|
3
3
|
"type": "tabs",
|
|
4
|
+
"tabsStyle": {
|
|
5
|
+
"width": "calc(100% - 100px)"
|
|
6
|
+
},
|
|
4
7
|
"items": {
|
|
5
8
|
"_options": {
|
|
6
9
|
"type": "panel",
|
|
@@ -20,9 +23,11 @@
|
|
|
20
23
|
"items": {
|
|
21
24
|
"lala_use": {
|
|
22
25
|
"type": "checkbox",
|
|
26
|
+
"xs": 12,
|
|
23
27
|
"sm": 12,
|
|
24
|
-
|
|
25
|
-
|
|
28
|
+
"md": 6,
|
|
29
|
+
"lg": 4,
|
|
30
|
+
"xl": 4,
|
|
26
31
|
"label": {
|
|
27
32
|
"en": "Connect via lala.cgi?",
|
|
28
33
|
"de": "Verbinden über lala.cgi?",
|
|
@@ -54,9 +59,11 @@
|
|
|
54
59
|
},
|
|
55
60
|
"control_active": {
|
|
56
61
|
"type": "checkbox",
|
|
62
|
+
"xs": 12,
|
|
57
63
|
"sm": 12,
|
|
58
|
-
|
|
59
|
-
|
|
64
|
+
"md": 6,
|
|
65
|
+
"lg": 4,
|
|
66
|
+
"xl": 4,
|
|
60
67
|
"label": {
|
|
61
68
|
"en": "Activate active appliance control",
|
|
62
69
|
"de": "Aktive Gerätesteuerung aktivieren",
|
|
@@ -88,9 +95,11 @@
|
|
|
88
95
|
},
|
|
89
96
|
"senecip": {
|
|
90
97
|
"type": "text",
|
|
98
|
+
"xs": 12,
|
|
91
99
|
"sm": 12,
|
|
92
|
-
|
|
93
|
-
|
|
100
|
+
"md": 6,
|
|
101
|
+
"lg": 4,
|
|
102
|
+
"xl": 4,
|
|
94
103
|
"label": {
|
|
95
104
|
"en": "IP / FQDN of SENEC System",
|
|
96
105
|
"de": "IP / FQDN des SENEC Systems",
|
|
@@ -122,9 +131,11 @@
|
|
|
122
131
|
},
|
|
123
132
|
"useHttps": {
|
|
124
133
|
"type": "checkbox",
|
|
134
|
+
"xs": 12,
|
|
125
135
|
"sm": 12,
|
|
126
|
-
|
|
127
|
-
|
|
136
|
+
"md": 6,
|
|
137
|
+
"lg": 4,
|
|
138
|
+
"xl": 4,
|
|
128
139
|
"label": {
|
|
129
140
|
"en": "Use https?",
|
|
130
141
|
"de": "https verwenden?",
|
|
@@ -156,9 +167,11 @@
|
|
|
156
167
|
},
|
|
157
168
|
"interval": {
|
|
158
169
|
"type": "number",
|
|
170
|
+
"xs": 12,
|
|
159
171
|
"sm": 12,
|
|
160
|
-
|
|
161
|
-
|
|
172
|
+
"md": 6,
|
|
173
|
+
"lg": 4,
|
|
174
|
+
"xl": 4,
|
|
162
175
|
"label": {
|
|
163
176
|
"en": "Polling Interval (seconds) High Priority Data",
|
|
164
177
|
"de": "Polling Interval (Sekunden) Hohe Priorität",
|
|
@@ -192,9 +205,11 @@
|
|
|
192
205
|
},
|
|
193
206
|
"intervalLow": {
|
|
194
207
|
"type": "number",
|
|
208
|
+
"xs": 12,
|
|
195
209
|
"sm": 12,
|
|
196
|
-
|
|
197
|
-
|
|
210
|
+
"md": 6,
|
|
211
|
+
"lg": 4,
|
|
212
|
+
"xl": 4,
|
|
198
213
|
"label": {
|
|
199
214
|
"en": "Polling Interval (minutes) Low Priority Data",
|
|
200
215
|
"de": "Polling Interval (Minuten) Niedrige Priorität",
|
|
@@ -228,9 +243,11 @@
|
|
|
228
243
|
},
|
|
229
244
|
"pollingTimeout": {
|
|
230
245
|
"type": "number",
|
|
246
|
+
"xs": 12,
|
|
231
247
|
"sm": 12,
|
|
232
|
-
|
|
233
|
-
|
|
248
|
+
"md": 6,
|
|
249
|
+
"lg": 4,
|
|
250
|
+
"xl": 4,
|
|
234
251
|
"label": {
|
|
235
252
|
"en": "Request-Timeout (ms)",
|
|
236
253
|
"de": "Request-Timeout (ms)",
|
|
@@ -264,9 +281,11 @@
|
|
|
264
281
|
},
|
|
265
282
|
"retries": {
|
|
266
283
|
"type": "number",
|
|
284
|
+
"xs": 12,
|
|
267
285
|
"sm": 12,
|
|
268
|
-
|
|
269
|
-
|
|
286
|
+
"md": 6,
|
|
287
|
+
"lg": 4,
|
|
288
|
+
"xl": 4,
|
|
270
289
|
"label": {
|
|
271
290
|
"en": "Polling Retries",
|
|
272
291
|
"de": "Wiederholungsversuche",
|
|
@@ -300,9 +319,11 @@
|
|
|
300
319
|
},
|
|
301
320
|
"retrymultiplier": {
|
|
302
321
|
"type": "number",
|
|
322
|
+
"xs": 12,
|
|
303
323
|
"sm": 12,
|
|
304
|
-
|
|
305
|
-
|
|
324
|
+
"md": 6,
|
|
325
|
+
"lg": 4,
|
|
326
|
+
"xl": 4,
|
|
306
327
|
"label": {
|
|
307
328
|
"en": "Polling Retry Factor",
|
|
308
329
|
"de": "Polling-Wiederholungsfaktor",
|
|
@@ -354,6 +375,11 @@
|
|
|
354
375
|
"items": {
|
|
355
376
|
"disclaimer": {
|
|
356
377
|
"type": "checkbox",
|
|
378
|
+
"xs": 12,
|
|
379
|
+
"sm": 12,
|
|
380
|
+
"md": 6,
|
|
381
|
+
"lg": 4,
|
|
382
|
+
"xl": 4,
|
|
357
383
|
"label": {
|
|
358
384
|
"en": "I hereby acknowledge that it is in my very own responsibility alone to ensure these settings are valid. I also acknowledge that problematic settings can cause my SENEC appliance to malfunction and that I willingly accept these risks.",
|
|
359
385
|
"de": "Ich erkenne hiermit an, dass es allein in meiner eigenen Verantwortung liegt, dass diese Einstellungen gültig sind. Ich erkenne auch an, dass problematische Einstellungen zu einer Störung meines SENEC-Geräts führen können und dass ich diese Risiken akzeptiere.",
|
|
@@ -385,9 +411,11 @@
|
|
|
385
411
|
},
|
|
386
412
|
"highPrio_BMS": {
|
|
387
413
|
"type": "text",
|
|
414
|
+
"xs": 12,
|
|
388
415
|
"sm": 12,
|
|
389
|
-
|
|
390
|
-
|
|
416
|
+
"md": 6,
|
|
417
|
+
"lg": 4,
|
|
418
|
+
"xl": 4,
|
|
391
419
|
"label": {
|
|
392
420
|
"en": "HighPrio Polling BMS-Datapoints",
|
|
393
421
|
"de": "HighPrio Polling BMS-Datenpunkte",
|
|
@@ -419,9 +447,11 @@
|
|
|
419
447
|
},
|
|
420
448
|
"highPrio_BMS_active": {
|
|
421
449
|
"type": "checkbox",
|
|
450
|
+
"xs": 12,
|
|
422
451
|
"sm": 12,
|
|
423
|
-
|
|
424
|
-
|
|
452
|
+
"md": 6,
|
|
453
|
+
"lg": 4,
|
|
454
|
+
"xl": 4,
|
|
425
455
|
"label": {
|
|
426
456
|
"en": "Add Datapoints to polling?",
|
|
427
457
|
"de": "Datapoints zum Abruf hinzufügen?",
|
|
@@ -440,9 +470,11 @@
|
|
|
440
470
|
},
|
|
441
471
|
"highPrio_ENERGY": {
|
|
442
472
|
"type": "text",
|
|
473
|
+
"xs": 12,
|
|
443
474
|
"sm": 12,
|
|
444
|
-
|
|
445
|
-
|
|
475
|
+
"md": 6,
|
|
476
|
+
"lg": 4,
|
|
477
|
+
"xl": 4,
|
|
446
478
|
"label": {
|
|
447
479
|
"en": "HighPrio Polling ENERGY-Datapoints",
|
|
448
480
|
"de": "HighPrio Polling ENERGY-Datenpunkte",
|
|
@@ -474,9 +506,11 @@
|
|
|
474
506
|
},
|
|
475
507
|
"highPrio_ENERGY_active": {
|
|
476
508
|
"type": "checkbox",
|
|
509
|
+
"xs": 12,
|
|
477
510
|
"sm": 12,
|
|
478
|
-
|
|
479
|
-
|
|
511
|
+
"md": 6,
|
|
512
|
+
"lg": 4,
|
|
513
|
+
"xl": 4,
|
|
480
514
|
"label": {
|
|
481
515
|
"en": "Add Datapoints to polling?",
|
|
482
516
|
"de": "Datapoints zum Abruf hinzufügen?",
|
|
@@ -495,9 +529,11 @@
|
|
|
495
529
|
},
|
|
496
530
|
"highPrio_PV1": {
|
|
497
531
|
"type": "text",
|
|
532
|
+
"xs": 12,
|
|
498
533
|
"sm": 12,
|
|
499
|
-
|
|
500
|
-
|
|
534
|
+
"md": 6,
|
|
535
|
+
"lg": 4,
|
|
536
|
+
"xl": 4,
|
|
501
537
|
"label": {
|
|
502
538
|
"en": "HighPrio Polling PV1-Datapoints",
|
|
503
539
|
"de": "HighPrio Polling PV1-Datenpunkte",
|
|
@@ -529,9 +565,11 @@
|
|
|
529
565
|
},
|
|
530
566
|
"highPrio_PV1_active": {
|
|
531
567
|
"type": "checkbox",
|
|
568
|
+
"xs": 12,
|
|
532
569
|
"sm": 12,
|
|
533
|
-
|
|
534
|
-
|
|
570
|
+
"md": 6,
|
|
571
|
+
"lg": 4,
|
|
572
|
+
"xl": 4,
|
|
535
573
|
"label": {
|
|
536
574
|
"en": "Add Datapoints to polling?",
|
|
537
575
|
"de": "Datapoints zum Abruf hinzufügen?",
|
|
@@ -550,9 +588,11 @@
|
|
|
550
588
|
},
|
|
551
589
|
"highPrio_PWR_UNIT": {
|
|
552
590
|
"type": "text",
|
|
591
|
+
"xs": 12,
|
|
553
592
|
"sm": 12,
|
|
554
|
-
|
|
555
|
-
|
|
593
|
+
"md": 6,
|
|
594
|
+
"lg": 4,
|
|
595
|
+
"xl": 4,
|
|
556
596
|
"label": {
|
|
557
597
|
"en": "HighPrio Polling PWR_UNIT-Datapoints",
|
|
558
598
|
"de": "HighPrio Polling PWR_UNIT-Datenpunkte",
|
|
@@ -584,9 +624,11 @@
|
|
|
584
624
|
},
|
|
585
625
|
"highPrio_PWR_UNIT_active": {
|
|
586
626
|
"type": "checkbox",
|
|
627
|
+
"xs": 12,
|
|
587
628
|
"sm": 12,
|
|
588
|
-
|
|
589
|
-
|
|
629
|
+
"md": 6,
|
|
630
|
+
"lg": 4,
|
|
631
|
+
"xl": 4,
|
|
590
632
|
"label": {
|
|
591
633
|
"en": "Add Datapoints to polling?",
|
|
592
634
|
"de": "Datapoints zum Abruf hinzufügen?",
|
|
@@ -605,9 +647,11 @@
|
|
|
605
647
|
},
|
|
606
648
|
"highPrio_PM1OBJ1": {
|
|
607
649
|
"type": "text",
|
|
650
|
+
"xs": 12,
|
|
608
651
|
"sm": 12,
|
|
609
|
-
|
|
610
|
-
|
|
652
|
+
"md": 6,
|
|
653
|
+
"lg": 4,
|
|
654
|
+
"xl": 4,
|
|
611
655
|
"label": {
|
|
612
656
|
"en": "HighPrio Polling PM1OBJ1-Datapoints",
|
|
613
657
|
"de": "HighPrio Polling PM1OBJ1-Datenpunkte",
|
|
@@ -639,9 +683,11 @@
|
|
|
639
683
|
},
|
|
640
684
|
"highPrio_PM1OBJ1_active": {
|
|
641
685
|
"type": "checkbox",
|
|
686
|
+
"xs": 12,
|
|
642
687
|
"sm": 12,
|
|
643
|
-
|
|
644
|
-
|
|
688
|
+
"md": 6,
|
|
689
|
+
"lg": 4,
|
|
690
|
+
"xl": 4,
|
|
645
691
|
"label": {
|
|
646
692
|
"en": "Add Datapoints to polling?",
|
|
647
693
|
"de": "Datapoints zum Abruf hinzufügen?",
|
|
@@ -660,9 +706,11 @@
|
|
|
660
706
|
},
|
|
661
707
|
"highPrio_PM1OBJ2": {
|
|
662
708
|
"type": "text",
|
|
709
|
+
"xs": 12,
|
|
663
710
|
"sm": 12,
|
|
664
|
-
|
|
665
|
-
|
|
711
|
+
"md": 6,
|
|
712
|
+
"lg": 4,
|
|
713
|
+
"xl": 4,
|
|
666
714
|
"label": {
|
|
667
715
|
"en": "HighPrio Polling PM1OBJ2-Datapoints",
|
|
668
716
|
"de": "HighPrio Polling PM1OBJ2-Datenpunkte",
|
|
@@ -694,9 +742,11 @@
|
|
|
694
742
|
},
|
|
695
743
|
"highPrio_PM1OBJ2_active": {
|
|
696
744
|
"type": "checkbox",
|
|
745
|
+
"xs": 12,
|
|
697
746
|
"sm": 12,
|
|
698
|
-
|
|
699
|
-
|
|
747
|
+
"md": 6,
|
|
748
|
+
"lg": 4,
|
|
749
|
+
"xl": 4,
|
|
700
750
|
"label": {
|
|
701
751
|
"en": "Add Datapoints to polling?",
|
|
702
752
|
"de": "Datapoints zum Abruf hinzufügen?",
|
|
@@ -715,9 +765,11 @@
|
|
|
715
765
|
},
|
|
716
766
|
"highPrio_WALLBOX": {
|
|
717
767
|
"type": "text",
|
|
768
|
+
"xs": 12,
|
|
718
769
|
"sm": 12,
|
|
719
|
-
|
|
720
|
-
|
|
770
|
+
"md": 6,
|
|
771
|
+
"lg": 4,
|
|
772
|
+
"xl": 4,
|
|
721
773
|
"label": {
|
|
722
774
|
"en": "HighPrio Polling WALLBOX-Datapoints",
|
|
723
775
|
"de": "HighPrio Polling WALLBOX-Datenpunkte",
|
|
@@ -749,9 +801,11 @@
|
|
|
749
801
|
},
|
|
750
802
|
"highPrio_WALLBOX_active": {
|
|
751
803
|
"type": "checkbox",
|
|
804
|
+
"xs": 12,
|
|
752
805
|
"sm": 12,
|
|
753
|
-
|
|
754
|
-
|
|
806
|
+
"md": 6,
|
|
807
|
+
"lg": 4,
|
|
808
|
+
"xl": 4,
|
|
755
809
|
"label": {
|
|
756
810
|
"en": "Add Datapoints to polling?",
|
|
757
811
|
"de": "Datapoints zum Abruf hinzufügen?",
|
|
@@ -770,9 +824,11 @@
|
|
|
770
824
|
},
|
|
771
825
|
"highPrio_BAT1": {
|
|
772
826
|
"type": "text",
|
|
827
|
+
"xs": 12,
|
|
773
828
|
"sm": 12,
|
|
774
|
-
|
|
775
|
-
|
|
829
|
+
"md": 6,
|
|
830
|
+
"lg": 4,
|
|
831
|
+
"xl": 4,
|
|
776
832
|
"label": {
|
|
777
833
|
"en": "HighPrio Polling BAT1-Datapoints",
|
|
778
834
|
"de": "HighPrio Polling BAT1-Datenpunkte",
|
|
@@ -804,9 +860,11 @@
|
|
|
804
860
|
},
|
|
805
861
|
"highPrio_BAT1_active": {
|
|
806
862
|
"type": "checkbox",
|
|
863
|
+
"xs": 12,
|
|
807
864
|
"sm": 12,
|
|
808
|
-
|
|
809
|
-
|
|
865
|
+
"md": 6,
|
|
866
|
+
"lg": 4,
|
|
867
|
+
"xl": 4,
|
|
810
868
|
"label": {
|
|
811
869
|
"en": "Add Datapoints to polling?",
|
|
812
870
|
"de": "Datapoints zum Abruf hinzufügen?",
|
|
@@ -825,9 +883,11 @@
|
|
|
825
883
|
},
|
|
826
884
|
"highPrio_BAT1OBJ1": {
|
|
827
885
|
"type": "text",
|
|
886
|
+
"xs": 12,
|
|
828
887
|
"sm": 12,
|
|
829
|
-
|
|
830
|
-
|
|
888
|
+
"md": 6,
|
|
889
|
+
"lg": 4,
|
|
890
|
+
"xl": 4,
|
|
831
891
|
"label": {
|
|
832
892
|
"en": "HighPrio Polling BAT1OBJ1-Datapoints",
|
|
833
893
|
"de": "HighPrio Polling BAT1OBJ1-Datenpunkte",
|
|
@@ -859,9 +919,11 @@
|
|
|
859
919
|
},
|
|
860
920
|
"highPrio_BAT1OBJ1_active": {
|
|
861
921
|
"type": "checkbox",
|
|
922
|
+
"xs": 12,
|
|
862
923
|
"sm": 12,
|
|
863
|
-
|
|
864
|
-
|
|
924
|
+
"md": 6,
|
|
925
|
+
"lg": 4,
|
|
926
|
+
"xl": 4,
|
|
865
927
|
"label": {
|
|
866
928
|
"en": "Add Datapoints to polling?",
|
|
867
929
|
"de": "Datapoints zum Abruf hinzufügen?",
|
|
@@ -880,9 +942,11 @@
|
|
|
880
942
|
},
|
|
881
943
|
"highPrio_TEMPMEASURE": {
|
|
882
944
|
"type": "text",
|
|
945
|
+
"xs": 12,
|
|
883
946
|
"sm": 12,
|
|
884
|
-
|
|
885
|
-
|
|
947
|
+
"md": 6,
|
|
948
|
+
"lg": 4,
|
|
949
|
+
"xl": 4,
|
|
886
950
|
"label": {
|
|
887
951
|
"en": "HighPrio Polling TEMPMEASURE-Datapoints",
|
|
888
952
|
"de": "HighPrio Polling TEMPMEASURE-Datenpunkte",
|
|
@@ -914,9 +978,11 @@
|
|
|
914
978
|
},
|
|
915
979
|
"highPrio_TEMPMEASURE_active": {
|
|
916
980
|
"type": "checkbox",
|
|
981
|
+
"xs": 12,
|
|
917
982
|
"sm": 12,
|
|
918
|
-
|
|
919
|
-
|
|
983
|
+
"md": 6,
|
|
984
|
+
"lg": 4,
|
|
985
|
+
"xl": 4,
|
|
920
986
|
"label": {
|
|
921
987
|
"en": "Add Datapoints to polling?",
|
|
922
988
|
"de": "Datapoints zum Abruf hinzufügen?",
|
|
@@ -953,9 +1019,11 @@
|
|
|
953
1019
|
"items": {
|
|
954
1020
|
"api_use": {
|
|
955
1021
|
"type": "checkbox",
|
|
1022
|
+
"xs": 12,
|
|
956
1023
|
"sm": 12,
|
|
957
|
-
|
|
958
|
-
|
|
1024
|
+
"md": 6,
|
|
1025
|
+
"lg": 4,
|
|
1026
|
+
"xl": 4,
|
|
959
1027
|
"label": {
|
|
960
1028
|
"en": "Use SENEC API?",
|
|
961
1029
|
"de": "SENEC API nutzen?",
|
|
@@ -987,9 +1055,11 @@
|
|
|
987
1055
|
},
|
|
988
1056
|
"api_mail": {
|
|
989
1057
|
"type": "text",
|
|
1058
|
+
"xs": 12,
|
|
990
1059
|
"sm": 12,
|
|
991
|
-
|
|
992
|
-
|
|
1060
|
+
"md": 6,
|
|
1061
|
+
"lg": 4,
|
|
1062
|
+
"xl": 4,
|
|
993
1063
|
"label": {
|
|
994
1064
|
"en": "Email-Address",
|
|
995
1065
|
"de": "E-Mail-Adresse",
|
|
@@ -1022,9 +1092,11 @@
|
|
|
1022
1092
|
"api_pwd": {
|
|
1023
1093
|
"type": "password",
|
|
1024
1094
|
"visible": true,
|
|
1095
|
+
"xs": 12,
|
|
1025
1096
|
"sm": 12,
|
|
1026
|
-
|
|
1027
|
-
|
|
1097
|
+
"md": 6,
|
|
1098
|
+
"lg": 4,
|
|
1099
|
+
"xl": 4,
|
|
1028
1100
|
"label": {
|
|
1029
1101
|
"en": "Password",
|
|
1030
1102
|
"de": "Passwort",
|
|
@@ -1056,9 +1128,11 @@
|
|
|
1056
1128
|
},
|
|
1057
1129
|
"api_interval": {
|
|
1058
1130
|
"type": "number",
|
|
1131
|
+
"xs": 12,
|
|
1059
1132
|
"sm": 12,
|
|
1060
|
-
|
|
1061
|
-
|
|
1133
|
+
"md": 6,
|
|
1134
|
+
"lg": 4,
|
|
1135
|
+
"xl": 4,
|
|
1062
1136
|
"label": {
|
|
1063
1137
|
"en": "Polling Interval (minutes)",
|
|
1064
1138
|
"de": "Polling Interval (Minuten)",
|
|
@@ -1092,9 +1166,11 @@
|
|
|
1092
1166
|
},
|
|
1093
1167
|
"api_alltimeRebuild": {
|
|
1094
1168
|
"type": "checkbox",
|
|
1169
|
+
"xs": 12,
|
|
1095
1170
|
"sm": 12,
|
|
1096
|
-
|
|
1097
|
-
|
|
1171
|
+
"md": 6,
|
|
1172
|
+
"lg": 4,
|
|
1173
|
+
"xl": 4,
|
|
1098
1174
|
"label": {
|
|
1099
1175
|
"en": "Rebuild AllTime history (one-time)",
|
|
1100
1176
|
"de": "Gesamthistorie neu berechnen (einmalig)",
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "senec",
|
|
4
|
-
"version": "1.6.
|
|
4
|
+
"version": "1.6.15",
|
|
5
5
|
"news": {
|
|
6
|
+
"1.6.15": {
|
|
7
|
+
"en": "Maintenance update (dependencies, ...)",
|
|
8
|
+
"de": "Wartungsupdate (Abhängigkeiten, ..",
|
|
9
|
+
"ru": "Обновление (в зависимости от обстоятельств, ..",
|
|
10
|
+
"pt": "Atualização de manutenção (dependências, ..",
|
|
11
|
+
"nl": "Onderhoudsupdate (afhankelijkheden, ...)",
|
|
12
|
+
"fr": "Mise à jour de maintenance (dépendances, ...)",
|
|
13
|
+
"it": "Aggiornamento di manutenzione (dipendenze, ..",
|
|
14
|
+
"es": "Actualización de mantenimiento (dependencias, ...)",
|
|
15
|
+
"pl": "Aktualizacja utrzymania (zależności,...)",
|
|
16
|
+
"uk": "Оновлення технічного обслуговування (в залежності, ...)",
|
|
17
|
+
"zh-cn": "更新维护(独立性, . ) )"
|
|
18
|
+
},
|
|
6
19
|
"1.6.14": {
|
|
7
20
|
"en": "Bugfix (values were way off)",
|
|
8
21
|
"de": "Bugfix (Falsche Werte)",
|
|
@@ -80,71 +93,6 @@
|
|
|
80
93
|
"pl": "Poprawione baterie wymusiły obciążenie, dodano przełącznik w celu umożliwienia aktywnej kontroli urządzenia.",
|
|
81
94
|
"uk": "Покращений акумулятор примусового навантаження, доданий перемикач в настройку, щоб забезпечити активний контроль за приладом.",
|
|
82
95
|
"zh-cn": "改善强迫装载的电池,加起来,允许积极控制输电。."
|
|
83
|
-
},
|
|
84
|
-
"1.6.8": {
|
|
85
|
-
"en": "Added switch control.ForceLoadBattery to start/stop charging battery. Use this to start/stop forced charging (like with dynamic power prices, ...).",
|
|
86
|
-
"de": "Schalter control.ForceLoadBattery hinzugefügt, um ein Laden des Speichers zu forcieren (analog zur Funktion im lokalen Interface). Nützlich in Verbindung mit dynamischen Stromtarifen, etc.",
|
|
87
|
-
"ru": "Добавлен контроль переключателя. СилаLoad Батарея для начала / остановки зарядки батареи. Используйте это для начала / остановки принудительного зарядки (например, с динамическими ценами питания, ...).",
|
|
88
|
-
"pt": "Adicionado controle de interruptor. Força Bateria para iniciar / parar de carregar bateria. Use isso para iniciar / parar de carga forçada (como com preços de energia dinâmica, ...).",
|
|
89
|
-
"nl": "Veranderingscontrole. Force Batterijen om te starten/ stop met batterijen. Gebruik dit om te beginnen en stop met het opladen van dynamische krachtprijzen.",
|
|
90
|
-
"fr": "Ajout de la commande. ForceLoad Batterie de démarrage/arrêt de batterie de charge. Utilisez ceci pour commencer / arrêter la charge forcée (comme avec les prix de puissance dynamique, ...).",
|
|
91
|
-
"it": "Aggiunta di controllo dell'interruttore. Forza! Batteria per avviare / fermare la batteria di ricarica. Utilizzare questo per avviare / fermare la ricarica forzata (come con i prezzi di potenza dinamica, ...).",
|
|
92
|
-
"es": "Control de cambio añadido. ForceLoad Batería para iniciar / detener la batería de carga. Utilice esto para iniciar / detener la carga forzada (como con los precios de potencia dinámicos, ...).",
|
|
93
|
-
"pl": "Kontrola przełącznikowa. ForceLoad Bateria rozpoczynająca/zatrzymanie baterii. Wykorzystuje to do rozpoczęcia/stopowania (jak z dynamicznymi cenami mocy).",
|
|
94
|
-
"uk": "Додано контроль перемикання. Приват24 Акумулятор для запуску / зарядки акумулятора. Використовуйте це для запуску / stop примусової зарядки (наприклад, з динамічними цінами потужності, ...).",
|
|
95
|
-
"zh-cn": "添加了转换控制。 部队 开始/禁止劫持电池。 利用这开始/禁止强迫征集(与动态发电价格相似,......)。."
|
|
96
|
-
},
|
|
97
|
-
"1.6.7": {
|
|
98
|
-
"en": "Added option to turn off local polling.",
|
|
99
|
-
"de": "Option hinzugefügt, um die lokale Abfrage der Appliance abzuschalten.",
|
|
100
|
-
"ru": "Добавлена возможность отключить локальный опрос.",
|
|
101
|
-
"pt": "Opção adicionada para desligar a sondagem local.",
|
|
102
|
-
"nl": "Toegevoegd optie om lokale peilingen uit te zetten.",
|
|
103
|
-
"fr": "Ajout de l'option pour désactiver le vote local.",
|
|
104
|
-
"it": "Aggiunta opzione per spegnere polling locale.",
|
|
105
|
-
"es": "Se agregó la opción de apagar las encuestas locales.",
|
|
106
|
-
"pl": "Wstępna opcja, aby odwołać lokalną sondę.",
|
|
107
|
-
"uk": "Додана можливість вимкнути локальне опитування.",
|
|
108
|
-
"zh-cn": "增加地方投票的选择。."
|
|
109
|
-
},
|
|
110
|
-
"1.6.6": {
|
|
111
|
-
"en": "Node 16 required; Bugfixes; Removed non-existing branches: _calc, Bat1Obj[2-4], Display, Statistic, File; Added branches: CURRENT_IMBALANCE_CONTROL, BMZ_CURRENT_LIMITS, CELL_DEVIATION_ROC, SENEC_IO_OUTPUT, SENEC_IO_INPUT",
|
|
112
|
-
"de": "Node 16 erforderlich; Bugfixes; Entfernt: _calc, Bat1Obj[2-4,] Display, Statistic, Datei; Hinzugefügt: CURRENT_IMBALANCE_CONTROL, BMZ_CURRENT_LIMITS, CELL_DEVIATION_ROC, SENEC_IO_OUTPUT, SENEC_IO_INPUT",
|
|
113
|
-
"ru": "Node 16 требуется; Bugfixes; Удаленные несущие филиалы: _calc, Bat1Obj[2-4,] Дисплей, Статистика, Файл; Добавленные филиалы: CURRENT_IMBALANCE_CONTROL, BMZ_CURRENT_LIMITS, CELL_DEVIATION_ROC, SENEC_IO_OUTPUT, SENEC_IO_INPUT",
|
|
114
|
-
"pt": "Node 16 requerido; Bugfixes; ramos não existentes removidos: _calc, Bat1Obj[2-4,] Exibição, estatística, arquivo; galhos adicionados: CURRENT_IMBALANCE_CONTROL, BMZ_CURRENT_LIMITS, CELL_DEVIATION_ROC, SENEC_IO_OUTPUT",
|
|
115
|
-
"nl": "Node 16 vereist, Bugfixes, verwijderde niet-vernietigende takken",
|
|
116
|
-
"fr": "Node 16 required; Bugfixes; Deleted non-existing branches: _calc, Bat1Obj[2-4,] Display, Statistic, File; Added branches: CURRENT_IMBALANCE_CONTROL, BMZ_CURRENT_LIMITS, CELL_DEVIATION_ROC, SENEC_IO_OUTPUT, SENEC_IO_INPUT",
|
|
117
|
-
"it": "Nodo 16 richiesto; Bugfixs; Rimuoveto rami non esistenti: _calc, Bat1Obj[2-4,] Visualizzazione, Statistica, File; Aggiungi i rami: CURRENT_IMBALANCE_CONTROL, BMZ_CURRENT_LIMITS, CELL_DEVIATION_ROC, SENEC_IO_OUTPUT, SENEC_IO_INPUT",
|
|
118
|
-
"es": "Nodo 16 requerido; Bugfixes; ramas no existentes eliminadas: _calc, Bat1Obj[2-4,] Pantalla, Estadística, Archivo; ramas agregadas: CURRENT_IMBALANCE_CONTROL, BMZ_CURRENT_LIMITS, CELL_DEVIATION_ROC, SENEC_IO_OUTPUT, SENEC_IO_INPUT",
|
|
119
|
-
"pl": "Node 16 wymaga: Bugfixes; Removed non-existing branches: _calc, Bat1Obj2 (4, Display, Statistic, File; Added gałęzi: CURRENT_IMBACE_CONOL, BMZ_CURRE_LIMITS",
|
|
120
|
-
"uk": "Node 16 потрібно; Виправлення помилок; Вилучені невибагливі гілки: _calc, Bat1Obj[2-4,] Display, Statistic, File; Додано гілки: CURRENT_IMBALANCE_CONTROL, BMZ_CURRENT_LIMITS, CELL_DEVIATION_ROC, SENEC_IO_OUTPUT, SENEC_IO_INPUT",
|
|
121
|
-
"zh-cn": "第16条要求:Bugfix; 取消未存在的分支:升级c,Bat1Obj[2-4] Display, Statistic, File; 增加分支:协调局:CURRENT_IMBALANCE_CONTROL, BMZ_CURRENT_LIMITS, CELL_DEVIATION_ROC, SENEC_IO_OUTPUT, SENEC_IO_INPUT"
|
|
122
|
-
},
|
|
123
|
-
"1.6.5": {
|
|
124
|
-
"en": "Added AllTime Statistics (trigger initial calculations in adapter settings), https is now default for new instances.",
|
|
125
|
-
"de": "AllTime Statistiken hinzugefügt (initiale Berechnung bitte in den Adapter-Einstellungen aktivieren), https ist jetzt Standard für neue Instanzen.",
|
|
126
|
-
"ru": "Добавлена статистика AllTime (trigger начальные расчеты в настройках адаптера), https теперь по умолчанию для новых инстанций.",
|
|
127
|
-
"pt": "Adicionado AllTime Statistics ( cálculos iniciais de gatilho em configurações de adaptador), https agora é padrão para novas instâncias.",
|
|
128
|
-
"nl": "Toegevoegd AllTime Statistieken (trigger initialen berekeningen in adapter settings\" \"htps is nu default voor nieuwe instanties.",
|
|
129
|
-
"fr": "Ajout de AllTime Statistics (trigger initial calculations in adapt settings), https est maintenant par défaut pour de nouveaux cas.",
|
|
130
|
-
"it": "Aggiunta AllTime Statistics (configurazioni iniziali del trigger nelle impostazioni dell'adattatore), https è ora predefinito per nuove istanze.",
|
|
131
|
-
"es": "Añadido AllTime Statistics (trigger inicial calculations in adapter settings), https ahora es predeterminado para nuevas instancias.",
|
|
132
|
-
"pl": "Added AllTime Statistics (trigger początkowych obliczeń w ustawieniach adapterów), https jest obecnie domyślny do nowych instancji.",
|
|
133
|
-
"uk": "Додано AllTime Статистика (тригер початкових обчислень в налаштуваннях адаптера), HTTPS тепер за замовчуванням для нових екземплярів.",
|
|
134
|
-
"zh-cn": "加上《所有制度统计》(在适应环境中的过份初步计算),目前,新情况目前有缺陷。."
|
|
135
|
-
},
|
|
136
|
-
"1.6.4": {
|
|
137
|
-
"en": "Numbers are numbers again",
|
|
138
|
-
"de": "Zahlen sind wieder Zahlen",
|
|
139
|
-
"ru": "Номера снова",
|
|
140
|
-
"pt": "Os números são números novamente",
|
|
141
|
-
"nl": "Nummers zijn weer getallen",
|
|
142
|
-
"fr": "Les nombres sont de nouveau des nombres",
|
|
143
|
-
"it": "I numeri sono di nuovo numeri",
|
|
144
|
-
"es": "Números son números de nuevo",
|
|
145
|
-
"pl": "Liczby są ponownie numerami",
|
|
146
|
-
"uk": "Кількість чисел знову",
|
|
147
|
-
"zh-cn": "数字再次编号"
|
|
148
96
|
}
|
|
149
97
|
},
|
|
150
98
|
"docs": {
|
|
@@ -184,9 +132,12 @@
|
|
|
184
132
|
"senec",
|
|
185
133
|
"solar"
|
|
186
134
|
],
|
|
187
|
-
|
|
135
|
+
"licenseInformation": {
|
|
136
|
+
"license": "MIT",
|
|
137
|
+
"type": "free"
|
|
138
|
+
},
|
|
188
139
|
"platform": "Javascript/Node.js",
|
|
189
|
-
|
|
140
|
+
"tier": 2,
|
|
190
141
|
"icon": "senec.png",
|
|
191
142
|
"enabled": false,
|
|
192
143
|
"extIcon": "https://raw.githubusercontent.com/nobl/ioBroker.senec/master/admin/senec.png",
|
|
@@ -202,7 +153,7 @@
|
|
|
202
153
|
},
|
|
203
154
|
"dependencies": [
|
|
204
155
|
{
|
|
205
|
-
"js-controller": ">=
|
|
156
|
+
"js-controller": ">=5.0.19"
|
|
206
157
|
}
|
|
207
158
|
],
|
|
208
159
|
"globalDependencies": [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "iobroker.senec",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.15",
|
|
4
4
|
"description": "Senec Home",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "NoBl",
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
"homepage": "https://github.com/nobl/ioBroker.senec",
|
|
16
16
|
"license": "MIT",
|
|
17
17
|
"keywords": [
|
|
18
|
+
"ioBroker",
|
|
18
19
|
"senec",
|
|
19
20
|
"solar",
|
|
20
21
|
"photovoltaic"
|
|
@@ -27,39 +28,39 @@
|
|
|
27
28
|
"url": "https://github.com/nobl/ioBroker.senec.git"
|
|
28
29
|
},
|
|
29
30
|
"dependencies": {
|
|
30
|
-
"axios": "^1.7.
|
|
31
|
-
"@iobroker/adapter-core": "^3.
|
|
31
|
+
"axios": "^1.7.8",
|
|
32
|
+
"@iobroker/adapter-core": "^3.2.2"
|
|
32
33
|
},
|
|
33
34
|
"devDependencies": {
|
|
34
|
-
"@alcalzone/release-script": "^3.
|
|
35
|
+
"@alcalzone/release-script": "^3.8.0",
|
|
35
36
|
"@alcalzone/release-script-plugin-iobroker": "^3.7.2",
|
|
36
37
|
"@alcalzone/release-script-plugin-license": "^3.7.0",
|
|
37
38
|
"@alcalzone/release-script-plugin-manual-review": "^3.7.0",
|
|
38
|
-
"@eslint/eslintrc": "^3.
|
|
39
|
-
"@eslint/js": "^9.
|
|
39
|
+
"@eslint/eslintrc": "^3.2.0",
|
|
40
|
+
"@eslint/js": "^9.16.0",
|
|
40
41
|
"@iobroker/adapter-dev": "^1.3.0",
|
|
41
|
-
"@iobroker/testing": "^
|
|
42
|
+
"@iobroker/testing": "^5.0.0",
|
|
42
43
|
"@tsconfig/node18": "^18.2.2",
|
|
43
44
|
"@types/chai": "^4.3.14",
|
|
44
45
|
"@types/chai-as-promised": "^7.1.8",
|
|
45
|
-
"@types/mocha": "^10.0.
|
|
46
|
-
"@types/node": "^
|
|
46
|
+
"@types/mocha": "^10.0.10",
|
|
47
|
+
"@types/node": "^22.10.1",
|
|
47
48
|
"@types/proxyquire": "^1.3.31",
|
|
48
49
|
"@types/sinon": "^17.0.3",
|
|
49
50
|
"@types/sinon-chai": "^3.2.12",
|
|
50
|
-
"chai": "^4.
|
|
51
|
+
"chai": "^4.5.0",
|
|
51
52
|
"chai-as-promised": "^8.0.0",
|
|
52
|
-
"eslint": "^9.
|
|
53
|
+
"eslint": "^9.16.0",
|
|
53
54
|
"eslint-config-prettier": "^9.1.0",
|
|
54
55
|
"eslint-plugin-prettier": "^5.2.1",
|
|
55
|
-
"globals": "^15.
|
|
56
|
-
"mocha": "^10.
|
|
56
|
+
"globals": "^15.12.0",
|
|
57
|
+
"mocha": "^10.8.2",
|
|
57
58
|
"mustache": "^4.2.0",
|
|
58
|
-
"prettier": "^3.
|
|
59
|
+
"prettier": "^3.4.1",
|
|
59
60
|
"proxyquire": "^2.1.3",
|
|
60
|
-
"sinon": "^
|
|
61
|
+
"sinon": "^19.0.2",
|
|
61
62
|
"sinon-chai": "^3.7.0",
|
|
62
|
-
"typescript": "~5.
|
|
63
|
+
"typescript": "~5.7.2"
|
|
63
64
|
},
|
|
64
65
|
"main": "main.js",
|
|
65
66
|
"files": [
|