iobroker.sun2000 0.12.1 → 0.14.0
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 +12 -0
- package/admin/jsonConfig.json +235 -119
- package/io-package.json +29 -29
- package/lib/controls/service_queue.js +6 -8
- package/lib/drivers/driver_base.js +10 -4
- package/lib/drivers/driver_emma.js +348 -0
- package/lib/drivers/driver_inverter.js +73 -46
- package/lib/drivers/driver_slogger.js +1 -1
- package/lib/drivers/index.js +5 -2
- package/lib/modbus/modbus_connect.js +59 -8
- package/lib/modbus/modbus_server.js +43 -11
- package/lib/register.js +30 -34
- package/lib/test.js +3 -3
- package/lib/tools.js +45 -1
- package/lib/types.js +14 -2
- package/main.js +49 -16
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -56,6 +56,7 @@ browse in the [wiki](https://github.com/bolliy/ioBroker.sun2000/wiki)
|
|
|
56
56
|
* [`Export Control`](https://github.com/bolliy/ioBroker.sun2000/wiki/Begrenzung-Netzeinspeisung-(Export-Control)): The excess PV energy is fed into the power grid, but not all countries allow users to sell electricity. Some countries have introduced regulations to restrict the sale of electricity to the grid.
|
|
57
57
|
* [`modbus-proxy`](https://github.com/bolliy/ioBroker.sun2000/wiki/Modbus-Proxy): Third party device such as wallbox, energy manager etc. can receive data even if the modbus interface of inverter is already in use. In addition you can mirror the sun2000 data to another IoBroker instance.
|
|
58
58
|
* Huawei [`SmartLogger`](https://github.com/bolliy/ioBroker.sun2000/wiki/SmartLogger) integration: Monitors and manages the PV power system. The adapter saves the collected data in the same way as it does when read out the inverter directly.
|
|
59
|
+
* Huawei [`Emma`]() integration: The Modbus access, network connectivity (WiFi and Ethernet) and the DDSU/DTSU-666H smart meter functions are integrated in one unit - the use of the Sdongle becomes redundant. In addition Huawei EV chargers and load shedding/control (via selected Shelly devices) are supported and "intelligent" controlled.
|
|
59
60
|
|
|
60
61
|
## Changelog
|
|
61
62
|
|
|
@@ -63,6 +64,17 @@ browse in the [wiki](https://github.com/bolliy/ioBroker.sun2000/wiki)
|
|
|
63
64
|
Placeholder for the next version (at the beginning of the line):
|
|
64
65
|
### **WORK IN PROGRESS**
|
|
65
66
|
-->
|
|
67
|
+
### 0.14.0 (2024-10-20)
|
|
68
|
+
* adjust for Responsive Design #121
|
|
69
|
+
* lock on asynchronous modbus code
|
|
70
|
+
* writing data via the modbus-proxy #119
|
|
71
|
+
* read additional register data of Huawei Emma
|
|
72
|
+
|
|
73
|
+
### 0.13.0 (2024-10-11)
|
|
74
|
+
* improve Modbus reconnection #116
|
|
75
|
+
* configuration update
|
|
76
|
+
* initial Integration of Huawei Emma (Huawei Energy Management Assistant) #63
|
|
77
|
+
|
|
66
78
|
### 0.12.1 (2024-09-29)
|
|
67
79
|
* no warning from check the valid number during standby: "no irradiation"
|
|
68
80
|
|
package/admin/jsonConfig.json
CHANGED
|
@@ -15,22 +15,46 @@
|
|
|
15
15
|
"label": "label",
|
|
16
16
|
"href" : "https://www.paypal.com/donate/?hosted_button_id=ZTX3VP9LZBDCG",
|
|
17
17
|
"src" : "paypal-button.png",
|
|
18
|
-
"newLine": true
|
|
18
|
+
"newLine": true,
|
|
19
|
+
"xs": 8,
|
|
20
|
+
"sm": 10,
|
|
21
|
+
"md": 2,
|
|
22
|
+
"lg": 2,
|
|
23
|
+
"xl": 2
|
|
19
24
|
},
|
|
20
25
|
"mainHdr1": {
|
|
21
26
|
"newLine": true,
|
|
22
27
|
"type": "header",
|
|
23
|
-
"text": "
|
|
28
|
+
"text": "Integration",
|
|
29
|
+
"size": 2
|
|
30
|
+
},
|
|
31
|
+
"integration": {
|
|
32
|
+
"type": "select",
|
|
33
|
+
"label": "Huawei Device Integration",
|
|
34
|
+
"options":[{"label": "SDongle (communication expansion module)", "value":0}, {"label": "SmartLogger (monitors and manages PV and energy storage systems)", "value":1},{"label": "EMMA (Huawei Energy Management Assistant)", "value":2}],
|
|
35
|
+
"newLine": true,
|
|
36
|
+
"xs": 12,
|
|
37
|
+
"sm": 12,
|
|
38
|
+
"md": 6,
|
|
39
|
+
"lg": 4,
|
|
40
|
+
"xl": 4
|
|
41
|
+
},
|
|
42
|
+
"mainHdr2": {
|
|
43
|
+
"newLine": true,
|
|
44
|
+
"type": "header",
|
|
45
|
+
"text": "Device Settings",
|
|
24
46
|
"size": 2
|
|
25
47
|
},
|
|
26
48
|
"address": {
|
|
27
49
|
"type": "text",
|
|
28
50
|
"label": "address",
|
|
29
51
|
"tooltip": "The device ip address",
|
|
52
|
+
"newLine": true,
|
|
53
|
+
"xs": 12,
|
|
30
54
|
"sm": 12,
|
|
31
|
-
"md":
|
|
32
|
-
"lg":
|
|
33
|
-
"
|
|
55
|
+
"md": 6,
|
|
56
|
+
"lg": 4,
|
|
57
|
+
"xl": 4
|
|
34
58
|
},
|
|
35
59
|
"port": {
|
|
36
60
|
"type": "number",
|
|
@@ -39,17 +63,24 @@
|
|
|
39
63
|
"max" : 655565,
|
|
40
64
|
"default": 502,
|
|
41
65
|
"newLine": true,
|
|
42
|
-
"tooltip": "The modbus TCP port"
|
|
66
|
+
"tooltip": "The modbus TCP port",
|
|
67
|
+
"xs": 12,
|
|
68
|
+
"sm": 12,
|
|
69
|
+
"md": 6,
|
|
70
|
+
"lg": 4,
|
|
71
|
+
"xl": 4
|
|
43
72
|
},
|
|
44
73
|
"modbusIds": {
|
|
45
74
|
"type": "text",
|
|
46
75
|
"label": "Modbus inverter IDs",
|
|
47
|
-
"sm": 12,
|
|
48
|
-
"md": 8,
|
|
49
|
-
"lg": 2,
|
|
50
76
|
"default": "1",
|
|
51
77
|
"newLine": true,
|
|
52
|
-
"tooltip": "The modbus inverter IDs, separated with character ,"
|
|
78
|
+
"tooltip": "The modbus inverter IDs, separated with character ,",
|
|
79
|
+
"xs": 12,
|
|
80
|
+
"sm": 12,
|
|
81
|
+
"md": 6,
|
|
82
|
+
"lg": 4,
|
|
83
|
+
"xl": 4
|
|
53
84
|
},
|
|
54
85
|
"updateInterval": {
|
|
55
86
|
"type": "number",
|
|
@@ -58,9 +89,20 @@
|
|
|
58
89
|
"max" : 120,
|
|
59
90
|
"default": 20,
|
|
60
91
|
"newLine": true,
|
|
61
|
-
"tooltip": "Update interval to update the values from the inverters"
|
|
62
|
-
|
|
63
|
-
|
|
92
|
+
"tooltip": "Update interval to update the values from the inverters",
|
|
93
|
+
"xs": 12,
|
|
94
|
+
"sm": 12,
|
|
95
|
+
"md": 6,
|
|
96
|
+
"lg": 4,
|
|
97
|
+
"xl": 4
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
"tab4": {
|
|
102
|
+
"type": "panel",
|
|
103
|
+
"label": "Integration Settings",
|
|
104
|
+
"items": {
|
|
105
|
+
"mainHdr1": {
|
|
64
106
|
"newLine": true,
|
|
65
107
|
"type": "header",
|
|
66
108
|
"text": "SDongle Settings",
|
|
@@ -75,79 +117,111 @@
|
|
|
75
117
|
"type": "checkbox",
|
|
76
118
|
"label": "sd.active",
|
|
77
119
|
"newLine": true,
|
|
78
|
-
"tooltip": "SDongle active"
|
|
120
|
+
"tooltip": "SDongle active",
|
|
121
|
+
"xs": 12,
|
|
122
|
+
"sm": 12,
|
|
123
|
+
"md": 6,
|
|
124
|
+
"lg": 4,
|
|
125
|
+
"xl": 4
|
|
79
126
|
},
|
|
80
127
|
"sDongleId": {
|
|
81
128
|
"type": "text",
|
|
82
129
|
"label": "SDongleA modbus ID",
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
"items": {
|
|
92
|
-
"timmingHdr1": {
|
|
130
|
+
"newLine": true,
|
|
131
|
+
"xs": 12,
|
|
132
|
+
"sm": 12,
|
|
133
|
+
"md": 6,
|
|
134
|
+
"lg": 4,
|
|
135
|
+
"xl": 4
|
|
136
|
+
},
|
|
137
|
+
"mainHdr2": {
|
|
93
138
|
"newLine": true,
|
|
94
139
|
"type": "header",
|
|
95
|
-
"text": "
|
|
140
|
+
"text": "SmartLogger Settings",
|
|
96
141
|
"size": 2
|
|
97
142
|
},
|
|
98
|
-
"
|
|
99
|
-
"type": "
|
|
100
|
-
"label": "
|
|
101
|
-
"min" : 5000,
|
|
102
|
-
"max" : 30000,
|
|
103
|
-
"newLine": true,
|
|
104
|
-
"tooltip": "modbus connection timeout"
|
|
105
|
-
},
|
|
106
|
-
"delay": {
|
|
107
|
-
"type": "number",
|
|
108
|
-
"label": "delay (ms)",
|
|
109
|
-
"min" : 0,
|
|
110
|
-
"max" : 6000,
|
|
143
|
+
"sl_meterId": {
|
|
144
|
+
"type": "text",
|
|
145
|
+
"label": "sl.meterId",
|
|
111
146
|
"newLine": true,
|
|
112
|
-
"tooltip": "
|
|
147
|
+
"tooltip": "The Meter modbus ID",
|
|
148
|
+
"xs": 12,
|
|
149
|
+
"sm": 12,
|
|
150
|
+
"md": 6,
|
|
151
|
+
"lg": 4,
|
|
152
|
+
"xl": 4
|
|
113
153
|
},
|
|
114
|
-
"
|
|
115
|
-
"type": "number",
|
|
116
|
-
"label": "connect delay (ms)",
|
|
117
|
-
"min" : 2000,
|
|
118
|
-
"max" : 10000,
|
|
154
|
+
"mainHdr3": {
|
|
119
155
|
"newLine": true,
|
|
120
|
-
"
|
|
156
|
+
"type": "header",
|
|
157
|
+
"text": "EMMA Settings",
|
|
158
|
+
"size": 2
|
|
121
159
|
},
|
|
122
|
-
"
|
|
123
|
-
"type": "
|
|
124
|
-
"
|
|
125
|
-
"newLine": true
|
|
126
|
-
|
|
127
|
-
}
|
|
160
|
+
"chipsTxt1": {
|
|
161
|
+
"type": "staticText",
|
|
162
|
+
"text": "Placeholder for future Settings",
|
|
163
|
+
"newLine": true
|
|
164
|
+
}
|
|
128
165
|
}
|
|
129
|
-
},
|
|
130
|
-
"
|
|
166
|
+
},
|
|
167
|
+
"tab5": {
|
|
131
168
|
"type": "panel",
|
|
132
|
-
"label": "
|
|
169
|
+
"label": "Modbus-proxy",
|
|
133
170
|
"items": {
|
|
134
|
-
"
|
|
171
|
+
"modbusProxyHdr1": {
|
|
135
172
|
"newLine": true,
|
|
136
173
|
"type": "header",
|
|
137
|
-
"text": "
|
|
174
|
+
"text": "Modbus tcp proxy for multiple client connections",
|
|
138
175
|
"size": 2
|
|
139
176
|
},
|
|
140
|
-
"
|
|
177
|
+
"chipsTxt": {
|
|
178
|
+
"type": "staticText",
|
|
179
|
+
"text": "Third party device such as wallbox, energy manager etc. can receive data even if the modbus interface of inverter is already in use. In addition you can mirror the sun2000 data to another IoBroker instance.",
|
|
180
|
+
"newLine": true
|
|
181
|
+
},
|
|
182
|
+
"ms_active": {
|
|
141
183
|
"type": "checkbox",
|
|
142
|
-
"label": "
|
|
184
|
+
"label": "ms.aktive",
|
|
185
|
+
"newLine": true,
|
|
186
|
+
"tooltip": "Modbus-proxy via TCP for read-only is active",
|
|
187
|
+
"xs": 12,
|
|
188
|
+
"sm": 12,
|
|
189
|
+
"md": 6,
|
|
190
|
+
"lg": 4,
|
|
191
|
+
"xl": 4
|
|
192
|
+
},
|
|
193
|
+
"ms_address": {
|
|
194
|
+
"type": "text",
|
|
195
|
+
"label": "ms.address",
|
|
143
196
|
"newLine": true,
|
|
144
|
-
"
|
|
197
|
+
"tooltip": "If want to listen only at localhost use 127.0.0.1",
|
|
198
|
+
"xs": 12,
|
|
199
|
+
"sm": 12,
|
|
200
|
+
"md": 6,
|
|
201
|
+
"lg": 4,
|
|
202
|
+
"xl": 4
|
|
145
203
|
},
|
|
146
|
-
"
|
|
204
|
+
"ms_port": {
|
|
205
|
+
"type": "port",
|
|
206
|
+
"label": "ms.port",
|
|
207
|
+
"newLine": true,
|
|
208
|
+
"tooltip" : "The Modbus-proxy TCP port",
|
|
209
|
+
"xs": 12,
|
|
210
|
+
"sm": 12,
|
|
211
|
+
"md": 6,
|
|
212
|
+
"lg": 4,
|
|
213
|
+
"xl": 4
|
|
214
|
+
},
|
|
215
|
+
"ms_log": {
|
|
147
216
|
"type": "checkbox",
|
|
148
|
-
"label": "
|
|
217
|
+
"label": "ms.log",
|
|
149
218
|
"newLine": true,
|
|
150
|
-
"
|
|
219
|
+
"tooltip": "Advanced logging",
|
|
220
|
+
"xs": 12,
|
|
221
|
+
"sm": 12,
|
|
222
|
+
"md": 6,
|
|
223
|
+
"lg": 4,
|
|
224
|
+
"xl": 4
|
|
151
225
|
}
|
|
152
226
|
}
|
|
153
227
|
},
|
|
@@ -170,7 +244,12 @@
|
|
|
170
244
|
"type": "checkbox",
|
|
171
245
|
"label": "Create default TOU setting",
|
|
172
246
|
"newLine": true,
|
|
173
|
-
"help": "The “default TOU settings” is interesting for the “force battery charging from the grid” function, which is required for variable energy prices."
|
|
247
|
+
"help": "The “default TOU settings” is interesting for the “force battery charging from the grid” function, which is required for variable energy prices.",
|
|
248
|
+
"xs": 12,
|
|
249
|
+
"sm": 12,
|
|
250
|
+
"md": 6,
|
|
251
|
+
"lg": 4,
|
|
252
|
+
"xl": 4
|
|
174
253
|
},
|
|
175
254
|
"staticLink1": {
|
|
176
255
|
"type": "staticLink",
|
|
@@ -178,7 +257,12 @@
|
|
|
178
257
|
"href": "https://github.com/bolliy/ioBroker.sun2000/wiki/Battery-control",
|
|
179
258
|
"button": true,
|
|
180
259
|
"icon": "info",
|
|
181
|
-
"newLine": true
|
|
260
|
+
"newLine": true,
|
|
261
|
+
"xs": 12,
|
|
262
|
+
"sm": 12,
|
|
263
|
+
"md": 6,
|
|
264
|
+
"lg": 3,
|
|
265
|
+
"xl": 3
|
|
182
266
|
},
|
|
183
267
|
"mainHdr2": {
|
|
184
268
|
"newLine": true,
|
|
@@ -197,7 +281,12 @@
|
|
|
197
281
|
"href": "https://github.com/bolliy/ioBroker.sun2000/wiki/Erzwungenes-Laden-und-Entladen-der-Batterie-(Force-charge-discharge-battery)",
|
|
198
282
|
"button": true,
|
|
199
283
|
"icon": "info",
|
|
200
|
-
"newLine": true
|
|
284
|
+
"newLine": true,
|
|
285
|
+
"xs": 12,
|
|
286
|
+
"sm": 12,
|
|
287
|
+
"md": 6,
|
|
288
|
+
"lg": 3,
|
|
289
|
+
"xl": 3
|
|
201
290
|
},
|
|
202
291
|
"mainHdr3": {
|
|
203
292
|
"newLine": true,
|
|
@@ -216,89 +305,111 @@
|
|
|
216
305
|
"href": "https://github.com/bolliy/ioBroker.sun2000/wiki/Begrenzung-Netzeinspeisung-(Export-Control)",
|
|
217
306
|
"button": true,
|
|
218
307
|
"icon": "info",
|
|
219
|
-
"newLine": true
|
|
308
|
+
"newLine": true,
|
|
309
|
+
"xs": 12,
|
|
310
|
+
"sm": 12,
|
|
311
|
+
"md": 6,
|
|
312
|
+
"lg": 3,
|
|
313
|
+
"xl": 3
|
|
220
314
|
}
|
|
221
315
|
}
|
|
222
316
|
},
|
|
223
|
-
"
|
|
317
|
+
"tab7": {
|
|
224
318
|
"type": "panel",
|
|
225
|
-
"label": "
|
|
319
|
+
"label": "Further Register",
|
|
226
320
|
"items": {
|
|
227
|
-
"
|
|
321
|
+
"mainHdr1": {
|
|
228
322
|
"newLine": true,
|
|
229
323
|
"type": "header",
|
|
230
|
-
"text": "
|
|
324
|
+
"text": "Further battery register data",
|
|
231
325
|
"size": 2
|
|
232
326
|
},
|
|
233
|
-
"
|
|
234
|
-
"type": "staticText",
|
|
235
|
-
"text": "The SmartLogger monitors and manages PV systems and energy storage systems. It converges all ports, converts protocols, collects and stores data, and centrally monitors and maintains the devices in the systems.",
|
|
236
|
-
"newLine": true
|
|
237
|
-
},
|
|
238
|
-
"sl_active": {
|
|
327
|
+
"ds_bu": {
|
|
239
328
|
"type": "checkbox",
|
|
240
|
-
"label": "
|
|
329
|
+
"label": "battery units",
|
|
241
330
|
"newLine": true,
|
|
242
|
-
"
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
"
|
|
246
|
-
"
|
|
247
|
-
"
|
|
331
|
+
"help": "This register data is stored in the opject path “sun2000.x.inverter.x.battery.unit”",
|
|
332
|
+
"xs": 12,
|
|
333
|
+
"sm": 12,
|
|
334
|
+
"md": 6,
|
|
335
|
+
"lg": 4,
|
|
336
|
+
"xl": 4
|
|
337
|
+
},
|
|
338
|
+
"ds_bp": {
|
|
339
|
+
"type": "checkbox",
|
|
340
|
+
"label": "battery packs",
|
|
248
341
|
"newLine": true,
|
|
249
|
-
"
|
|
342
|
+
"help": "This register data is stored in the opject path “sun2000.x.inverter.x.battery.unit.x.pack”",
|
|
343
|
+
"xs": 12,
|
|
344
|
+
"sm": 12,
|
|
345
|
+
"md": 6,
|
|
346
|
+
"lg": 4,
|
|
347
|
+
"xl": 4
|
|
250
348
|
}
|
|
251
|
-
|
|
252
349
|
}
|
|
253
350
|
},
|
|
254
|
-
"
|
|
351
|
+
"tab2": {
|
|
255
352
|
"type": "panel",
|
|
256
|
-
"label": "Modbus
|
|
353
|
+
"label": "Modbus timing",
|
|
257
354
|
"items": {
|
|
258
|
-
"
|
|
355
|
+
"timmingHdr1": {
|
|
259
356
|
"newLine": true,
|
|
260
357
|
"type": "header",
|
|
261
|
-
"text": "Modbus
|
|
358
|
+
"text": "Modbus timing Settings",
|
|
262
359
|
"size": 2
|
|
263
360
|
},
|
|
264
|
-
"
|
|
265
|
-
"type": "
|
|
266
|
-
"
|
|
267
|
-
"
|
|
268
|
-
|
|
269
|
-
"ms_active": {
|
|
270
|
-
"type": "checkbox",
|
|
271
|
-
"label": "ms.aktive",
|
|
361
|
+
"timeout": {
|
|
362
|
+
"type": "number",
|
|
363
|
+
"label": "timeout (ms)",
|
|
364
|
+
"min" : 5000,
|
|
365
|
+
"max" : 30000,
|
|
272
366
|
"newLine": true,
|
|
273
|
-
"tooltip": "
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
"
|
|
277
|
-
"
|
|
367
|
+
"tooltip": "modbus connection timeout",
|
|
368
|
+
"xs": 12,
|
|
369
|
+
"sm": 12,
|
|
370
|
+
"md": 6,
|
|
371
|
+
"lg": 4,
|
|
372
|
+
"xl": 4
|
|
373
|
+
},
|
|
374
|
+
"delay": {
|
|
375
|
+
"type": "number",
|
|
376
|
+
"label": "delay (ms)",
|
|
377
|
+
"min" : 0,
|
|
378
|
+
"max" : 6000,
|
|
278
379
|
"newLine": true,
|
|
279
|
-
"tooltip": "
|
|
380
|
+
"tooltip": "delay between modbus requests",
|
|
381
|
+
"xs": 12,
|
|
280
382
|
"sm": 12,
|
|
281
|
-
"md":
|
|
282
|
-
"lg":
|
|
383
|
+
"md": 6,
|
|
384
|
+
"lg": 4,
|
|
385
|
+
"xl": 4
|
|
283
386
|
},
|
|
284
|
-
"
|
|
285
|
-
"type": "
|
|
286
|
-
"label": "ms
|
|
287
|
-
"
|
|
288
|
-
"
|
|
289
|
-
"lg":2,
|
|
290
|
-
"xs":3,
|
|
387
|
+
"connectDelay": {
|
|
388
|
+
"type": "number",
|
|
389
|
+
"label": "connect delay (ms)",
|
|
390
|
+
"min" : 2000,
|
|
391
|
+
"max" : 10000,
|
|
291
392
|
"newLine": true,
|
|
292
|
-
"tooltip"
|
|
393
|
+
"tooltip": "delay after modbus connected",
|
|
394
|
+
"xs": 12,
|
|
395
|
+
"sm": 12,
|
|
396
|
+
"md": 6,
|
|
397
|
+
"lg": 4,
|
|
398
|
+
"xl": 4
|
|
293
399
|
},
|
|
294
|
-
"
|
|
400
|
+
"autoAdjust": {
|
|
295
401
|
"type": "checkbox",
|
|
296
|
-
"label": "
|
|
402
|
+
"label": "auto-adjust",
|
|
297
403
|
"newLine": true,
|
|
298
|
-
"tooltip": "
|
|
299
|
-
|
|
404
|
+
"tooltip": "automatic adjustment of the modbus settings",
|
|
405
|
+
"xs": 12,
|
|
406
|
+
"sm": 12,
|
|
407
|
+
"md": 6,
|
|
408
|
+
"lg": 4,
|
|
409
|
+
"xl": 4
|
|
410
|
+
}
|
|
300
411
|
}
|
|
301
|
-
},
|
|
412
|
+
},
|
|
302
413
|
"tab6": {
|
|
303
414
|
"type": "panel",
|
|
304
415
|
"label": "help",
|
|
@@ -320,7 +431,12 @@
|
|
|
320
431
|
"href": "https://github.com/bolliy/ioBroker.sun2000/wiki/Hilfe-(support)",
|
|
321
432
|
"icon": "info",
|
|
322
433
|
"button": true,
|
|
323
|
-
"newLine": true
|
|
434
|
+
"newLine": true,
|
|
435
|
+
"xs": 12,
|
|
436
|
+
"sm": 12,
|
|
437
|
+
"md": 6,
|
|
438
|
+
"lg": 3,
|
|
439
|
+
"xl": 3
|
|
324
440
|
}
|
|
325
441
|
}
|
|
326
442
|
}
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,34 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "sun2000",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.14.0",
|
|
5
5
|
"news": {
|
|
6
|
+
"0.14.0": {
|
|
7
|
+
"en": "adjust for Responsive Design #121\nlock on asynchronous modbus code\nwriting data via the modbus-proxy #119\nread additional register data of Huawei Emma",
|
|
8
|
+
"de": "anpassung für Responsive Design #121\nasynchrone modbus-code blockieren\nschreiben von daten über die modbus-proxy #119\nweitere Registrierungsdaten von Huawei Emma lesen",
|
|
9
|
+
"ru": "#121\nзамок на асинхронном коде modbus\nзаписи данных через modbus-proxy #119\nпрочитать дополнительные данные реестра Huawei Эмма",
|
|
10
|
+
"pt": "ajustar para Design responsivo #121\nbloqueio no código modbus assíncrono\nescrever dados através do modbus-proxy #119\nleia dados de registro adicionais de Huawei Emma",
|
|
11
|
+
"nl": "aanpassen voor Responsive Design #121\nvergrendelen op asynchrone modbus-code\nschrijven van gegevens via de modbus-proxy #119\nlees extra registergegevens van Huawei Emma",
|
|
12
|
+
"fr": "ajuster pour Responsive Design #121\nverrouillage du code modbus asynchrone\nécrire des données via le modbus-proxy #119\nlire les données supplémentaires du registre de Huawei Emma",
|
|
13
|
+
"it": "regolazione per Responsive Design #121\nblocco su codice modbus asincrono\ndati di scrittura tramite il modbus-proxy #119\nleggere ulteriori dati di registro di Huawei Emma",
|
|
14
|
+
"es": "ajuste para el diseño responsable #121\nbloqueo en código modbus asincrónico\nescribir datos a través del modbus-proxy #119\nleer más datos de registro de Huawei Emma",
|
|
15
|
+
"pl": "dostosowanie do projektu Responsive Design # 121\nblokada asynchronicznego kodu modbusa\nzapisywanie danych za pośrednictwem modbus- proxy # 119\nprzeczytaj dodatkowe dane rejestru Huawei Emma",
|
|
16
|
+
"uk": "регульований для відповідального дизайну #121\nблокування на коді asynchronous modbus\nнаписання даних через modbus-proxy #119\nчитати додаткові реєстраційні дані Huawei Emma",
|
|
17
|
+
"zh-cn": "适应设计 # 121\n锁定同步调制解码\n通过modbus- 代理 119 写入数据\n读取 Huawei Emma 的额外注册数据"
|
|
18
|
+
},
|
|
19
|
+
"0.13.0": {
|
|
20
|
+
"en": "improve Modbus reconnection #116\nconfiguration update\nsimple Integration of Huawei Emma (Huawei Energy Management Assistant) #63",
|
|
21
|
+
"de": "modbus-Reconnection #116 verbessern\nkonfigurationsupdate\neinfache Integration von Huawei Emma (Huawei Energy Management Assistant) #63",
|
|
22
|
+
"ru": "#116\nобновление\nпростая интеграция Huawei Эмма (Huawei Energy Management Assistant) #63",
|
|
23
|
+
"pt": "melhorar a reconexão Modbus #116\natualização de configuração\nsimples integração de Huawei Emma (Huawei Energy Management Assistant) #63",
|
|
24
|
+
"nl": "modbus reconnectie #116 verbeteren\nconfiguratie-update\neenvoudige integratie van Huawei Emma (Huawei Energie Management Assistent) #63",
|
|
25
|
+
"fr": "améliorer la connexion Modbus #116\nmise à jour de configuration\nsimple intégration de Huawei Emma (Huawei Energy Management Assistant) #63",
|
|
26
|
+
"it": "migliorare la riconnessione Modbus #116\naggiornamento configurazione\nintegrazione semplice di Huawei Emma (Huawei Energy Management Assistant) #63",
|
|
27
|
+
"es": "mejorar la reconexión Modbus #116\nactualización de configuración\nsimple integración de Huawei Emma (Auxiliador de Gestión de Energía de Huawei) #63",
|
|
28
|
+
"pl": "poprawić ponowne połączenie Modbus # 116\naktualizacja konfiguracji\nprosta integracja Huawei Emma (Huawei Energy Management Assistant) # 63",
|
|
29
|
+
"uk": "поліпшення відключення Modbus #116\nоновлення конфігурації\nпроста інтеграція Huawei Emma (Huawei Energy Management Assistant) #63",
|
|
30
|
+
"zh-cn": "改进 Modbus 重联 # 116\n配置更新\n简单整合Huawei Emma(Huawei能源管理助理)#63"
|
|
31
|
+
},
|
|
6
32
|
"0.12.1": {
|
|
7
33
|
"en": "no warning from check the valid number during standby: \"no irradiation\"",
|
|
8
34
|
"de": "keine warnung vor der prüfung der gültigen nummer im standby: \"keine bestrahlung\"",
|
|
@@ -67,32 +93,6 @@
|
|
|
67
93
|
"pl": "aktualizacje zależności i konfiguracji\nurządzenie modbus pozostaje aktywne w gotowości na falowniku M2, M3",
|
|
68
94
|
"uk": "оновлення залежності та конфігурації\nмотузковий пристрій залишається активним в автономному режимі на інверторі M2,M3",
|
|
69
95
|
"zh-cn": "依赖和配置更新\nmodbus设备仍然在反转器M2,M3上处于待机状态"
|
|
70
|
-
},
|
|
71
|
-
"0.8.0": {
|
|
72
|
-
"en": "Check numerical values for plausibility #75\nrealization the \"limit the power fed to grid\" (Export control)\nrealization the \"forcible Charge or Discharge Power\"\nIf the error 'ECONNRESET' appear, the modbus proxy should not terminate",
|
|
73
|
-
"de": "Zahlenwerte für Plausibilität prüfen #75\nrealisierung der \"begrenzt die Stromzufuhr zum Netz\" (Exportsteuerung)\nrealisierung der \"forcible Charge or Discharge Power\"\nWenn der Fehler 'ECONNRESET' angezeigt wird, sollte der Modbus-Proxy nicht enden",
|
|
74
|
-
"ru": "Проверьте численные значения правдоподобности #75\nреализация «ограничения мощности, подаваемой в сетку» (Export control)\nреализация «сильной зарядки или выдающейся силы»\nЕсли появляется ошибка \"ECONNRESET\", то прокси-модуль не должен прекращать",
|
|
75
|
-
"pt": "Verificar valores numéricos para plausibilidade #75\nrealização do \"limite o poder alimentado à grade\" (controle de exportação)\nrealização do \"poder de carga ou descarga forcível\"\nSe o erro 'ECONNRESET' aparecer, o proxy modbus não deve terminar",
|
|
76
|
-
"nl": "Numerieke waarden controleren op plausibiliteit #75\nrealisatie van de \"limit the power feed to grid\" (Export control)\nrealisatie van de \"forcible charge or discharge power\"\nAls de fout 'ECONNRESET' verschijnt, moet de modbus-proxy niet worden beëindigd",
|
|
77
|
-
"fr": "Vérifier les valeurs numériques pour la plausibilité #75\nréalisation de la \"limite de la puissance alimentée au réseau\" (contrôle des exportations)\nréalisation de la \"puissance de charge ou de décharge forcée\"\nSi l'erreur 'ECONNESET' apparaît, le proxy modbus ne doit pas se terminer",
|
|
78
|
-
"it": "Controlla i valori numerici per la plausibilità #75\nrealizzazione del \"limite la potenza alimentata alla griglia\" (Controllo dell'esportazione)\nrealizzazione del \"Forcible Charge or Discharge Power\"\nSe viene visualizzato l'errore 'ECONNRESET', il proxy modbus non deve terminare",
|
|
79
|
-
"es": "Compruebe los valores numéricos para la plausibilidad #75\nrealización del \"limitar el poder alimentado a la red\" (Control de exportación)\nrealización del \"poder de carga forzosa o descarga\"\nSi aparece el error 'ECONNRESET', el modbus proxy no debe terminar",
|
|
80
|
-
"pl": "Sprawdź wartości numeryczne pod względem wiarygodności # 75\nrealizacja \"ograniczenie mocy zasilanej do siatki\" (Kontrola eksportu)\nrealizacja \"mocy ładowania lub wyładowania\"\nJeśli pojawi się błąd 'ECONNRESET', proxy modbusa nie powinny kończyć",
|
|
81
|
-
"uk": "Перевірити чисельні значення для плати #75\nреалізація \"випуску потужності, що надходить до сітки\"\nреалізація \"потужного заряду або розряду\"\nЯкщо з'явиться помилка «ЕКОНРЕСЕТ», то модбус не повинен припинити",
|
|
82
|
-
"zh-cn": "请检查archive-date=中的日期值 (帮助) 75\n实现“将供电限制在网格上”(出口管制)\n实现“强制充电或放电”\n如果错误“ ECONRESET” 出现, modbus 代理不应该终止"
|
|
83
|
-
},
|
|
84
|
-
"0.7.1": {
|
|
85
|
-
"en": "inverter model name too many characters #73",
|
|
86
|
-
"de": "wechselrichter modellname zu viele zeichen #73",
|
|
87
|
-
"ru": "инверторное имя модели слишком много символов #73",
|
|
88
|
-
"pt": "inversor nome modelo muitos caracteres #73",
|
|
89
|
-
"nl": "inverter modelnaam te veel tekens #73",
|
|
90
|
-
"fr": "nom de modèle d'onduleur trop de caractères #73",
|
|
91
|
-
"it": "inverter nome modello troppi personaggi #73",
|
|
92
|
-
"es": "inverter nombre de modelo demasiados caracteres #73",
|
|
93
|
-
"pl": "inverter model nazwa zbyt wiele znaków # 73",
|
|
94
|
-
"uk": "ім'я інвертора занадто багато символів #73",
|
|
95
|
-
"zh-cn": "翻转模型名称过多字符 # 73"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"titleLang": {
|
|
@@ -245,9 +245,9 @@
|
|
|
245
245
|
"ms_address": "0.0.0.0",
|
|
246
246
|
"ms_port": 502,
|
|
247
247
|
"ms_log": false,
|
|
248
|
-
"sl_active": false,
|
|
249
248
|
"sl_meterId": 11,
|
|
250
|
-
"ds_bu": true
|
|
249
|
+
"ds_bu": true,
|
|
250
|
+
"integration": 0
|
|
251
251
|
},
|
|
252
252
|
"objects": [],
|
|
253
253
|
"instanceObjects": [
|