iobroker.senec 1.5.0 → 1.5.1

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 CHANGED
@@ -366,6 +366,11 @@ This channel contains calculated values. Currently these are day/week/month/year
366
366
  *Read-only number, which designates the number of wallbox [0..3]. This is only available on systems with configured wallboxes.*
367
367
 
368
368
  ## Changelog
369
+ ### 1.5.1 (NoBl)
370
+ * Added more datapoints. If you experience messages in log - feel free to add them yourself to state_attr on github (pull request)
371
+ * Autarky calculations will stopp working because SENEC removed STATISTICS branch.
372
+ * If you experience issues with connecting to your appliance after it got updated, please activate https connection in settings.
373
+
369
374
  ### 1.5.0 (NoBl)
370
375
  * Added configuration section to add datapoints to high priority polling. Please be aware of the possible issues this could cause (if too many datapoints added) and use at your own risk.
371
376
  * ALL Wallbox datapoints have been removed from high priority polling. Only some users even have a SENEC wallbox. Please reconfigure via the new config dialogue.
package/io-package.json CHANGED
@@ -1,8 +1,21 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "senec",
4
- "version": "1.5.0",
4
+ "version": "1.5.1",
5
5
  "news": {
6
+ "1.5.1": {
7
+ "en": "Added more datapoints. If you experience messages in log - feel free to add them yourself to state_attr on github (pull request)",
8
+ "de": "Weitere Datenpunkte hinzugefügt. Du kennst weitere? Bitte PullRequest auf Github für state_attr.",
9
+ "ru": "Добавили больше точек данных. Если вы испытываете сообщения в логе - не стесняйтесь добавлять их самостоятельно в state_attr на github (по запросу)",
10
+ "pt": "Adicionado mais datapoints. Se você tiver mensagens no log - sinta-se livre para adicioná-las ao state_attr no github (requisito de envio)",
11
+ "nl": "Voegde meer datapoints toe. Als je berichten in het logboek ervaart, voel je vrij om ze zelf toe te voegen aan github (pull verzoek)",
12
+ "fr": "Ajout d'autres points de données. Si vous éprouvez des messages dans log - n'hésitez pas à les ajouter à state_attr sur github (demande de puissance)",
13
+ "it": "Aggiunti altri datapoint. Se si verificano messaggi in log - sentitevi liberi di aggiungerli a state_attr su github (domanda di voto)",
14
+ "es": "Se agregaron más puntos de datos. Si experimentas mensajes en el registro - no dudes en añadirlos a state_attr en github (pregunta completa)",
15
+ "pl": "Dodać więcej danych. Jeśli znajdziesz wiadomości w dzienniku – czuje się wolny, aby dodać ich do stanu_attr na github (pułki)",
16
+ "uk": "Додано більше точок даних. Якщо ви відчуваєте повідомлення в журналі - не соромтеся додати їх до стану_attr на github",
17
+ "zh-cn": "增加数据点。 如果你在逻辑上有信息,就认为可以自由地补充你自己的国家:对Tithub(要求)表示怀疑。"
18
+ },
6
19
  "1.5.0": {
7
20
  "en": "Added configuration section to add datapoints to high priority polling. Please be aware of the possible issues this could cause (if too many datapoints added) and use at your own risk. ALL Wallbox datapoints have been removed from high priority polling. Only some users even have a SENEC wallbox. Please reconfigure via the new config dialogue. Possible Candidate for stable. Please report any findings!",
8
21
  "de": "Konfigurationsabschnitt hinzugefügt, um zusätzliche Datenpunkte mit hoher Priorität abzufragen. Bitte beachten Sie die möglichen Probleme, die dies verursachen könnte (wenn zu viele Datenpunkte hinzugefügt wurden). Nutzung auf eigenes Risiko. Standardgemäß werden nun keine Wallbox-Datenpunkte mehr mit hoher Priorität abgefragt (zu wenige User haben eine SENEC Wallbox). Diese nun bitte über den neuen Configdialog konfigurieren. Möglicher Kandidat für stable - bitte alle Probleme reporten.",
package/lib/state_attr.js CHANGED
@@ -7309,6 +7309,110 @@ const state_attr = {
7309
7309
  iptype: false,
7310
7310
  multiply: 1
7311
7311
  },
7312
+ 'TEST.TYPE': {
7313
+ name: 'TYPE',
7314
+ unit: '',
7315
+ booltype: false,
7316
+ datetype: false,
7317
+ iptype: false,
7318
+ multiply: 1
7319
+ },
7320
+ 'TEST.START': {
7321
+ name: 'START',
7322
+ unit: '',
7323
+ booltype: false,
7324
+ datetype: false,
7325
+ iptype: false,
7326
+ multiply: 1
7327
+ },
7328
+ 'TEST.RESULT': {
7329
+ name: 'RESULT',
7330
+ unit: '',
7331
+ booltype: false,
7332
+ datetype: false,
7333
+ iptype: false,
7334
+ multiply: 1
7335
+ },
7336
+ 'TEST.OUTPUT': {
7337
+ name: 'OUTPUT',
7338
+ unit: '',
7339
+ booltype: false,
7340
+ datetype: false,
7341
+ iptype: false,
7342
+ multiply: 1
7343
+ },
7344
+ 'TEST.INPUT': {
7345
+ name: 'INPUT',
7346
+ unit: '',
7347
+ booltype: false,
7348
+ datetype: false,
7349
+ iptype: false,
7350
+ multiply: 1
7351
+ },
7352
+ 'TEST.ENABLE': {
7353
+ name: 'ENABLE',
7354
+ unit: '',
7355
+ booltype: true,
7356
+ datetype: false,
7357
+ iptype: false,
7358
+ multiply: 1
7359
+ },
7360
+ 'DISPLAY.CURRENT_MESSAGE_PRIO': {
7361
+ name: 'CURRENT_MESSAGE_PRIO',
7362
+ unit: '',
7363
+ booltype: false,
7364
+ datetype: false,
7365
+ iptype: false,
7366
+ multiply: 1
7367
+ },
7368
+ 'DISPLAY.CURRENT_MESSAGE_OWNER': {
7369
+ name: 'CURRENT_MESSAGE_OWNER',
7370
+ unit: '',
7371
+ booltype: false,
7372
+ datetype: false,
7373
+ iptype: false,
7374
+ multiply: 1
7375
+ },
7376
+ 'DISPLAY.CURRENT_MESSAGE': {
7377
+ name: 'CURRENT_MESSAGE',
7378
+ unit: '',
7379
+ booltype: false,
7380
+ datetype: false,
7381
+ iptype: false,
7382
+ multiply: 1
7383
+ },
7384
+ 'FAN_TEST.INV_LV': {
7385
+ name: 'INV_LV',
7386
+ unit: '',
7387
+ booltype: false,
7388
+ datetype: false,
7389
+ iptype: false,
7390
+ multiply: 1
7391
+ },
7392
+ 'FAN_TEST.INV_HV': {
7393
+ name: 'INV_HV',
7394
+ unit: '',
7395
+ booltype: false,
7396
+ datetype: false,
7397
+ iptype: false,
7398
+ multiply: 1
7399
+ },
7400
+ 'FAN_SPEED.INV_LV': {
7401
+ name: 'INV_LV',
7402
+ unit: '',
7403
+ booltype: false,
7404
+ datetype: false,
7405
+ iptype: false,
7406
+ multiply: 1
7407
+ },
7408
+ 'FAN_SPEED.INV_HV': {
7409
+ name: 'INV_HV',
7410
+ unit: '',
7411
+ booltype: false,
7412
+ datetype: false,
7413
+ iptype: false,
7414
+ multiply: 1
7415
+ },
7312
7416
 
7313
7417
  }
7314
7418
 
package/main.js CHANGED
@@ -16,7 +16,8 @@ let retry = 0; // retry-counter
16
16
  let retryLowPrio = 0; // retry-counter
17
17
  let connectVia = "http://";
18
18
 
19
- const allKnownObjects = new Set(["STATISTIC","ENERGY","FEATURES","LOG","SYS_UPDATE","WIZARD","BMS","BAT1","BAT1OBJ1","BAT1OBJ2","BAT1OBJ3","BAT1OBJ4","PWR_UNIT","PM1OBJ1","PM1OBJ2","PV1","FACTORY","GRIDCONFIG","EG_CONTROL","RTC","PM1","TEMPMEASURE","DEBUG","SOCKETS","CASC","WALLBOX","CONNX50","STECA"]);
19
+ const allKnownObjects = new Set(["BAT1","BAT1OBJ1","BAT1OBJ2","BAT1OBJ3","BMS","BMS_PARA","CASC","DEBUG","DISPLAY","ENERGY","FACTORY","FEATURES","FILE","GRIDCONFIG","ISKRA","LOG","PM1","PM1OBJ1","PM1OBJ2","PV1","PWR_UNIT","RTC","SELFTEST_RESULTS","SOCKETS","STATISTIC","STECA","SYS_UPDATE","TEMPMEASURE","TEST","UPDATE","WALLBOX","WIZARD"]);
20
+
20
21
  const highPrioObjects = new Map;
21
22
  let lowPrioForm = "";
22
23
  let highPrioForm = "";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.senec",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "description": "Senec Home",
5
5
  "author": {
6
6
  "name": "NoBl",