iobroker.bydhvs 1.4.2 → 1.5.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/CHANGELOG_OLD.md +4 -0
- package/LICENSE +1 -1
- package/README-German.md +21 -0
- package/README.md +9 -29
- package/io-package.json +176 -307
- package/package.json +26 -18
package/CHANGELOG_OLD.md
CHANGED
package/LICENSE
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
MIT License
|
2
2
|
|
3
|
-
Copyright (c)
|
3
|
+
Copyright (c) 2023 Christian <github@familie-herrmann.de>
|
4
4
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/README-German.md
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
## Ein wenig Erklärungen:
|
4
|
+
|
5
|
+
Prinzipiell ist der Adapter durch Anaylse der Datenpakete zwischen der BYD-App und dem BYD-Akku-System entstanden. Es werden im Wesentlichen die Daten aus dem TAB System Info und aus dem TAB Diagnosis dargestellt. Offensichtlich sind die Daten für "System Info" sofort in der Batterie bereit zum abholen, für die Diagnose-Daten sieht es so aus als wäre ein Messvorgang erforderlich, zwischen der Abfrage und den Werten muss ein Zeitintervall von gut 3 Sekunden eingehalten werden.
|
6
|
+
|
7
|
+
Ich bin mir nicht sicher ob das BYD-System durch zu häufige Abfragen beschädigt wird, also: Es ist Dein Risiko was Du hier einträgst!
|
8
|
+
|
9
|
+
## Zu den Einstellungen:
|
10
|
+
Intervall: Zeitlicher Abstand zwischen den Abfragen des Adapters
|
11
|
+
|
12
|
+
IP-Adresse: Eigentlich logisch, damit ist die IP-Adresse des Adapters gemeint. Dafür gibt es zwei Möglichkeiten: Entweder hält man sich an die Anleitung von Becker3 aus dem Photovoltaik-Forum, ist hier verlinkt: https://www.photovoltaikforum.com/thread/150898-byd-hvs-firmware-update/?postID=2215343#post2215343 . Das hat den Vorteil das auch die BYD-APP läuft und man mit dieser direkt an die Daten, auch zum Vergleich, herankommt. Oder man trägt "nur" die IP-Adresse die die BYD-Box per DHCP erhalten hat ein. Ausdrücklich waren möchte ich vor Änderungen an den IP-Einstellungen der BOX! Im Forum kann man Berichte von Leute lesen die sich die Erreichbarkeit der Box dauerhaft ruiniert haben.
|
13
|
+
|
14
|
+
Batterie-Details: Steuerung, ob die Details zu den Zellen gelesen werden sollen
|
15
|
+
|
16
|
+
Lesezyklen zu Batterie-Details: Anzahl der "Normal-Lese-Zyklen" bis wieder einmal die Diagnose-Daten gelesen werden. Hier die Warnung dazu: Ich habe keine Idee ob man sich durch häufige Diagnose-Messungen Nachteile einhandelt, daher empfehle ich den Wert möglichst hoch zu setzen. Ich wüsste auch nicht was man mit den Diagnose-Daten im regelmäßigen Poll anfangen sollte.
|
17
|
+
|
18
|
+
Zu den Batterie-Größen: Der Adapter funktioniert für Zelltemperaturen und ZellSpannungen bei 2-5 Batterie-Modulen.
|
19
|
+
|
20
|
+
[Zurück zur automatisch übersetzten Readme](README.md)
|
21
|
+
|
package/README.md
CHANGED
@@ -4,8 +4,6 @@
|
|
4
4
|
|
5
5
|
BYD HVS Battery poll data
|
6
6
|
|
7
|
-
## English:
|
8
|
-
|
9
7
|
## Introduction
|
10
8
|
|
11
9
|
This Adapter takes data from a byd PV battery ( https://www.bydbatterybox.com/ ) and puts them into datapoints in the adapter. Unfortunately there is no official API and no documentation, so I used wireshark and a byd-hvs-simulator to try to understand the communication. My adapter simulates the byd-app, sends similar packets to the device and analyses the responses.
|
@@ -24,35 +22,21 @@ Interval: That's easy: how often (s) shall the data be polled
|
|
24
22
|
IP-Adress: Thats self explaining. Either you use the standard address ( 192.168.16.254 ) and change the routing at home, e.g.: https://www.photovoltaikforum.com/thread/150898-byd-hvs-firmware-update/?postID=2215343#post2215343 . The advantage is: The beConnect app works, too. Other possibility: You change the IP-Adress of the box. But: Be warned: the text on the webpage is confusing and if you are not absolutely shure about the things you do: PLEASE do not touch the settings. In the German forums I read from people who were locked out of their system and there is no way back, either byd sends you a replacement HVU or you have to buy a new one.
|
25
23
|
Battery-details: As explained above: Do you need the details of the battery? If so: set the checkobx.
|
26
24
|
Battery-details - every ... cycles :Also like above, should be clear
|
27
|
-
Test Mode - show data in error log: If you check this box: the sent and recieved data are displayed in the error-log, so you can easily download the data and send it to me in case of errors.
|
28
|
-
|
29
|
-
|
30
|
-
## German:
|
31
|
-
|
32
|
-
|
33
|
-
## Ein wenig Erklärungen:
|
34
|
-
|
35
|
-
Prinzipiell ist der Adapter durch Anaylse der Datenpakete zwischen der BYD-App und dem BYD-Akku-System entstanden. Es werden im Wesentlichen die Daten aus dem TAB System Info und aus dem TAB Diagnosis dargestellt. Offensichtlich sind die Daten für "System Info" sofort in der Batterie bereit zum abholen, für die Diagnose-Daten sieht es so aus als wäre ein Messvorgang erforderlich, zwischen der Abfrage und den Werten muss ein Zeitintervall von gut 3 Sekunden eingehalten werden.
|
36
|
-
|
37
|
-
Ich bin mir nicht sicher ob das BYD-System durch zu häufige Abfragen beschädigt wird, also: Es ist Dein Risiko was Du hier einträgst!
|
38
|
-
|
39
|
-
## Zu den Einstellungen:
|
40
|
-
Intervall: Zeitlicher Abstand zwischen den Abfragen des Adapters
|
41
|
-
|
42
|
-
IP-Adresse: Eigentlich logisch, damit ist die IP-Adresse des Adapters gemeint. Dafür gibt es zwei Möglichkeiten: Entweder hält man sich an die Anleitung von Becker3 aus dem Photovoltaik-Forum, ist hier verlinkt: https://www.photovoltaikforum.com/thread/150898-byd-hvs-firmware-update/?postID=2215343#post2215343 . Das hat den Vorteil das auch die BYD-APP läuft und man mit dieser direkt an die Daten, auch zum Vergleich, herankommt. Oder man trägt "nur" die IP-Adresse die die BYD-Box per DHCP erhalten hat ein. Ausdrücklich waren möchte ich vor Änderungen an den IP-Einstellungen der BOX! Im Forum kann man Berichte von Leute lesen die sich die Erreichbarkeit der Box dauerhaft ruiniert haben.
|
43
|
-
|
44
|
-
Batterie-Details: Steuerung, ob die Details zu den Zellen gelesen werden sollen
|
45
|
-
|
46
|
-
Lesezyklen zu Batterie-Details: Anzahl der "Normal-Lese-Zyklen" bis wieder einmal die Diagnose-Daten gelesen werden. Hier die Warnung dazu: Ich habe keine Idee ob man sich durch häufige Diagnose-Messungen Nachteile einhandelt, daher empfehle ich den Wert möglichst hoch zu setzen. Ich wüsste auch nicht was man mit den Diagnose-Daten im regelmäßigen Poll anfangen sollte.
|
47
|
-
|
48
|
-
Zu den Batterie-Größen: Der Adapter funktioniert für Zelltemperaturen und ZellSpannungen bei 2-5 Batterie-Modulen.
|
25
|
+
Test Mode - show data in error log: If you check this box: the sent and recieved data are displayed in the error-log, so you can easily download the data and send it to me in case of errors.
|
26
|
+
Copy and Paste does not work - the data is cut at the end. You will have to download it before you send it to me.
|
49
27
|
|
28
|
+
[Link zur nativen deutschen Readme:](README-German.md)
|
50
29
|
|
51
30
|
## Changelog
|
52
31
|
<!--
|
53
32
|
Placeholder for the next version (at the beginning of the line):
|
54
33
|
### __WORK IN PROGRESS__
|
55
34
|
-->
|
35
|
+
### 1.5.0 (2023-11-04)
|
36
|
+
* Breaking change: nodejs 16 minimum required
|
37
|
+
* automated checks and release-script repaired (thanks to mcm1957, he did the work)
|
38
|
+
* nothing else changed in code
|
39
|
+
|
56
40
|
### 1.4.2 (2023-09-28)
|
57
41
|
* Typo in version number removed
|
58
42
|
|
@@ -74,16 +58,12 @@ Zu den Batterie-Größen: Der Adapter funktioniert für Zelltemperaturen und Zel
|
|
74
58
|
* updated even more dependencies
|
75
59
|
* official release with new state SOH
|
76
60
|
|
77
|
-
### 1.2.4-0 (2021-11-02)
|
78
|
-
* Added state: SOH
|
79
|
-
* updated dependencies as suggested from bot
|
80
|
-
|
81
61
|
###
|
82
62
|
|
83
63
|
## License
|
84
64
|
MIT License
|
85
65
|
|
86
|
-
Copyright (c)
|
66
|
+
Copyright (c) 2023 Christian <github@familie-herrmann.de>
|
87
67
|
|
88
68
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
89
69
|
of this software and associated documentation files (the "Software"), to deal
|
package/io-package.json
CHANGED
@@ -1,307 +1,176 @@
|
|
1
|
-
{
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
"0.1.2": {
|
178
|
-
"en": "voltage is unsigned - should now work",
|
179
|
-
"de": "Spannung ist ohne Vorzeichen - sollte jetzt funktionieren",
|
180
|
-
"ru": "напряжение без знака - теперь должно работать",
|
181
|
-
"pt": "a tensão não está sinalizada - agora deve funcionar",
|
182
|
-
"nl": "spanning is niet ondertekend - zou nu moeten werken",
|
183
|
-
"fr": "la tension n'est pas signée - devrait maintenant fonctionner",
|
184
|
-
"it": "la tensione non è firmata - ora dovrebbe funzionare",
|
185
|
-
"es": "el voltaje no está firmado - ahora debería funcionar",
|
186
|
-
"pl": "napięcie jest niepodpisane - powinno teraz działać",
|
187
|
-
"zh-cn": "电压无符号-现在应该可以工作"
|
188
|
-
},
|
189
|
-
"0.1.1": {
|
190
|
-
"en": "Documentation (only German)",
|
191
|
-
"de": "Dokumentation (nur deutsch)",
|
192
|
-
"ru": "Документация (только на немецком языке)",
|
193
|
-
"pt": "Documentação (somente alemão)",
|
194
|
-
"nl": "Documentatie (alleen Duits)",
|
195
|
-
"fr": "Documentation (uniquement en allemand)",
|
196
|
-
"it": "Documentazione (solo tedesco)",
|
197
|
-
"es": "Documentación (solo en alemán)",
|
198
|
-
"pl": "Dokumentacja (tylko w języku niemieckim)",
|
199
|
-
"zh-cn": "文档(仅德语)"
|
200
|
-
},
|
201
|
-
"0.1.0": {
|
202
|
-
"en": "First release with limited public announcement",
|
203
|
-
"de": "Erste Veröffentlichung mit begrenzter öffentlicher Ankündigung",
|
204
|
-
"ru": "Первый выпуск с ограниченным публичным объявлением",
|
205
|
-
"pt": "Primeiro lançamento com anúncio público limitado",
|
206
|
-
"nl": "Eerste uitgave met beperkte openbare aankondiging",
|
207
|
-
"fr": "Première version avec annonce publique limitée",
|
208
|
-
"it": "Primo rilascio con annuncio pubblico limitato",
|
209
|
-
"es": "Primer lanzamiento con anuncio público limitado",
|
210
|
-
"pl": "Pierwsza wersja z ograniczonym publicznym ogłoszeniem",
|
211
|
-
"zh-cn": "首次发布,并发布了有限的公告"
|
212
|
-
},
|
213
|
-
"0.0.3": {
|
214
|
-
"en": "initial release",
|
215
|
-
"de": "Erstveröffentlichung",
|
216
|
-
"ru": "Начальная версия",
|
217
|
-
"pt": "lançamento inicial",
|
218
|
-
"nl": "Eerste uitgave",
|
219
|
-
"fr": "Première version",
|
220
|
-
"it": "Versione iniziale",
|
221
|
-
"es": "Versión inicial",
|
222
|
-
"pl": "Pierwsze wydanie",
|
223
|
-
"zh-cn": "首次出版"
|
224
|
-
}
|
225
|
-
},
|
226
|
-
"title": "BYD HVS Battery",
|
227
|
-
"titleLang": {
|
228
|
-
"en": "BYD HVS Battery",
|
229
|
-
"de": "BYD HVS Batterie",
|
230
|
-
"ru": "BYD HVS аккумулятор",
|
231
|
-
"pt": "Bateria BYD HVS",
|
232
|
-
"nl": "BYD HVS-batterij",
|
233
|
-
"fr": "Batterie BYD HVS",
|
234
|
-
"it": "Batteria BYD HVS",
|
235
|
-
"es": "Batería BYD HVS",
|
236
|
-
"pl": "Akumulator BYD HVS",
|
237
|
-
"zh-cn": "比亚迪HVS电池"
|
238
|
-
},
|
239
|
-
"desc": {
|
240
|
-
"en": "BYD HVS Battery poll data",
|
241
|
-
"de": "BYD HVS Batterieabfragedaten",
|
242
|
-
"ru": "BYD HVS Данные опроса аккумулятора",
|
243
|
-
"pt": "Dados de sondagem da bateria BYD HVS",
|
244
|
-
"nl": "BYD HVS Battery poll-gegevens",
|
245
|
-
"fr": "BYD HVS Battery poll data",
|
246
|
-
"it": "BYD HVS Dati di polling della batteria",
|
247
|
-
"es": "Datos de sondeo de la batería BYD HVS",
|
248
|
-
"pl": "Dane ankietowe dotyczące baterii BYD HVS",
|
249
|
-
"zh-cn": "比亚迪HVS电池民意调查数据"
|
250
|
-
},
|
251
|
-
"authors": [
|
252
|
-
"Christian <github@familie-herrmann.de>"
|
253
|
-
],
|
254
|
-
"keywords": [
|
255
|
-
"byd hvs battery pv"
|
256
|
-
],
|
257
|
-
"license": "MIT",
|
258
|
-
"platform": "Javascript/Node.js",
|
259
|
-
"main": "main.js",
|
260
|
-
"icon": "bydhvs.png",
|
261
|
-
"enabled": true,
|
262
|
-
"extIcon": "https://raw.githubusercontent.com/ChristianH17/ioBroker.bydhvs/master/admin/bydhvs.png",
|
263
|
-
"readme": "https://github.com/ChristianH17/ioBroker.bydhvs/blob/master/README.md",
|
264
|
-
"loglevel": "info",
|
265
|
-
"mode": "daemon",
|
266
|
-
"type": "energy",
|
267
|
-
"compact": true,
|
268
|
-
"connectionType": "local",
|
269
|
-
"dataSource": "poll",
|
270
|
-
"materialize": true,
|
271
|
-
"dependencies": [
|
272
|
-
{
|
273
|
-
"js-controller": ">=2.0.0"
|
274
|
-
}
|
275
|
-
]
|
276
|
-
},
|
277
|
-
"native": {
|
278
|
-
"ConfPollInterval": "60",
|
279
|
-
"ConfIPAdress": "192.168.16.254",
|
280
|
-
"ConfDetailshowoften": 60,
|
281
|
-
"pingInterval": 15000
|
282
|
-
},
|
283
|
-
"objects": [],
|
284
|
-
"instanceObjects": [
|
285
|
-
{
|
286
|
-
"_id": "info",
|
287
|
-
"type": "channel",
|
288
|
-
"common": {
|
289
|
-
"name": "Information"
|
290
|
-
},
|
291
|
-
"native": {}
|
292
|
-
},
|
293
|
-
{
|
294
|
-
"_id": "info.connection",
|
295
|
-
"type": "state",
|
296
|
-
"common": {
|
297
|
-
"role": "indicator.connected",
|
298
|
-
"name": "Device or service connected",
|
299
|
-
"type": "boolean",
|
300
|
-
"read": true,
|
301
|
-
"write": false,
|
302
|
-
"def": false
|
303
|
-
},
|
304
|
-
"native": {}
|
305
|
-
}
|
306
|
-
]
|
307
|
-
}
|
1
|
+
{
|
2
|
+
"common": {
|
3
|
+
"name": "bydhvs",
|
4
|
+
"version": "1.5.0",
|
5
|
+
"news": {
|
6
|
+
"1.5.0": {
|
7
|
+
"en": "Breaking change: nodejs 16 minimum required \nautomated checks and release-script repaired (thanks to mcm1957, he did the work)\nnothing else changed in code",
|
8
|
+
"de": "Breaking change: nodejs 16 minimum erforderlich\nautomatisierte kontrollen und release-script repariert (dank mcm1957, er tat die arbeit)\nnichts anders geändert in code",
|
9
|
+
"ru": "Разбивка изменения: nodejs 16 минимум требуется\nавтоматизированные проверки и релиз-скрипты отремонтированы (спасибо mcm1957, он сделал работу)\nничего не изменилось в коде",
|
10
|
+
"pt": "Alteração de ruptura: nodejs 16 mínimo necessário\nverificações automatizadas e release-script reparado (graças a mcm1957, ele fez o trabalho)\nnada mais mudou no código",
|
11
|
+
"nl": "Verandering: Nodej 16 minimum vereist\ngeautomatiseerde cheques en uitgave gerepareerd (danks aan mcm1957, hij deed het werk\nniets anders veranderd in code",
|
12
|
+
"fr": "Changement de rupture: nodejs 16 minimum requis\nvérifications automatisées et relevage-script réparé (merci à mcm1957, il a fait le travail)\nrien d'autre n'a changé de code",
|
13
|
+
"it": "Cambiamento di rottura: nodejs 16 minimo richiesto\ncontrolli automatizzati e release-script riparato (grazie a mcm1957, ha fatto il lavoro)\nniente altro cambiato in codice",
|
14
|
+
"es": "Cambio de ruptura: nodejs 16 mínimo requerido\ncheques automatizados y desbloqueo reparados (gracias a mcm1957, hizo el trabajo)\nnada más cambió en código",
|
15
|
+
"pl": "Zmiana węzłów: 16 wymagane minimum wymagane jest minimum\nzautomatyzowane sprawozdania i naprawione pisownie (do mcm1957 dokonał)\nnic innego nie zmieniło się w kodie",
|
16
|
+
"uk": "Зміна розривів: nodejs 16 мінімальний\nавтоматизовані перевірки та редакційно-регулятивно-редагувальні роботи (додатки до мкм1957 р.)\nнічого не змінився в коді",
|
17
|
+
"zh-cn": "意外变化:不需要16个最低限度\n自动检查和释放后修理(他的工作)\n守则的任何改变"
|
18
|
+
},
|
19
|
+
"1.4.2": {
|
20
|
+
"en": "typo in version number corrected\n",
|
21
|
+
"de": "typo in versionsnummer korrigiert\n",
|
22
|
+
"ru": "typo в версии номер исправлен\n",
|
23
|
+
"pt": "typo no número da versão corrigido\n",
|
24
|
+
"nl": "typo in versie nummer correct\n",
|
25
|
+
"fr": "typo dans la version numéro corrigé\n",
|
26
|
+
"it": "typo nel numero di versione corretto\n",
|
27
|
+
"es": "typo en el número de versión corregido\n",
|
28
|
+
"pl": "typo\n",
|
29
|
+
"uk": "типо в номер версія виправлено\n",
|
30
|
+
"zh-cn": "更正编号的类型\n"
|
31
|
+
},
|
32
|
+
"1.4.1": {
|
33
|
+
"en": "support of js-controller 5 and detection of more inverters",
|
34
|
+
"de": "Unterstützung js-controllers 5 und Erkennung von mehr Wechselrichtern",
|
35
|
+
"ru": "поддержка js-controller 5 и обнаружение более инверторов",
|
36
|
+
"pt": "suporte de js-controller 5 e detecção de mais inversores",
|
37
|
+
"nl": "quality over quantity (qoq) releases vertaling:",
|
38
|
+
"fr": "support de js-controller 5 et détection de plus d'invertisseurs",
|
39
|
+
"it": "supporto di js-controller 5 e rilevamento di più inverter",
|
40
|
+
"es": "soporte de js-controller 5 y detección de más inversores",
|
41
|
+
"pl": "poparcie sterownika 5 i wykrycie bardziej intruzatorów",
|
42
|
+
"uk": "підтримка js-controller 5 і виявлення більш інверторів",
|
43
|
+
"zh-cn": "b. 支持控制巴士5和发现更多防火器"
|
44
|
+
},
|
45
|
+
"1.4.0": {
|
46
|
+
"en": "5 modules supported, frequency limit for polling removed, security updates",
|
47
|
+
"de": "5 Module unterstützt, Frequenzgrenze für die Abfrage entfernt, Sicherheitsupdates",
|
48
|
+
"ru": "5 поддерживаемых модулей, частотный лимит для удаления опроса, обновления безопасности",
|
49
|
+
"pt": "5 módulos suportados, limite de frequência para votação removido, atualizações de segurança",
|
50
|
+
"nl": "vijf modules ondersteund, frequentielimiet voor het vervullen van de beveiliging",
|
51
|
+
"fr": "5 modules supportés, limite de fréquence pour le polling supprimé, mises à jour de sécurité",
|
52
|
+
"it": "5 moduli supportati, limite di frequenza per la rimozione del polling, aggiornamenti di sicurezza",
|
53
|
+
"es": "5 módulos compatibles, límite de frecuencia para las encuestas eliminadas, actualizaciones de seguridad",
|
54
|
+
"pl": "5 modułów obsługiwanych, limit częstotliwości zanieczyszczeń, aktualizacja bezpieczeństwa",
|
55
|
+
"uk": "5 модулів підтримуються, частотний ліміт для видалення пилу, оновлення безпеки",
|
56
|
+
"zh-cn": "5个单元支助,清除的污染频率限制,安全更新"
|
57
|
+
},
|
58
|
+
"1.3.1": {
|
59
|
+
"en": "updated even more dependencies\nofficial release with new state SOH",
|
60
|
+
"de": "noch mehr Abhängigkeiten aktualisiert\noffizielle Veröffentlichung mit neuem Zustand SOH",
|
61
|
+
"ru": "обновлено еще больше зависимостей\nофициальный релиз с новым состоянием SOH",
|
62
|
+
"pt": "atualizou ainda mais dependências\nlançamento oficial com novo estado SOH",
|
63
|
+
"nl": "nog meer afhankelijkheden bijgewerkt\nofficiële release met nieuwe staat SOH",
|
64
|
+
"fr": "mis à jour encore plus de dépendances\nsortie officielle avec le nouvel état SOH",
|
65
|
+
"it": "aggiornato ancora più dipendenze\nrilascio ufficiale con il nuovo stato SOH",
|
66
|
+
"es": "actualizado aún más dependencias\nlanzamiento oficial con el nuevo estado SOH",
|
67
|
+
"pl": "zaktualizowałem jeszcze więcej zależności\noficjalne wydanie z nowym stanem SOH",
|
68
|
+
"zh-cn": "更新了更多依赖项\n正式发布新状态 SOH"
|
69
|
+
},
|
70
|
+
"1.2.4-0": {
|
71
|
+
"en": "Added state: SOH\nupdated dependencies as suggested from bot",
|
72
|
+
"de": "Hinzugefügter Zustand: SOH\naktualisierte Abhängigkeiten wie vom Bot vorgeschlagen",
|
73
|
+
"ru": "Добавлено состояние: SOH\nобновленные зависимости, как было предложено от бота",
|
74
|
+
"pt": "Estado adicionado: SOH\ndependências atualizadas conforme sugerido pelo bot",
|
75
|
+
"nl": "Toegevoegde staat: SOH\nbijgewerkte afhankelijkheden zoals voorgesteld door bot",
|
76
|
+
"fr": "État ajouté : SOH\ndépendances mises à jour comme suggéré par le bot",
|
77
|
+
"it": "Stato aggiunto: SOH\ndipendenze aggiornate come suggerito da bot",
|
78
|
+
"es": "Estado añadido: SOH\ndependencias actualizadas según lo sugerido por el bot",
|
79
|
+
"pl": "Dodany stan: SOH\nzaktualizowane zależności zgodnie z sugestią bota",
|
80
|
+
"zh-cn": "添加状态:SOH\n按照 bot 的建议更新依赖项"
|
81
|
+
},
|
82
|
+
"1.2.3": {
|
83
|
+
"en": "changed ratio of logo",
|
84
|
+
"de": "geändertes Verhältnis des Logos",
|
85
|
+
"ru": "изменено соотношение логотипа",
|
86
|
+
"pt": "proporção alterada do logotipo",
|
87
|
+
"nl": "gewijzigde verhouding van logo",
|
88
|
+
"fr": "rapport modifié du logo",
|
89
|
+
"it": "rapporto modificato del logo",
|
90
|
+
"es": "proporción cambiada del logotipo",
|
91
|
+
"pl": "zmieniony stosunek logo",
|
92
|
+
"zh-cn": "更改徽标比例"
|
93
|
+
}
|
94
|
+
},
|
95
|
+
"title": "BYD HVS Battery",
|
96
|
+
"titleLang": {
|
97
|
+
"en": "BYD HVS Battery",
|
98
|
+
"de": "BYD HVS Batterie",
|
99
|
+
"ru": "BYD HVS аккумулятор",
|
100
|
+
"pt": "Bateria BYD HVS",
|
101
|
+
"nl": "BYD HVS-batterij",
|
102
|
+
"fr": "Batterie BYD HVS",
|
103
|
+
"it": "Batteria BYD HVS",
|
104
|
+
"es": "Batería BYD HVS",
|
105
|
+
"pl": "Akumulator BYD HVS",
|
106
|
+
"zh-cn": "比亚迪HVS电池"
|
107
|
+
},
|
108
|
+
"desc": {
|
109
|
+
"en": "BYD HVS Battery poll data",
|
110
|
+
"de": "BYD HVS Batterieabfragedaten",
|
111
|
+
"ru": "BYD HVS Данные опроса аккумулятора",
|
112
|
+
"pt": "Dados de sondagem da bateria BYD HVS",
|
113
|
+
"nl": "BYD HVS Battery poll-gegevens",
|
114
|
+
"fr": "BYD HVS Battery poll data",
|
115
|
+
"it": "BYD HVS Dati di polling della batteria",
|
116
|
+
"es": "Datos de sondeo de la batería BYD HVS",
|
117
|
+
"pl": "Dane ankietowe dotyczące baterii BYD HVS",
|
118
|
+
"zh-cn": "比亚迪HVS电池民意调查数据"
|
119
|
+
},
|
120
|
+
"authors": [
|
121
|
+
"Christian <github@familie-herrmann.de>"
|
122
|
+
],
|
123
|
+
"keywords": [
|
124
|
+
"byd hvs battery pv"
|
125
|
+
],
|
126
|
+
"license": "MIT",
|
127
|
+
"platform": "Javascript/Node.js",
|
128
|
+
"main": "main.js",
|
129
|
+
"icon": "bydhvs.png",
|
130
|
+
"enabled": true,
|
131
|
+
"extIcon": "https://raw.githubusercontent.com/ChristianH17/ioBroker.bydhvs/master/admin/bydhvs.png",
|
132
|
+
"readme": "https://github.com/ChristianH17/ioBroker.bydhvs/blob/master/README.md",
|
133
|
+
"loglevel": "info",
|
134
|
+
"mode": "daemon",
|
135
|
+
"type": "energy",
|
136
|
+
"compact": true,
|
137
|
+
"connectionType": "local",
|
138
|
+
"dataSource": "poll",
|
139
|
+
"materialize": true,
|
140
|
+
"dependencies": [
|
141
|
+
{
|
142
|
+
"js-controller": ">=2.0.0"
|
143
|
+
}
|
144
|
+
]
|
145
|
+
},
|
146
|
+
"native": {
|
147
|
+
"ConfPollInterval": "60",
|
148
|
+
"ConfIPAdress": "192.168.16.254",
|
149
|
+
"ConfDetailshowoften": 60,
|
150
|
+
"pingInterval": 15000
|
151
|
+
},
|
152
|
+
"objects": [],
|
153
|
+
"instanceObjects": [
|
154
|
+
{
|
155
|
+
"_id": "info",
|
156
|
+
"type": "channel",
|
157
|
+
"common": {
|
158
|
+
"name": "Information"
|
159
|
+
},
|
160
|
+
"native": {}
|
161
|
+
},
|
162
|
+
{
|
163
|
+
"_id": "info.connection",
|
164
|
+
"type": "state",
|
165
|
+
"common": {
|
166
|
+
"role": "indicator.connected",
|
167
|
+
"name": "Device or service connected",
|
168
|
+
"type": "boolean",
|
169
|
+
"read": true,
|
170
|
+
"write": false,
|
171
|
+
"def": false
|
172
|
+
},
|
173
|
+
"native": {}
|
174
|
+
}
|
175
|
+
]
|
176
|
+
}
|
package/package.json
CHANGED
@@ -1,45 +1,52 @@
|
|
1
1
|
{
|
2
2
|
"name": "iobroker.bydhvs",
|
3
|
-
"version": "1.
|
3
|
+
"version": "1.5.0",
|
4
4
|
"description": "BYD HVS Battery poll data",
|
5
5
|
"author": {
|
6
6
|
"name": "Christian",
|
7
7
|
"email": "github@familie-herrmann.de"
|
8
8
|
},
|
9
|
-
"homepage": "https://github.com/
|
9
|
+
"homepage": "https://github.com/christianh17/ioBroker.bydhvs",
|
10
10
|
"license": "MIT",
|
11
11
|
"keywords": [
|
12
12
|
"byd hvs battery pv"
|
13
13
|
],
|
14
14
|
"repository": {
|
15
15
|
"type": "git",
|
16
|
-
"url": "
|
16
|
+
"url": "git@github.com:christianh17/ioBroker.bydhvs.git"
|
17
|
+
},
|
18
|
+
"engines": {
|
19
|
+
"node": ">= 16"
|
17
20
|
},
|
18
21
|
"dependencies": {
|
19
|
-
"@iobroker/adapter-core": "^
|
22
|
+
"@iobroker/adapter-core": "^3.0.4",
|
20
23
|
"crc": "4.3.2"
|
21
24
|
},
|
22
25
|
"devDependencies": {
|
23
26
|
"@alcalzone/release-script": "^3.6.0",
|
27
|
+
"@alcalzone/release-script-plugin-iobroker": "^3.6.0",
|
28
|
+
"@alcalzone/release-script-plugin-license": "^3.5.9",
|
29
|
+
"@alcalzone/release-script-plugin-manual-review": "^3.5.9",
|
30
|
+
"@iobroker/adapter-dev": "^1.2.0",
|
24
31
|
"@iobroker/testing": "^4.1.0",
|
25
|
-
"@types/chai": "^4.3.
|
26
|
-
"@types/chai-as-promised": "^7.1.
|
27
|
-
"@types/gulp": "^4.0.
|
28
|
-
"@types/mocha": "^10.0.
|
29
|
-
"@types/node": "^
|
30
|
-
"@types/proxyquire": "^1.3.
|
31
|
-
"@types/sinon": "^10.0.
|
32
|
-
"@types/sinon-chai": "^3.2.
|
33
|
-
"axios": "^1.
|
34
|
-
"chai": "^4.3.
|
32
|
+
"@types/chai": "^4.3.9",
|
33
|
+
"@types/chai-as-promised": "^7.1.7",
|
34
|
+
"@types/gulp": "^4.0.16",
|
35
|
+
"@types/mocha": "^10.0.3",
|
36
|
+
"@types/node": "^20.8.10",
|
37
|
+
"@types/proxyquire": "^1.3.30",
|
38
|
+
"@types/sinon": "^10.0.20",
|
39
|
+
"@types/sinon-chai": "^3.2.11",
|
40
|
+
"axios": "^1.6.0",
|
41
|
+
"chai": "^4.3.10",
|
35
42
|
"chai-as-promised": "^7.1.1",
|
36
|
-
"eslint": "^8.
|
43
|
+
"eslint": "^8.52.0",
|
37
44
|
"gulp": "^4.0.2",
|
38
45
|
"mocha": "^10.2.0",
|
39
46
|
"proxyquire": "^2.1.3",
|
40
|
-
"sinon": "^
|
47
|
+
"sinon": "^17.0.0",
|
41
48
|
"sinon-chai": "^3.7.0",
|
42
|
-
"typescript": "^
|
49
|
+
"typescript": "^5.2.2"
|
43
50
|
},
|
44
51
|
"main": "main.js",
|
45
52
|
"scripts": {
|
@@ -50,10 +57,11 @@
|
|
50
57
|
"test": "npm run test:js && npm run test:package",
|
51
58
|
"check": "tsc --noEmit -p tsconfig.check.json",
|
52
59
|
"lint": "eslint",
|
60
|
+
"translate": "translate-adapter",
|
53
61
|
"release": "release-script"
|
54
62
|
},
|
55
63
|
"bugs": {
|
56
|
-
"url": "https://github.com/
|
64
|
+
"url": "https://github.com/christianh17/ioBroker.bydhvs/issues"
|
57
65
|
},
|
58
66
|
"readmeFilename": "README.md"
|
59
67
|
}
|