iobroker.senec 1.1.1 → 1.3.3
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/LICENSE +3 -1
- package/README.md +60 -70
- package/admin/index_m.html +2 -0
- package/admin/style.css +31 -31
- package/io-package.json +74 -206
- package/lib/adapter-config.d.ts +18 -18
- package/lib/state_attr.js +1145 -1
- package/lib/state_trans.js +467 -0
- package/lib/tools.js +99 -98
- package/main.js +186 -39
- package/package.json +34 -23
- package/admin/admin.d.ts +0 -93
- package/docs/de/README.md +0 -539
- package/docs/de/media/mainSettings.png +0 -0
- package/docs/en/README.md +0 -519
- package/docs/en/media/mainSettings.png +0 -0
- package/lib/batt_type_desc.js +0 -23
- package/lib/country_desc.js +0 -20
- package/lib/mode_desc.js +0 -285
- package/lib/sys_type_desc.js +0 -68
- package/main.test.js +0 -30
package/lib/state_attr.js
CHANGED
|
@@ -1,6 +1,870 @@
|
|
|
1
1
|
// State attributes
|
|
2
2
|
|
|
3
3
|
const state_attr = {
|
|
4
|
+
'_calc.Autarky.today': {
|
|
5
|
+
name: 'Autarky - Today',
|
|
6
|
+
unit: '%',
|
|
7
|
+
booltype: false,
|
|
8
|
+
datetype: false,
|
|
9
|
+
iptype: false,
|
|
10
|
+
multiply: 1
|
|
11
|
+
},
|
|
12
|
+
'_calc.Autarky.yesterday': {
|
|
13
|
+
name: 'Autarky - Yesterday',
|
|
14
|
+
unit: '%',
|
|
15
|
+
booltype: false,
|
|
16
|
+
datetype: false,
|
|
17
|
+
iptype: false,
|
|
18
|
+
multiply: 1
|
|
19
|
+
},
|
|
20
|
+
'_calc.Autarky.week': {
|
|
21
|
+
name: 'Autarky - Week',
|
|
22
|
+
unit: '%',
|
|
23
|
+
booltype: false,
|
|
24
|
+
datetype: false,
|
|
25
|
+
iptype: false,
|
|
26
|
+
multiply: 1
|
|
27
|
+
},
|
|
28
|
+
'_calc.Autarky.lastWeek': {
|
|
29
|
+
name: 'Autarky - Last Week',
|
|
30
|
+
unit: '%',
|
|
31
|
+
booltype: false,
|
|
32
|
+
datetype: false,
|
|
33
|
+
iptype: false,
|
|
34
|
+
multiply: 1
|
|
35
|
+
},
|
|
36
|
+
'_calc.Autarky.month': {
|
|
37
|
+
name: 'Autarky - Month',
|
|
38
|
+
unit: '%',
|
|
39
|
+
booltype: false,
|
|
40
|
+
datetype: false,
|
|
41
|
+
iptype: false,
|
|
42
|
+
multiply: 1
|
|
43
|
+
},
|
|
44
|
+
'_calc.Autarky.lastMonth': {
|
|
45
|
+
name: 'Autarky - Last Month',
|
|
46
|
+
unit: '%',
|
|
47
|
+
booltype: false,
|
|
48
|
+
datetype: false,
|
|
49
|
+
iptype: false,
|
|
50
|
+
multiply: 1
|
|
51
|
+
},
|
|
52
|
+
'_calc.Autarky.year': {
|
|
53
|
+
name: 'Autarky - Year',
|
|
54
|
+
unit: '%',
|
|
55
|
+
booltype: false,
|
|
56
|
+
datetype: false,
|
|
57
|
+
iptype: false,
|
|
58
|
+
multiply: 1
|
|
59
|
+
},
|
|
60
|
+
'_calc.Autarky.lastYear': {
|
|
61
|
+
name: 'Autarky - Last Year',
|
|
62
|
+
unit: '%',
|
|
63
|
+
booltype: false,
|
|
64
|
+
datetype: false,
|
|
65
|
+
iptype: false,
|
|
66
|
+
multiply: 1
|
|
67
|
+
},
|
|
68
|
+
'_calc.Autarky.refDay': {
|
|
69
|
+
name: 'Autarky - Reference Day',
|
|
70
|
+
unit: '',
|
|
71
|
+
booltype: false,
|
|
72
|
+
datetype: false,
|
|
73
|
+
iptype: false,
|
|
74
|
+
multiply: 1
|
|
75
|
+
},
|
|
76
|
+
'_calc.Autarky.refWeek': {
|
|
77
|
+
name: 'Autarky - Reference Week',
|
|
78
|
+
unit: '',
|
|
79
|
+
booltype: false,
|
|
80
|
+
datetype: false,
|
|
81
|
+
iptype: false,
|
|
82
|
+
multiply: 1
|
|
83
|
+
},
|
|
84
|
+
'_calc.Autarky.refMonth': {
|
|
85
|
+
name: 'Autarky - Reference Month',
|
|
86
|
+
unit: '',
|
|
87
|
+
booltype: false,
|
|
88
|
+
datetype: false,
|
|
89
|
+
iptype: false,
|
|
90
|
+
multiply: 1
|
|
91
|
+
},
|
|
92
|
+
'_calc.Autarky.refYear': {
|
|
93
|
+
name: 'Autarky - Reference Year',
|
|
94
|
+
unit: '',
|
|
95
|
+
booltype: false,
|
|
96
|
+
datetype: false,
|
|
97
|
+
iptype: false,
|
|
98
|
+
multiply: 1
|
|
99
|
+
},
|
|
100
|
+
'_calc.LIVE_GRID_EXPORT.today': {
|
|
101
|
+
name: 'Exported to grid - Today',
|
|
102
|
+
unit: 'kWh',
|
|
103
|
+
booltype: false,
|
|
104
|
+
datetype: false,
|
|
105
|
+
iptype: false,
|
|
106
|
+
multiply: 1
|
|
107
|
+
},
|
|
108
|
+
'_calc.LIVE_GRID_EXPORT.yesterday': {
|
|
109
|
+
name: 'Exported to grid - Yesterday',
|
|
110
|
+
unit: 'kWh',
|
|
111
|
+
booltype: false,
|
|
112
|
+
datetype: false,
|
|
113
|
+
iptype: false,
|
|
114
|
+
multiply: 1
|
|
115
|
+
},
|
|
116
|
+
'_calc.LIVE_GRID_EXPORT.refValue': {
|
|
117
|
+
name: 'Exported to grid - Reference Value',
|
|
118
|
+
unit: 'kWh',
|
|
119
|
+
booltype: false,
|
|
120
|
+
datetype: false,
|
|
121
|
+
iptype: false,
|
|
122
|
+
multiply: 1
|
|
123
|
+
},
|
|
124
|
+
'_calc.LIVE_GRID_EXPORT.refDay': {
|
|
125
|
+
name: 'Exported to grid - Reference Day',
|
|
126
|
+
unit: '',
|
|
127
|
+
booltype: false,
|
|
128
|
+
datetype: false,
|
|
129
|
+
iptype: false,
|
|
130
|
+
multiply: 1
|
|
131
|
+
},
|
|
132
|
+
'_calc.LIVE_GRID_IMPORT.today': {
|
|
133
|
+
name: 'Imported from grid - Today',
|
|
134
|
+
unit: 'kWh',
|
|
135
|
+
booltype: false,
|
|
136
|
+
datetype: false,
|
|
137
|
+
iptype: false,
|
|
138
|
+
multiply: 1
|
|
139
|
+
},
|
|
140
|
+
'_calc.LIVE_GRID_IMPORT.yesterday': {
|
|
141
|
+
name: 'Imported from grid - Yesterday',
|
|
142
|
+
unit: 'kWh',
|
|
143
|
+
booltype: false,
|
|
144
|
+
datetype: false,
|
|
145
|
+
iptype: false,
|
|
146
|
+
multiply: 1
|
|
147
|
+
},
|
|
148
|
+
'_calc.LIVE_GRID_IMPORT.refValue': {
|
|
149
|
+
name: 'Imported from grid - Reference Value',
|
|
150
|
+
unit: 'kWh',
|
|
151
|
+
booltype: false,
|
|
152
|
+
datetype: false,
|
|
153
|
+
iptype: false,
|
|
154
|
+
multiply: 1
|
|
155
|
+
},
|
|
156
|
+
'_calc.LIVE_GRID_IMPORT.refDay': {
|
|
157
|
+
name: 'Imported from grid - Reference Day',
|
|
158
|
+
unit: '',
|
|
159
|
+
booltype: false,
|
|
160
|
+
datetype: false,
|
|
161
|
+
iptype: false,
|
|
162
|
+
multiply: 1
|
|
163
|
+
},
|
|
164
|
+
'_calc.LIVE_HOUSE_CONS.today': {
|
|
165
|
+
name: 'House Consumption - Today',
|
|
166
|
+
unit: 'kWh',
|
|
167
|
+
booltype: false,
|
|
168
|
+
datetype: false,
|
|
169
|
+
iptype: false,
|
|
170
|
+
multiply: 1
|
|
171
|
+
},
|
|
172
|
+
'_calc.LIVE_HOUSE_CONS.yesterday': {
|
|
173
|
+
name: 'House Consumption - Yesterday',
|
|
174
|
+
unit: 'kWh',
|
|
175
|
+
booltype: false,
|
|
176
|
+
datetype: false,
|
|
177
|
+
iptype: false,
|
|
178
|
+
multiply: 1
|
|
179
|
+
},
|
|
180
|
+
'_calc.LIVE_HOUSE_CONS.refValue': {
|
|
181
|
+
name: 'House Consumption - Reference Value',
|
|
182
|
+
unit: 'kWh',
|
|
183
|
+
booltype: false,
|
|
184
|
+
datetype: false,
|
|
185
|
+
iptype: false,
|
|
186
|
+
multiply: 1
|
|
187
|
+
},
|
|
188
|
+
'_calc.LIVE_HOUSE_CONS.refDay': {
|
|
189
|
+
name: 'House Consumption - Reference Day',
|
|
190
|
+
unit: '',
|
|
191
|
+
booltype: false,
|
|
192
|
+
datetype: false,
|
|
193
|
+
iptype: false,
|
|
194
|
+
multiply: 1
|
|
195
|
+
},
|
|
196
|
+
'_calc.LIVE_PV_GEN.today': {
|
|
197
|
+
name: 'Generated Power - Today',
|
|
198
|
+
unit: 'kWh',
|
|
199
|
+
booltype: false,
|
|
200
|
+
datetype: false,
|
|
201
|
+
iptype: false,
|
|
202
|
+
multiply: 1
|
|
203
|
+
},
|
|
204
|
+
'_calc.LIVE_PV_GEN.yesterday': {
|
|
205
|
+
name: 'Generated Power - Yesterday',
|
|
206
|
+
unit: 'kWh',
|
|
207
|
+
booltype: false,
|
|
208
|
+
datetype: false,
|
|
209
|
+
iptype: false,
|
|
210
|
+
multiply: 1
|
|
211
|
+
},
|
|
212
|
+
'_calc.LIVE_PV_GEN.refValue': {
|
|
213
|
+
name: 'Generated Power - Reference Value',
|
|
214
|
+
unit: 'kWh',
|
|
215
|
+
booltype: false,
|
|
216
|
+
datetype: false,
|
|
217
|
+
iptype: false,
|
|
218
|
+
multiply: 1
|
|
219
|
+
},
|
|
220
|
+
'_calc.LIVE_PV_GEN.refDay': {
|
|
221
|
+
name: 'Generated Power - Reference Day',
|
|
222
|
+
unit: '',
|
|
223
|
+
booltype: false,
|
|
224
|
+
datetype: false,
|
|
225
|
+
iptype: false,
|
|
226
|
+
multiply: 1
|
|
227
|
+
},
|
|
228
|
+
'_calc.LIVE_BAT_CHARGE_MASTER.today': {
|
|
229
|
+
name: 'Battery Charged - Today',
|
|
230
|
+
unit: 'kWh',
|
|
231
|
+
booltype: false,
|
|
232
|
+
datetype: false,
|
|
233
|
+
iptype: false,
|
|
234
|
+
multiply: 1
|
|
235
|
+
},
|
|
236
|
+
'_calc.LIVE_BAT_CHARGE_MASTER.yesterday': {
|
|
237
|
+
name: 'Battery Charged - Yesterday',
|
|
238
|
+
unit: 'kWh',
|
|
239
|
+
booltype: false,
|
|
240
|
+
datetype: false,
|
|
241
|
+
iptype: false,
|
|
242
|
+
multiply: 1
|
|
243
|
+
},
|
|
244
|
+
'_calc.LIVE_BAT_CHARGE_MASTER.refValue': {
|
|
245
|
+
name: 'Battery Charged - Reference Value',
|
|
246
|
+
unit: 'kWh',
|
|
247
|
+
booltype: false,
|
|
248
|
+
datetype: false,
|
|
249
|
+
iptype: false,
|
|
250
|
+
multiply: 1
|
|
251
|
+
},
|
|
252
|
+
'_calc.LIVE_BAT_CHARGE_MASTER.refDay': {
|
|
253
|
+
name: 'Battery Charged - Reference Day',
|
|
254
|
+
unit: '',
|
|
255
|
+
booltype: false,
|
|
256
|
+
datetype: false,
|
|
257
|
+
iptype: false,
|
|
258
|
+
multiply: 1
|
|
259
|
+
},
|
|
260
|
+
'_calc.LIVE_BAT_DISCHARGE_MASTER.today': {
|
|
261
|
+
name: 'Battery Discharged - Today',
|
|
262
|
+
unit: 'kWh',
|
|
263
|
+
booltype: false,
|
|
264
|
+
datetype: false,
|
|
265
|
+
iptype: false,
|
|
266
|
+
multiply: 1
|
|
267
|
+
},
|
|
268
|
+
'_calc.LIVE_BAT_DISCHARGE_MASTER.yesterday': {
|
|
269
|
+
name: 'Battery Discharged - Yesterday',
|
|
270
|
+
unit: 'kWh',
|
|
271
|
+
booltype: false,
|
|
272
|
+
datetype: false,
|
|
273
|
+
iptype: false,
|
|
274
|
+
multiply: 1
|
|
275
|
+
},
|
|
276
|
+
'_calc.LIVE_BAT_DISCHARGE_MASTER.refValue': {
|
|
277
|
+
name: 'Battery Discharged - Reference Value',
|
|
278
|
+
unit: 'kWh',
|
|
279
|
+
booltype: false,
|
|
280
|
+
datetype: false,
|
|
281
|
+
iptype: false,
|
|
282
|
+
multiply: 1
|
|
283
|
+
},
|
|
284
|
+
'_calc.LIVE_BAT_DISCHARGE_MASTER.refDay': {
|
|
285
|
+
name: 'Battery Discharged - Reference Day',
|
|
286
|
+
unit: '',
|
|
287
|
+
booltype: false,
|
|
288
|
+
datetype: false,
|
|
289
|
+
iptype: false,
|
|
290
|
+
multiply: 1
|
|
291
|
+
},
|
|
292
|
+
'_calc.LIVE_GRID_EXPORT.week': {
|
|
293
|
+
name: 'Exported to grid - Week',
|
|
294
|
+
unit: 'kWh',
|
|
295
|
+
booltype: false,
|
|
296
|
+
datetype: false,
|
|
297
|
+
iptype: false,
|
|
298
|
+
multiply: 1
|
|
299
|
+
},
|
|
300
|
+
'_calc.LIVE_GRID_EXPORT.lastWeek': {
|
|
301
|
+
name: 'Exported to grid - Last Week',
|
|
302
|
+
unit: 'kWh',
|
|
303
|
+
booltype: false,
|
|
304
|
+
datetype: false,
|
|
305
|
+
iptype: false,
|
|
306
|
+
multiply: 1
|
|
307
|
+
},
|
|
308
|
+
'_calc.LIVE_GRID_EXPORT.refValueWeek': {
|
|
309
|
+
name: 'Exported to grid - Reference Value Week',
|
|
310
|
+
unit: 'kWh',
|
|
311
|
+
booltype: false,
|
|
312
|
+
datetype: false,
|
|
313
|
+
iptype: false,
|
|
314
|
+
multiply: 1
|
|
315
|
+
},
|
|
316
|
+
'_calc.LIVE_GRID_EXPORT.refWeek': {
|
|
317
|
+
name: 'Exported to grid - Reference Week',
|
|
318
|
+
unit: '',
|
|
319
|
+
booltype: false,
|
|
320
|
+
datetype: false,
|
|
321
|
+
iptype: false,
|
|
322
|
+
multiply: 1
|
|
323
|
+
},
|
|
324
|
+
'_calc.LIVE_GRID_IMPORT.week': {
|
|
325
|
+
name: 'Imported from grid - Week',
|
|
326
|
+
unit: 'kWh',
|
|
327
|
+
booltype: false,
|
|
328
|
+
datetype: false,
|
|
329
|
+
iptype: false,
|
|
330
|
+
multiply: 1
|
|
331
|
+
},
|
|
332
|
+
'_calc.LIVE_GRID_IMPORT.lastWeek': {
|
|
333
|
+
name: 'Imported from grid - Last Week',
|
|
334
|
+
unit: 'kWh',
|
|
335
|
+
booltype: false,
|
|
336
|
+
datetype: false,
|
|
337
|
+
iptype: false,
|
|
338
|
+
multiply: 1
|
|
339
|
+
},
|
|
340
|
+
'_calc.LIVE_GRID_IMPORT.refValueWeek': {
|
|
341
|
+
name: 'Imported from grid - Reference Value Week',
|
|
342
|
+
unit: 'kWh',
|
|
343
|
+
booltype: false,
|
|
344
|
+
datetype: false,
|
|
345
|
+
iptype: false,
|
|
346
|
+
multiply: 1
|
|
347
|
+
},
|
|
348
|
+
'_calc.LIVE_GRID_IMPORT.refWeek': {
|
|
349
|
+
name: 'Imported from grid - Reference Week',
|
|
350
|
+
unit: '',
|
|
351
|
+
booltype: false,
|
|
352
|
+
datetype: false,
|
|
353
|
+
iptype: false,
|
|
354
|
+
multiply: 1
|
|
355
|
+
},
|
|
356
|
+
'_calc.LIVE_HOUSE_CONS.week': {
|
|
357
|
+
name: 'House Consumption - Week',
|
|
358
|
+
unit: 'kWh',
|
|
359
|
+
booltype: false,
|
|
360
|
+
datetype: false,
|
|
361
|
+
iptype: false,
|
|
362
|
+
multiply: 1
|
|
363
|
+
},
|
|
364
|
+
'_calc.LIVE_HOUSE_CONS.lastWeek': {
|
|
365
|
+
name: 'House Consumption - Last Week',
|
|
366
|
+
unit: 'kWh',
|
|
367
|
+
booltype: false,
|
|
368
|
+
datetype: false,
|
|
369
|
+
iptype: false,
|
|
370
|
+
multiply: 1
|
|
371
|
+
},
|
|
372
|
+
'_calc.LIVE_HOUSE_CONS.refValueWeek': {
|
|
373
|
+
name: 'House Consumption - Reference Value Week',
|
|
374
|
+
unit: 'kWh',
|
|
375
|
+
booltype: false,
|
|
376
|
+
datetype: false,
|
|
377
|
+
iptype: false,
|
|
378
|
+
multiply: 1
|
|
379
|
+
},
|
|
380
|
+
'_calc.LIVE_HOUSE_CONS.refWeek': {
|
|
381
|
+
name: 'House Consumption - Reference Week',
|
|
382
|
+
unit: '',
|
|
383
|
+
booltype: false,
|
|
384
|
+
datetype: false,
|
|
385
|
+
iptype: false,
|
|
386
|
+
multiply: 1
|
|
387
|
+
},
|
|
388
|
+
'_calc.LIVE_PV_GEN.week': {
|
|
389
|
+
name: 'Generated Power - Week',
|
|
390
|
+
unit: 'kWh',
|
|
391
|
+
booltype: false,
|
|
392
|
+
datetype: false,
|
|
393
|
+
iptype: false,
|
|
394
|
+
multiply: 1
|
|
395
|
+
},
|
|
396
|
+
'_calc.LIVE_PV_GEN.lastWeek': {
|
|
397
|
+
name: 'Generated Power - Last Week',
|
|
398
|
+
unit: 'kWh',
|
|
399
|
+
booltype: false,
|
|
400
|
+
datetype: false,
|
|
401
|
+
iptype: false,
|
|
402
|
+
multiply: 1
|
|
403
|
+
},
|
|
404
|
+
'_calc.LIVE_PV_GEN.refValueWeek': {
|
|
405
|
+
name: 'Generated Power - Reference Value Week',
|
|
406
|
+
unit: 'kWh',
|
|
407
|
+
booltype: false,
|
|
408
|
+
datetype: false,
|
|
409
|
+
iptype: false,
|
|
410
|
+
multiply: 1
|
|
411
|
+
},
|
|
412
|
+
'_calc.LIVE_PV_GEN.refWeek': {
|
|
413
|
+
name: 'Generated Power - Reference Week',
|
|
414
|
+
unit: '',
|
|
415
|
+
booltype: false,
|
|
416
|
+
datetype: false,
|
|
417
|
+
iptype: false,
|
|
418
|
+
multiply: 1
|
|
419
|
+
},
|
|
420
|
+
'_calc.LIVE_BAT_CHARGE_MASTER.week': {
|
|
421
|
+
name: 'Battery Charged - Week',
|
|
422
|
+
unit: 'kWh',
|
|
423
|
+
booltype: false,
|
|
424
|
+
datetype: false,
|
|
425
|
+
iptype: false,
|
|
426
|
+
multiply: 1
|
|
427
|
+
},
|
|
428
|
+
'_calc.LIVE_BAT_CHARGE_MASTER.lastWeek': {
|
|
429
|
+
name: 'Battery Charged - Last Week',
|
|
430
|
+
unit: 'kWh',
|
|
431
|
+
booltype: false,
|
|
432
|
+
datetype: false,
|
|
433
|
+
iptype: false,
|
|
434
|
+
multiply: 1
|
|
435
|
+
},
|
|
436
|
+
'_calc.LIVE_BAT_CHARGE_MASTER.refValueWeek': {
|
|
437
|
+
name: 'Battery Charged - Reference Value Week',
|
|
438
|
+
unit: 'kWh',
|
|
439
|
+
booltype: false,
|
|
440
|
+
datetype: false,
|
|
441
|
+
iptype: false,
|
|
442
|
+
multiply: 1
|
|
443
|
+
},
|
|
444
|
+
'_calc.LIVE_BAT_CHARGE_MASTER.refWeek': {
|
|
445
|
+
name: 'Battery Charged - Reference Week',
|
|
446
|
+
unit: '',
|
|
447
|
+
booltype: false,
|
|
448
|
+
datetype: false,
|
|
449
|
+
iptype: false,
|
|
450
|
+
multiply: 1
|
|
451
|
+
},
|
|
452
|
+
'_calc.LIVE_BAT_DISCHARGE_MASTER.week': {
|
|
453
|
+
name: 'Battery Discharged - Week',
|
|
454
|
+
unit: 'kWh',
|
|
455
|
+
booltype: false,
|
|
456
|
+
datetype: false,
|
|
457
|
+
iptype: false,
|
|
458
|
+
multiply: 1
|
|
459
|
+
},
|
|
460
|
+
'_calc.LIVE_BAT_DISCHARGE_MASTER.lastWeek': {
|
|
461
|
+
name: 'Battery Discharged - Last Week',
|
|
462
|
+
unit: 'kWh',
|
|
463
|
+
booltype: false,
|
|
464
|
+
datetype: false,
|
|
465
|
+
iptype: false,
|
|
466
|
+
multiply: 1
|
|
467
|
+
},
|
|
468
|
+
'_calc.LIVE_BAT_DISCHARGE_MASTER.refValueWeek': {
|
|
469
|
+
name: 'Battery Discharged - Reference Value Week',
|
|
470
|
+
unit: 'kWh',
|
|
471
|
+
booltype: false,
|
|
472
|
+
datetype: false,
|
|
473
|
+
iptype: false,
|
|
474
|
+
multiply: 1
|
|
475
|
+
},
|
|
476
|
+
'_calc.LIVE_BAT_DISCHARGE_MASTER.refWeek': {
|
|
477
|
+
name: 'Battery Discharged - Reference Week',
|
|
478
|
+
unit: '',
|
|
479
|
+
booltype: false,
|
|
480
|
+
datetype: false,
|
|
481
|
+
iptype: false,
|
|
482
|
+
multiply: 1
|
|
483
|
+
},
|
|
484
|
+
'_calc.LIVE_GRID_EXPORT.month': {
|
|
485
|
+
name: 'Exported to grid - Month',
|
|
486
|
+
unit: 'kWh',
|
|
487
|
+
booltype: false,
|
|
488
|
+
datetype: false,
|
|
489
|
+
iptype: false,
|
|
490
|
+
multiply: 1
|
|
491
|
+
},
|
|
492
|
+
'_calc.LIVE_GRID_EXPORT.lastMonth': {
|
|
493
|
+
name: 'Exported to grid - Last Month',
|
|
494
|
+
unit: 'kWh',
|
|
495
|
+
booltype: false,
|
|
496
|
+
datetype: false,
|
|
497
|
+
iptype: false,
|
|
498
|
+
multiply: 1
|
|
499
|
+
},
|
|
500
|
+
'_calc.LIVE_GRID_EXPORT.refValueMonth': {
|
|
501
|
+
name: 'Exported to grid - Reference Value for Month',
|
|
502
|
+
unit: 'kWh',
|
|
503
|
+
booltype: false,
|
|
504
|
+
datetype: false,
|
|
505
|
+
iptype: false,
|
|
506
|
+
multiply: 1
|
|
507
|
+
},
|
|
508
|
+
'_calc.LIVE_GRID_EXPORT.refMonth': {
|
|
509
|
+
name: 'Exported to grid - Reference Month',
|
|
510
|
+
unit: '',
|
|
511
|
+
booltype: false,
|
|
512
|
+
datetype: false,
|
|
513
|
+
iptype: false,
|
|
514
|
+
multiply: 1
|
|
515
|
+
},
|
|
516
|
+
'_calc.LIVE_GRID_IMPORT.month': {
|
|
517
|
+
name: 'Imported from grid - Month',
|
|
518
|
+
unit: 'kWh',
|
|
519
|
+
booltype: false,
|
|
520
|
+
datetype: false,
|
|
521
|
+
iptype: false,
|
|
522
|
+
multiply: 1
|
|
523
|
+
},
|
|
524
|
+
'_calc.LIVE_GRID_IMPORT.lastMonth': {
|
|
525
|
+
name: 'Imported from grid - Last Month',
|
|
526
|
+
unit: 'kWh',
|
|
527
|
+
booltype: false,
|
|
528
|
+
datetype: false,
|
|
529
|
+
iptype: false,
|
|
530
|
+
multiply: 1
|
|
531
|
+
},
|
|
532
|
+
'_calc.LIVE_GRID_IMPORT.refValueMonth': {
|
|
533
|
+
name: 'Imported from grid - Reference Value Month',
|
|
534
|
+
unit: 'kWh',
|
|
535
|
+
booltype: false,
|
|
536
|
+
datetype: false,
|
|
537
|
+
iptype: false,
|
|
538
|
+
multiply: 1
|
|
539
|
+
},
|
|
540
|
+
'_calc.LIVE_GRID_IMPORT.refMonth': {
|
|
541
|
+
name: 'Imported from grid - Reference Month',
|
|
542
|
+
unit: '',
|
|
543
|
+
booltype: false,
|
|
544
|
+
datetype: false,
|
|
545
|
+
iptype: false,
|
|
546
|
+
multiply: 1
|
|
547
|
+
},
|
|
548
|
+
'_calc.LIVE_HOUSE_CONS.month': {
|
|
549
|
+
name: 'House Consumption - Month',
|
|
550
|
+
unit: 'kWh',
|
|
551
|
+
booltype: false,
|
|
552
|
+
datetype: false,
|
|
553
|
+
iptype: false,
|
|
554
|
+
multiply: 1
|
|
555
|
+
},
|
|
556
|
+
'_calc.LIVE_HOUSE_CONS.lastMonth': {
|
|
557
|
+
name: 'House Consumption - Last Month',
|
|
558
|
+
unit: 'kWh',
|
|
559
|
+
booltype: false,
|
|
560
|
+
datetype: false,
|
|
561
|
+
iptype: false,
|
|
562
|
+
multiply: 1
|
|
563
|
+
},
|
|
564
|
+
'_calc.LIVE_HOUSE_CONS.refValueMonth': {
|
|
565
|
+
name: 'House Consumption - Reference Value Month',
|
|
566
|
+
unit: 'kWh',
|
|
567
|
+
booltype: false,
|
|
568
|
+
datetype: false,
|
|
569
|
+
iptype: false,
|
|
570
|
+
multiply: 1
|
|
571
|
+
},
|
|
572
|
+
'_calc.LIVE_HOUSE_CONS.refMonth': {
|
|
573
|
+
name: 'House Consumption - Reference Month',
|
|
574
|
+
unit: '',
|
|
575
|
+
booltype: false,
|
|
576
|
+
datetype: false,
|
|
577
|
+
iptype: false,
|
|
578
|
+
multiply: 1
|
|
579
|
+
},
|
|
580
|
+
'_calc.LIVE_PV_GEN.month': {
|
|
581
|
+
name: 'Generated Power - Month',
|
|
582
|
+
unit: 'kWh',
|
|
583
|
+
booltype: false,
|
|
584
|
+
datetype: false,
|
|
585
|
+
iptype: false,
|
|
586
|
+
multiply: 1
|
|
587
|
+
},
|
|
588
|
+
'_calc.LIVE_PV_GEN.lastMonth': {
|
|
589
|
+
name: 'Generated Power - Last Month',
|
|
590
|
+
unit: 'kWh',
|
|
591
|
+
booltype: false,
|
|
592
|
+
datetype: false,
|
|
593
|
+
iptype: false,
|
|
594
|
+
multiply: 1
|
|
595
|
+
},
|
|
596
|
+
'_calc.LIVE_PV_GEN.refValueMonth': {
|
|
597
|
+
name: 'Generated Power - Reference Value Month',
|
|
598
|
+
unit: 'kWh',
|
|
599
|
+
booltype: false,
|
|
600
|
+
datetype: false,
|
|
601
|
+
iptype: false,
|
|
602
|
+
multiply: 1
|
|
603
|
+
},
|
|
604
|
+
'_calc.LIVE_PV_GEN.refMonth': {
|
|
605
|
+
name: 'Generated Power - Reference Month',
|
|
606
|
+
unit: '',
|
|
607
|
+
booltype: false,
|
|
608
|
+
datetype: false,
|
|
609
|
+
iptype: false,
|
|
610
|
+
multiply: 1
|
|
611
|
+
},
|
|
612
|
+
'_calc.LIVE_BAT_CHARGE_MASTER.month': {
|
|
613
|
+
name: 'Battery Charged - Month',
|
|
614
|
+
unit: 'kWh',
|
|
615
|
+
booltype: false,
|
|
616
|
+
datetype: false,
|
|
617
|
+
iptype: false,
|
|
618
|
+
multiply: 1
|
|
619
|
+
},
|
|
620
|
+
'_calc.LIVE_BAT_CHARGE_MASTER.lastMonth': {
|
|
621
|
+
name: 'Battery Charged - Last Month',
|
|
622
|
+
unit: 'kWh',
|
|
623
|
+
booltype: false,
|
|
624
|
+
datetype: false,
|
|
625
|
+
iptype: false,
|
|
626
|
+
multiply: 1
|
|
627
|
+
},
|
|
628
|
+
'_calc.LIVE_BAT_CHARGE_MASTER.refValueMonth': {
|
|
629
|
+
name: 'Battery Charged - Reference Value Month',
|
|
630
|
+
unit: 'kWh',
|
|
631
|
+
booltype: false,
|
|
632
|
+
datetype: false,
|
|
633
|
+
iptype: false,
|
|
634
|
+
multiply: 1
|
|
635
|
+
},
|
|
636
|
+
'_calc.LIVE_BAT_CHARGE_MASTER.refMonth': {
|
|
637
|
+
name: 'Battery Charged - Reference Month',
|
|
638
|
+
unit: '',
|
|
639
|
+
booltype: false,
|
|
640
|
+
datetype: false,
|
|
641
|
+
iptype: false,
|
|
642
|
+
multiply: 1
|
|
643
|
+
},
|
|
644
|
+
'_calc.LIVE_BAT_DISCHARGE_MASTER.month': {
|
|
645
|
+
name: 'Battery Discharged - Month',
|
|
646
|
+
unit: 'kWh',
|
|
647
|
+
booltype: false,
|
|
648
|
+
datetype: false,
|
|
649
|
+
iptype: false,
|
|
650
|
+
multiply: 1
|
|
651
|
+
},
|
|
652
|
+
'_calc.LIVE_BAT_DISCHARGE_MASTER.lastMonth': {
|
|
653
|
+
name: 'Battery Discharged - Last Month',
|
|
654
|
+
unit: 'kWh',
|
|
655
|
+
booltype: false,
|
|
656
|
+
datetype: false,
|
|
657
|
+
iptype: false,
|
|
658
|
+
multiply: 1
|
|
659
|
+
},
|
|
660
|
+
'_calc.LIVE_BAT_DISCHARGE_MASTER.refValueMonth': {
|
|
661
|
+
name: 'Battery Discharged - Reference Value Month',
|
|
662
|
+
unit: 'kWh',
|
|
663
|
+
booltype: false,
|
|
664
|
+
datetype: false,
|
|
665
|
+
iptype: false,
|
|
666
|
+
multiply: 1
|
|
667
|
+
},
|
|
668
|
+
'_calc.LIVE_BAT_DISCHARGE_MASTER.refMonth': {
|
|
669
|
+
name: 'Battery Discharged - Reference Month',
|
|
670
|
+
unit: '',
|
|
671
|
+
booltype: false,
|
|
672
|
+
datetype: false,
|
|
673
|
+
iptype: false,
|
|
674
|
+
multiply: 1
|
|
675
|
+
},
|
|
676
|
+
'_calc.LIVE_GRID_EXPORT.year': {
|
|
677
|
+
name: 'Exported to grid - Year',
|
|
678
|
+
unit: 'kWh',
|
|
679
|
+
booltype: false,
|
|
680
|
+
datetype: false,
|
|
681
|
+
iptype: false,
|
|
682
|
+
multiply: 1
|
|
683
|
+
},
|
|
684
|
+
'_calc.LIVE_GRID_EXPORT.lastYear': {
|
|
685
|
+
name: 'Exported to grid - Last Year',
|
|
686
|
+
unit: 'kWh',
|
|
687
|
+
booltype: false,
|
|
688
|
+
datetype: false,
|
|
689
|
+
iptype: false,
|
|
690
|
+
multiply: 1
|
|
691
|
+
},
|
|
692
|
+
'_calc.LIVE_GRID_EXPORT.refValueYear': {
|
|
693
|
+
name: 'Exported to grid - Reference Value for Year',
|
|
694
|
+
unit: 'kWh',
|
|
695
|
+
booltype: false,
|
|
696
|
+
datetype: false,
|
|
697
|
+
iptype: false,
|
|
698
|
+
multiply: 1
|
|
699
|
+
},
|
|
700
|
+
'_calc.LIVE_GRID_EXPORT.refYear': {
|
|
701
|
+
name: 'Exported to grid - Reference Year',
|
|
702
|
+
unit: '',
|
|
703
|
+
booltype: false,
|
|
704
|
+
datetype: false,
|
|
705
|
+
iptype: false,
|
|
706
|
+
multiply: 1
|
|
707
|
+
},
|
|
708
|
+
'_calc.LIVE_GRID_IMPORT.year': {
|
|
709
|
+
name: 'Imported from grid - Year',
|
|
710
|
+
unit: 'kWh',
|
|
711
|
+
booltype: false,
|
|
712
|
+
datetype: false,
|
|
713
|
+
iptype: false,
|
|
714
|
+
multiply: 1
|
|
715
|
+
},
|
|
716
|
+
'_calc.LIVE_GRID_IMPORT.lastYear': {
|
|
717
|
+
name: 'Imported from grid - Last Year',
|
|
718
|
+
unit: 'kWh',
|
|
719
|
+
booltype: false,
|
|
720
|
+
datetype: false,
|
|
721
|
+
iptype: false,
|
|
722
|
+
multiply: 1
|
|
723
|
+
},
|
|
724
|
+
'_calc.LIVE_GRID_IMPORT.refValueYear': {
|
|
725
|
+
name: 'Imported from grid - Reference Value Year',
|
|
726
|
+
unit: 'kWh',
|
|
727
|
+
booltype: false,
|
|
728
|
+
datetype: false,
|
|
729
|
+
iptype: false,
|
|
730
|
+
multiply: 1
|
|
731
|
+
},
|
|
732
|
+
'_calc.LIVE_GRID_IMPORT.refYear': {
|
|
733
|
+
name: 'Imported from grid - Reference Year',
|
|
734
|
+
unit: '',
|
|
735
|
+
booltype: false,
|
|
736
|
+
datetype: false,
|
|
737
|
+
iptype: false,
|
|
738
|
+
multiply: 1
|
|
739
|
+
},
|
|
740
|
+
'_calc.LIVE_HOUSE_CONS.year': {
|
|
741
|
+
name: 'House Consumption - Year',
|
|
742
|
+
unit: 'kWh',
|
|
743
|
+
booltype: false,
|
|
744
|
+
datetype: false,
|
|
745
|
+
iptype: false,
|
|
746
|
+
multiply: 1
|
|
747
|
+
},
|
|
748
|
+
'_calc.LIVE_HOUSE_CONS.lastYear': {
|
|
749
|
+
name: 'House Consumption - Last Year',
|
|
750
|
+
unit: 'kWh',
|
|
751
|
+
booltype: false,
|
|
752
|
+
datetype: false,
|
|
753
|
+
iptype: false,
|
|
754
|
+
multiply: 1
|
|
755
|
+
},
|
|
756
|
+
'_calc.LIVE_HOUSE_CONS.refValueYear': {
|
|
757
|
+
name: 'House Consumption - Reference Value Year',
|
|
758
|
+
unit: 'kWh',
|
|
759
|
+
booltype: false,
|
|
760
|
+
datetype: false,
|
|
761
|
+
iptype: false,
|
|
762
|
+
multiply: 1
|
|
763
|
+
},
|
|
764
|
+
'_calc.LIVE_HOUSE_CONS.refYear': {
|
|
765
|
+
name: 'House Consumption - Reference Year',
|
|
766
|
+
unit: '',
|
|
767
|
+
booltype: false,
|
|
768
|
+
datetype: false,
|
|
769
|
+
iptype: false,
|
|
770
|
+
multiply: 1
|
|
771
|
+
},
|
|
772
|
+
'_calc.LIVE_PV_GEN.year': {
|
|
773
|
+
name: 'Generated Power - Year',
|
|
774
|
+
unit: 'kWh',
|
|
775
|
+
booltype: false,
|
|
776
|
+
datetype: false,
|
|
777
|
+
iptype: false,
|
|
778
|
+
multiply: 1
|
|
779
|
+
},
|
|
780
|
+
'_calc.LIVE_PV_GEN.lastYear': {
|
|
781
|
+
name: 'Generated Power - Last Year',
|
|
782
|
+
unit: 'kWh',
|
|
783
|
+
booltype: false,
|
|
784
|
+
datetype: false,
|
|
785
|
+
iptype: false,
|
|
786
|
+
multiply: 1
|
|
787
|
+
},
|
|
788
|
+
'_calc.LIVE_PV_GEN.refValueYear': {
|
|
789
|
+
name: 'Generated Power - Reference Value Year',
|
|
790
|
+
unit: 'kWh',
|
|
791
|
+
booltype: false,
|
|
792
|
+
datetype: false,
|
|
793
|
+
iptype: false,
|
|
794
|
+
multiply: 1
|
|
795
|
+
},
|
|
796
|
+
'_calc.LIVE_PV_GEN.refYear': {
|
|
797
|
+
name: 'Generated Power - Reference Year',
|
|
798
|
+
unit: '',
|
|
799
|
+
booltype: false,
|
|
800
|
+
datetype: false,
|
|
801
|
+
iptype: false,
|
|
802
|
+
multiply: 1
|
|
803
|
+
},
|
|
804
|
+
'_calc.LIVE_BAT_CHARGE_MASTER.year': {
|
|
805
|
+
name: 'Battery Charged - Year',
|
|
806
|
+
unit: 'kWh',
|
|
807
|
+
booltype: false,
|
|
808
|
+
datetype: false,
|
|
809
|
+
iptype: false,
|
|
810
|
+
multiply: 1
|
|
811
|
+
},
|
|
812
|
+
'_calc.LIVE_BAT_CHARGE_MASTER.lastYear': {
|
|
813
|
+
name: 'Battery Charged - Last Year',
|
|
814
|
+
unit: 'kWh',
|
|
815
|
+
booltype: false,
|
|
816
|
+
datetype: false,
|
|
817
|
+
iptype: false,
|
|
818
|
+
multiply: 1
|
|
819
|
+
},
|
|
820
|
+
'_calc.LIVE_BAT_CHARGE_MASTER.refValueYear': {
|
|
821
|
+
name: 'Battery Charged - Reference Value Year',
|
|
822
|
+
unit: 'kWh',
|
|
823
|
+
booltype: false,
|
|
824
|
+
datetype: false,
|
|
825
|
+
iptype: false,
|
|
826
|
+
multiply: 1
|
|
827
|
+
},
|
|
828
|
+
'_calc.LIVE_BAT_CHARGE_MASTER.refYear': {
|
|
829
|
+
name: 'Battery Charged - Reference Year',
|
|
830
|
+
unit: '',
|
|
831
|
+
booltype: false,
|
|
832
|
+
datetype: false,
|
|
833
|
+
iptype: false,
|
|
834
|
+
multiply: 1
|
|
835
|
+
},
|
|
836
|
+
'_calc.LIVE_BAT_DISCHARGE_MASTER.year': {
|
|
837
|
+
name: 'Battery Discharged - Year',
|
|
838
|
+
unit: 'kWh',
|
|
839
|
+
booltype: false,
|
|
840
|
+
datetype: false,
|
|
841
|
+
iptype: false,
|
|
842
|
+
multiply: 1
|
|
843
|
+
},
|
|
844
|
+
'_calc.LIVE_BAT_DISCHARGE_MASTER.lastYear': {
|
|
845
|
+
name: 'Battery Discharged - Last Year',
|
|
846
|
+
unit: 'kWh',
|
|
847
|
+
booltype: false,
|
|
848
|
+
datetype: false,
|
|
849
|
+
iptype: false,
|
|
850
|
+
multiply: 1
|
|
851
|
+
},
|
|
852
|
+
'_calc.LIVE_BAT_DISCHARGE_MASTER.refValueYear': {
|
|
853
|
+
name: 'Battery Discharged - Reference Value Year',
|
|
854
|
+
unit: 'kWh',
|
|
855
|
+
booltype: false,
|
|
856
|
+
datetype: false,
|
|
857
|
+
iptype: false,
|
|
858
|
+
multiply: 1
|
|
859
|
+
},
|
|
860
|
+
'_calc.LIVE_BAT_DISCHARGE_MASTER.refYear': {
|
|
861
|
+
name: 'Battery Discharged - Reference Year',
|
|
862
|
+
unit: '',
|
|
863
|
+
booltype: false,
|
|
864
|
+
datetype: false,
|
|
865
|
+
iptype: false,
|
|
866
|
+
multiply: 1
|
|
867
|
+
},
|
|
4
868
|
'BAT1.BATTERIES_MISSING': {
|
|
5
869
|
name: 'BATTERIES_MISSING',
|
|
6
870
|
unit: '',
|
|
@@ -1553,6 +2417,14 @@ const state_attr = {
|
|
|
1553
2417
|
iptype: false,
|
|
1554
2418
|
multiply: 1
|
|
1555
2419
|
},
|
|
2420
|
+
'EG_CONTROL.ACTIVE': {
|
|
2421
|
+
name: 'EG_CONTROL.ACTIVE',
|
|
2422
|
+
unit: '',
|
|
2423
|
+
booltype: true,
|
|
2424
|
+
datetype: false,
|
|
2425
|
+
iptype: false,
|
|
2426
|
+
multiply: 1
|
|
2427
|
+
},
|
|
1556
2428
|
'ENERGY.FORCE_FULL_CHARGE': {
|
|
1557
2429
|
name: 'Force Full Charge',
|
|
1558
2430
|
unit: '',
|
|
@@ -2208,6 +3080,14 @@ const state_attr = {
|
|
|
2208
3080
|
datetype: false,
|
|
2209
3081
|
iptype: false,
|
|
2210
3082
|
multiply: 1
|
|
3083
|
+
},
|
|
3084
|
+
'FACTORY.BAT_TYPE_Text': {
|
|
3085
|
+
name: 'BAT_TYPE',
|
|
3086
|
+
unit: '',
|
|
3087
|
+
booltype: false,
|
|
3088
|
+
datetype: false,
|
|
3089
|
+
iptype: false,
|
|
3090
|
+
multiply: 1
|
|
2211
3091
|
},
|
|
2212
3092
|
'FACTORY.BEH_FLAGS': {
|
|
2213
3093
|
name: 'BEH_FLAGS',
|
|
@@ -2232,6 +3112,14 @@ const state_attr = {
|
|
|
2232
3112
|
datetype: false,
|
|
2233
3113
|
iptype: false,
|
|
2234
3114
|
multiply: 1
|
|
3115
|
+
},
|
|
3116
|
+
'FACTORY.COUNTRY_Text': {
|
|
3117
|
+
name: 'COUNTRY',
|
|
3118
|
+
unit: '',
|
|
3119
|
+
booltype: false,
|
|
3120
|
+
datetype: false,
|
|
3121
|
+
iptype: false,
|
|
3122
|
+
multiply: 1
|
|
2235
3123
|
},
|
|
2236
3124
|
'FACTORY.DEVICE_ID': {
|
|
2237
3125
|
name: 'DEVICE_ID',
|
|
@@ -2258,7 +3146,15 @@ const state_attr = {
|
|
|
2258
3146
|
multiply: 1
|
|
2259
3147
|
},
|
|
2260
3148
|
'FACTORY.SYS_TYPE': {
|
|
2261
|
-
name: '
|
|
3149
|
+
name: 'System Type',
|
|
3150
|
+
unit: '',
|
|
3151
|
+
booltype: false,
|
|
3152
|
+
datetype: false,
|
|
3153
|
+
iptype: false,
|
|
3154
|
+
multiply: 1
|
|
3155
|
+
},
|
|
3156
|
+
'FACTORY.SYS_TYPE_Text': {
|
|
3157
|
+
name: 'System Type',
|
|
2262
3158
|
unit: '',
|
|
2263
3159
|
booltype: false,
|
|
2264
3160
|
datetype: false,
|
|
@@ -2785,6 +3681,14 @@ const state_attr = {
|
|
|
2785
3681
|
iptype: false,
|
|
2786
3682
|
multiply: 1
|
|
2787
3683
|
},
|
|
3684
|
+
'PM1OBJ1.ENABLED': {
|
|
3685
|
+
name: 'EnFluRi-Netz.Aktiv',
|
|
3686
|
+
unit: '',
|
|
3687
|
+
booltype: true,
|
|
3688
|
+
datetype: false,
|
|
3689
|
+
iptype: false,
|
|
3690
|
+
multiply: 1
|
|
3691
|
+
},
|
|
2788
3692
|
'PM1OBJ1.P_TOTAL': {
|
|
2789
3693
|
name: 'EnFluRi-Netz.P_TOTAL',
|
|
2790
3694
|
unit: 'W',
|
|
@@ -2825,6 +3729,14 @@ const state_attr = {
|
|
|
2825
3729
|
iptype: false,
|
|
2826
3730
|
multiply: 1
|
|
2827
3731
|
},
|
|
3732
|
+
'PM1OBJ2.ENABLED': {
|
|
3733
|
+
name: 'EnFluRi-Verbrauch.Aktiv',
|
|
3734
|
+
unit: '',
|
|
3735
|
+
booltype: true,
|
|
3736
|
+
datetype: false,
|
|
3737
|
+
iptype: false,
|
|
3738
|
+
multiply: 1
|
|
3739
|
+
},
|
|
2828
3740
|
'PM1OBJ2.P_TOTAL': {
|
|
2829
3741
|
name: 'EnFluRi-Verbrauch.P_TOTAL',
|
|
2830
3742
|
unit: 'W',
|
|
@@ -3153,6 +4065,62 @@ const state_attr = {
|
|
|
3153
4065
|
iptype: false,
|
|
3154
4066
|
multiply: 1
|
|
3155
4067
|
},
|
|
4068
|
+
'RTC.UTC_OFFSET': {
|
|
4069
|
+
name: 'RTC.UTC_OFFSET',
|
|
4070
|
+
unit: '',
|
|
4071
|
+
booltype: false,
|
|
4072
|
+
datetype: false,
|
|
4073
|
+
iptype: false,
|
|
4074
|
+
multiply: 1
|
|
4075
|
+
},
|
|
4076
|
+
'RTC.WEB_TIME': {
|
|
4077
|
+
name: 'RTC.WEB_TIME',
|
|
4078
|
+
unit: '',
|
|
4079
|
+
booltype: false,
|
|
4080
|
+
datetype: true,
|
|
4081
|
+
iptype: false,
|
|
4082
|
+
multiply: 1
|
|
4083
|
+
},
|
|
4084
|
+
'SOCKETS.ALREADY_SWITCHED': {
|
|
4085
|
+
name: 'SOCKETS.ALREADY_SWITCHED',
|
|
4086
|
+
unit: '',
|
|
4087
|
+
booltype: true,
|
|
4088
|
+
datetype: false,
|
|
4089
|
+
iptype: false,
|
|
4090
|
+
multiply: 1
|
|
4091
|
+
},
|
|
4092
|
+
'SOCKETS.ENABLE': {
|
|
4093
|
+
name: 'SOCKETS.ENABLE',
|
|
4094
|
+
unit: '',
|
|
4095
|
+
booltype: true,
|
|
4096
|
+
datetype: false,
|
|
4097
|
+
iptype: false,
|
|
4098
|
+
multiply: 1
|
|
4099
|
+
},
|
|
4100
|
+
'SOCKETS.FORCE_ON': {
|
|
4101
|
+
name: 'SOCKETS.FORCE_ON',
|
|
4102
|
+
unit: '',
|
|
4103
|
+
booltype: true,
|
|
4104
|
+
datetype: false,
|
|
4105
|
+
iptype: false,
|
|
4106
|
+
multiply: 1
|
|
4107
|
+
},
|
|
4108
|
+
'SOCKETS.POWER_ON': {
|
|
4109
|
+
name: 'SOCKETS.POWER_ON',
|
|
4110
|
+
unit: '',
|
|
4111
|
+
booltype: true,
|
|
4112
|
+
datetype: false,
|
|
4113
|
+
iptype: false,
|
|
4114
|
+
multiply: 1
|
|
4115
|
+
},
|
|
4116
|
+
'SOCKETS.POWER_ON_TIME': {
|
|
4117
|
+
name: 'SOCKETS.POWER_ON_TIME',
|
|
4118
|
+
unit: '',
|
|
4119
|
+
booltype: true,
|
|
4120
|
+
datetype: false,
|
|
4121
|
+
iptype: false,
|
|
4122
|
+
multiply: 1
|
|
4123
|
+
},
|
|
3156
4124
|
'STATISTIC.CURRENT_STATE': {
|
|
3157
4125
|
name: 'Current state',
|
|
3158
4126
|
unit: '',
|
|
@@ -3649,6 +4617,182 @@ const state_attr = {
|
|
|
3649
4617
|
iptype: false,
|
|
3650
4618
|
multiply: 1
|
|
3651
4619
|
},
|
|
4620
|
+
'TEMPMEASURE.BATTERY_TEMP': {
|
|
4621
|
+
name: 'TEMPMEASURE.BATTERY_TEMP',
|
|
4622
|
+
unit: '°C',
|
|
4623
|
+
booltype: false,
|
|
4624
|
+
datetype: false,
|
|
4625
|
+
iptype: false,
|
|
4626
|
+
multiply: 1
|
|
4627
|
+
},
|
|
4628
|
+
'TEMPMEASURE.CASE_TEMP': {
|
|
4629
|
+
name: 'TEMPMEASURE.CASE_TEMP',
|
|
4630
|
+
unit: '°C',
|
|
4631
|
+
booltype: false,
|
|
4632
|
+
datetype: false,
|
|
4633
|
+
iptype: false,
|
|
4634
|
+
multiply: 1
|
|
4635
|
+
},
|
|
4636
|
+
'TEMPMEASURE.MCU_TEMP': {
|
|
4637
|
+
name: 'TEMPMEASURE.MCU_TEMP',
|
|
4638
|
+
unit: '°C',
|
|
4639
|
+
booltype: false,
|
|
4640
|
+
datetype: false,
|
|
4641
|
+
iptype: false,
|
|
4642
|
+
multiply: 1
|
|
4643
|
+
},
|
|
4644
|
+
'WALLBOX.APPARENT_CHARGING_POWER': {
|
|
4645
|
+
name: 'WALLBOX.APPARENT_CHARGING_POWER',
|
|
4646
|
+
unit: 'W',
|
|
4647
|
+
booltype: false,
|
|
4648
|
+
datetype: false,
|
|
4649
|
+
iptype: false,
|
|
4650
|
+
multiply: 1
|
|
4651
|
+
},
|
|
4652
|
+
'WALLBOX.CS_ENABLED': {
|
|
4653
|
+
name: 'WALLBOX.CS_ENABLED',
|
|
4654
|
+
unit: '',
|
|
4655
|
+
booltype: true,
|
|
4656
|
+
datetype: false,
|
|
4657
|
+
iptype: false,
|
|
4658
|
+
multiply: 1
|
|
4659
|
+
},
|
|
4660
|
+
'WALLBOX.EV_CONNECTED': {
|
|
4661
|
+
name: 'WALLBOX.EV_CONNECTED',
|
|
4662
|
+
unit: '',
|
|
4663
|
+
booltype: true,
|
|
4664
|
+
datetype: false,
|
|
4665
|
+
iptype: false,
|
|
4666
|
+
multiply: 1
|
|
4667
|
+
},
|
|
4668
|
+
'WALLBOX.L1_CHARGING_CURRENT': {
|
|
4669
|
+
name: 'WALLBOX.L1_CHARGING_CURRENT',
|
|
4670
|
+
unit: 'A',
|
|
4671
|
+
booltype: false,
|
|
4672
|
+
datetype: false,
|
|
4673
|
+
iptype: false,
|
|
4674
|
+
multiply: 1
|
|
4675
|
+
},
|
|
4676
|
+
'WALLBOX.L2_CHARGING_CURRENT': {
|
|
4677
|
+
name: 'WALLBOX.L2_CHARGING_CURRENT',
|
|
4678
|
+
unit: 'A',
|
|
4679
|
+
booltype: false,
|
|
4680
|
+
datetype: false,
|
|
4681
|
+
iptype: false,
|
|
4682
|
+
multiply: 1
|
|
4683
|
+
},
|
|
4684
|
+
'WALLBOX.L3_CHARGING_CURRENT': {
|
|
4685
|
+
name: 'WALLBOX.L3_CHARGING_CURRENT',
|
|
4686
|
+
unit: 'A',
|
|
4687
|
+
booltype: false,
|
|
4688
|
+
datetype: false,
|
|
4689
|
+
iptype: false,
|
|
4690
|
+
multiply: 1
|
|
4691
|
+
},
|
|
4692
|
+
'WALLBOX.L1_USED': {
|
|
4693
|
+
name: 'WALLBOX.L1_USED',
|
|
4694
|
+
unit: '',
|
|
4695
|
+
booltype: true,
|
|
4696
|
+
datetype: false,
|
|
4697
|
+
iptype: false,
|
|
4698
|
+
multiply: 1
|
|
4699
|
+
},
|
|
4700
|
+
'WALLBOX.L2_USED': {
|
|
4701
|
+
name: 'WALLBOX.L3_USED',
|
|
4702
|
+
unit: '',
|
|
4703
|
+
booltype: true,
|
|
4704
|
+
datetype: false,
|
|
4705
|
+
iptype: false,
|
|
4706
|
+
multiply: 1
|
|
4707
|
+
},
|
|
4708
|
+
'WALLBOX.L3_USED': {
|
|
4709
|
+
name: 'WALLBOX.L3_USED',
|
|
4710
|
+
unit: '',
|
|
4711
|
+
booltype: true,
|
|
4712
|
+
datetype: false,
|
|
4713
|
+
iptype: false,
|
|
4714
|
+
multiply: 1
|
|
4715
|
+
},
|
|
4716
|
+
'WALLBOX.LOAD_IMBALANCE_DETECTED': {
|
|
4717
|
+
name: 'WALLBOX.LOAD_IMBALANCE_DETECTED',
|
|
4718
|
+
unit: '',
|
|
4719
|
+
booltype: true,
|
|
4720
|
+
datetype: false,
|
|
4721
|
+
iptype: false,
|
|
4722
|
+
multiply: 1
|
|
4723
|
+
},
|
|
4724
|
+
'WALLBOX.MAX_CHARGING_CURRENT_DEFAULT': {
|
|
4725
|
+
name: 'WALLBOX.MAX_CHARGING_CURRENT_DEFAULT',
|
|
4726
|
+
unit: 'A',
|
|
4727
|
+
booltype: false,
|
|
4728
|
+
datetype: false,
|
|
4729
|
+
iptype: false,
|
|
4730
|
+
multiply: 1
|
|
4731
|
+
},
|
|
4732
|
+
'WALLBOX.MAX_CHARGING_CURRENT_IC': {
|
|
4733
|
+
name: 'WALLBOX.MAX_CHARGING_CURRENT_IC',
|
|
4734
|
+
unit: 'A',
|
|
4735
|
+
booltype: false,
|
|
4736
|
+
datetype: false,
|
|
4737
|
+
iptype: false,
|
|
4738
|
+
multiply: 1
|
|
4739
|
+
},
|
|
4740
|
+
'WALLBOX.MAX_CHARGING_CURRENT_ICMAX': {
|
|
4741
|
+
name: 'WALLBOX.MAX_CHARGING_CURRENT_ICMAX',
|
|
4742
|
+
unit: 'A',
|
|
4743
|
+
booltype: false,
|
|
4744
|
+
datetype: false,
|
|
4745
|
+
iptype: false,
|
|
4746
|
+
multiply: 1
|
|
4747
|
+
},
|
|
4748
|
+
'WALLBOX.MAX_CHARGING_CURRENT_RATED': {
|
|
4749
|
+
name: 'WALLBOX.MAX_CHARGING_CURRENT_RATED',
|
|
4750
|
+
unit: 'A',
|
|
4751
|
+
booltype: false,
|
|
4752
|
+
datetype: false,
|
|
4753
|
+
iptype: false,
|
|
4754
|
+
multiply: 1
|
|
4755
|
+
},
|
|
4756
|
+
'WALLBOX.METER_ENABLED': {
|
|
4757
|
+
name: 'WALLBOX.METER_ENABLED',
|
|
4758
|
+
unit: '',
|
|
4759
|
+
booltype: true,
|
|
4760
|
+
datetype: false,
|
|
4761
|
+
iptype: false,
|
|
4762
|
+
multiply: 1
|
|
4763
|
+
},
|
|
4764
|
+
'WALLBOX.SET_ICMAX': {
|
|
4765
|
+
name: 'SET_ICMAX',
|
|
4766
|
+
unit: 'A',
|
|
4767
|
+
booltype: false,
|
|
4768
|
+
datetype: false,
|
|
4769
|
+
iptype: false,
|
|
4770
|
+
multiply: 1
|
|
4771
|
+
},
|
|
4772
|
+
'WALLBOX.SOCKET_ENABLED': {
|
|
4773
|
+
name: 'WALLBOX.SOCKET_ENABLED',
|
|
4774
|
+
unit: '',
|
|
4775
|
+
booltype: true,
|
|
4776
|
+
datetype: false,
|
|
4777
|
+
iptype: false,
|
|
4778
|
+
multiply: 1
|
|
4779
|
+
},
|
|
4780
|
+
'WALLBOX.STATE': {
|
|
4781
|
+
name: 'Wallbox Status',
|
|
4782
|
+
unit: '',
|
|
4783
|
+
booltype: false,
|
|
4784
|
+
datetype: false,
|
|
4785
|
+
iptype: false,
|
|
4786
|
+
multiply: 1
|
|
4787
|
+
},
|
|
4788
|
+
'WALLBOX.STATE_Text': {
|
|
4789
|
+
name: 'Wallbox Status',
|
|
4790
|
+
unit: '',
|
|
4791
|
+
booltype: false,
|
|
4792
|
+
datetype: false,
|
|
4793
|
+
iptype: false,
|
|
4794
|
+
multiply: 1
|
|
4795
|
+
},
|
|
3652
4796
|
'WIZARD.APPLICATION_HASH': {
|
|
3653
4797
|
name: 'Application Hash',
|
|
3654
4798
|
unit: '',
|