iobroker.amtronwallbox 0.2.5 → 0.2.8
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/.releaseconfig.json +3 -0
- package/README.md +19 -4
- package/io-package.json +169 -143
- package/main.js +2211 -2087
- package/package.json +70 -63
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+

|
|
2
2
|
# ioBroker.amtronwallbox
|
|
3
3
|
|
|
4
4
|
 
|
|
@@ -19,7 +19,7 @@ For more details and for information how to disable the error reporting see [Sen
|
|
|
19
19
|
|
|
20
20
|
[](https://www.paypal.com/donate/?hosted_button_id=34ESBMJ932QZC)
|
|
21
21
|
|
|
22
|
-
The adapter serves as an interface to various Amtron wallboxes. The data provided by the box is read out and made available as a data point in the adapter.
|
|
22
|
+
The adapter serves as an interface to various [Amtron wallboxes](https://www.mennekes.de/emobility/produkte/amtron-wallboxen/). The data provided by the box is read out and made available as a data point in the adapter.
|
|
23
23
|
The data is only processed locally, a cloud connection is not necessary. For wallboxes that also support write access, the adapter can write data (e.g. charging current).
|
|
24
24
|
The following Amtron wallboxes are supported:
|
|
25
25
|
* Amtron Xtra
|
|
@@ -41,6 +41,23 @@ Note: Since the boxes have different interfaces, it may be that not all interfac
|
|
|
41
41
|
|
|
42
42
|
## Changelog
|
|
43
43
|
|
|
44
|
+
<!--
|
|
45
|
+
Placeholder for the next version (at the beginning of the line):
|
|
46
|
+
### **WORK IN PROGRESS**
|
|
47
|
+
-->
|
|
48
|
+
|
|
49
|
+
### **WORK IN PROGRESS**
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
### 0.2.8 (2023-11-26)
|
|
53
|
+
* (René) role of states overworked
|
|
54
|
+
|
|
55
|
+
### 0.2.7 (2023-11-19)
|
|
56
|
+
* (René) dependencies updated
|
|
57
|
+
|
|
58
|
+
### 0.2.6 (2023-09-23)
|
|
59
|
+
* (René) bug fix for reported exceptions by sentry
|
|
60
|
+
|
|
44
61
|
### 0.2.5 (2023-08-27)
|
|
45
62
|
* (René) smaller bug fixes, see issue #59
|
|
46
63
|
|
|
@@ -89,5 +106,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
89
106
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
90
107
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
91
108
|
SOFTWARE.
|
|
92
|
-
|
|
93
|
-
|
package/io-package.json
CHANGED
|
@@ -1,143 +1,169 @@
|
|
|
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
|
-
|
|
1
|
+
{
|
|
2
|
+
"common": {
|
|
3
|
+
"name": "amtronwallbox",
|
|
4
|
+
"version": "0.2.8",
|
|
5
|
+
"news": {
|
|
6
|
+
"0.2.8": {
|
|
7
|
+
"en": "(René)",
|
|
8
|
+
"de": "(René)",
|
|
9
|
+
"ru": "(René)",
|
|
10
|
+
"pt": "(René)",
|
|
11
|
+
"nl": "(René)",
|
|
12
|
+
"fr": "(René)",
|
|
13
|
+
"it": "(René)",
|
|
14
|
+
"es": "(René)",
|
|
15
|
+
"pl": "(René)",
|
|
16
|
+
"uk": "(Рене)",
|
|
17
|
+
"zh-cn": "(René)"
|
|
18
|
+
},
|
|
19
|
+
"0.2.7": {
|
|
20
|
+
"en": "dependencies updated",
|
|
21
|
+
"de": "Abhängigkeiten aktualisiert",
|
|
22
|
+
"ru": "зависимости обновлены",
|
|
23
|
+
"pt": "dependências atualizadas",
|
|
24
|
+
"nl": "afhankelijkheden bijgewerkt",
|
|
25
|
+
"fr": "dépendances mises à jour",
|
|
26
|
+
"it": "dipendenze aggiornate",
|
|
27
|
+
"es": "dependencias actualizadas",
|
|
28
|
+
"pl": "zależności zostały zaktualizowane",
|
|
29
|
+
"uk": "залежності оновлено",
|
|
30
|
+
"zh-cn": "依赖项已更新"
|
|
31
|
+
},
|
|
32
|
+
"0.2.6": {
|
|
33
|
+
"en": "further preparation for latest repository",
|
|
34
|
+
"de": "Weitere Vorbereitungen für das neueste Repository",
|
|
35
|
+
"ru": "дальнейшая подготовка к последнему репозиторию",
|
|
36
|
+
"pt": "preparação adicional para o repositório mais recente",
|
|
37
|
+
"nl": "verdere voorbereiding voor de nieuwste repository",
|
|
38
|
+
"fr": "préparation supplémentaire pour le dernier référentiel",
|
|
39
|
+
"it": "ulteriore preparazione per l'ultimo repository",
|
|
40
|
+
"es": "mayor preparación para el último repositorio",
|
|
41
|
+
"pl": "dalsze przygotowania do najnowszego repozytorium",
|
|
42
|
+
"uk": "подальша підготовка до останнього сховища",
|
|
43
|
+
"zh-cn": "为最新存储库做进一步准备"
|
|
44
|
+
},
|
|
45
|
+
"0.2.5": {
|
|
46
|
+
"en": "smaller bug fixes",
|
|
47
|
+
"de": "kleinere Fehlerbehebungen",
|
|
48
|
+
"ru": "мелкие исправления ошибок",
|
|
49
|
+
"pt": "correções de bugs menores",
|
|
50
|
+
"nl": "kleinere bugfixes",
|
|
51
|
+
"fr": "petites corrections de bugs",
|
|
52
|
+
"it": "correzioni di bug minori",
|
|
53
|
+
"es": "correcciones de errores más pequeñas",
|
|
54
|
+
"pl": "mniejsze poprawki błędów",
|
|
55
|
+
"uk": "менші виправлення помилок",
|
|
56
|
+
"zh-cn": "较小的错误修复"
|
|
57
|
+
},
|
|
58
|
+
"0.2.4": {
|
|
59
|
+
"en": "dependencies updated",
|
|
60
|
+
"de": "Abhängigkeiten aktualisiert",
|
|
61
|
+
"ru": "зависимости обновлены",
|
|
62
|
+
"pt": "dependências atualizadas",
|
|
63
|
+
"nl": "afhankelijkheden bijgewerkt",
|
|
64
|
+
"fr": "dépendances mises à jour",
|
|
65
|
+
"it": "dipendenze aggiornate",
|
|
66
|
+
"es": "dependencias actualizadas",
|
|
67
|
+
"pl": "zaktualizowane zależności",
|
|
68
|
+
"uk": "залежності оновлено",
|
|
69
|
+
"zh-cn": "依赖项已更新"
|
|
70
|
+
},
|
|
71
|
+
"0.2.3": {
|
|
72
|
+
"en": "some changes to fullfill requirements to bring the adapter to latest",
|
|
73
|
+
"de": "Einige Änderungen an den Erfüllungsanforderungen, um den Adapter auf den neuesten Stand zu bringen",
|
|
74
|
+
"ru": "некоторые изменения в требованиях к полному заполнению, чтобы привести адаптер к последней версии",
|
|
75
|
+
"pt": "algumas mudanças para atender aos requisitos para trazer o adaptador para o mais recente",
|
|
76
|
+
"nl": "enkele wijzigingen om aan de vereisten te voldoen om de adapter naar de nieuwste versie te brengen",
|
|
77
|
+
"fr": "quelques modifications aux exigences de remplissage pour mettre l'adaptateur à jour",
|
|
78
|
+
"it": "alcune modifiche ai requisiti di riempimento per portare l'adattatore al più recente",
|
|
79
|
+
"es": "algunos cambios en los requisitos de cumplimiento para llevar el adaptador a la versión más reciente",
|
|
80
|
+
"pl": "niektóre zmiany w celu spełnienia wymagań, aby adapter był najnowszy",
|
|
81
|
+
"uk": "деякі зміни у повному виконанні вимог, щоб адаптувати адаптер до останньої версії",
|
|
82
|
+
"zh-cn": "对 fullfill 要求的一些更改以使适配器达到最新"
|
|
83
|
+
},
|
|
84
|
+
"0.2.2": {
|
|
85
|
+
"en": "dependencies updated",
|
|
86
|
+
"de": "Abhängigkeiten aktualisiert",
|
|
87
|
+
"ru": "зависимости обновлены",
|
|
88
|
+
"pt": "dependências atualizadas",
|
|
89
|
+
"nl": "afhankelijkheden bijgewerkt",
|
|
90
|
+
"fr": "dépendances mises à jour",
|
|
91
|
+
"it": "dipendenze aggiornate",
|
|
92
|
+
"es": "dependencias actualizadas",
|
|
93
|
+
"pl": "zaktualizowane zależności",
|
|
94
|
+
"uk": "залежності оновлено",
|
|
95
|
+
"zh-cn": "依赖更新"
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
"titleLang": {
|
|
99
|
+
"en": "control of AMTRON wallbox",
|
|
100
|
+
"de": "Steuerung der AMTRON Wallbox",
|
|
101
|
+
"ru": "управление настенной коробкой AMTRON",
|
|
102
|
+
"pt": "controle da caixa de parede AMTRON",
|
|
103
|
+
"nl": "bediening van AMTRON wallbox",
|
|
104
|
+
"fr": "commande de la wallbox AMTRON",
|
|
105
|
+
"it": "controllo della wallbox AMTRON",
|
|
106
|
+
"es": "control de la caja de empotrar AMTRON",
|
|
107
|
+
"pl": "sterowanie wallboxem AMTRON",
|
|
108
|
+
"zh-cn": "AMTRON 墙盒的控制",
|
|
109
|
+
"uk": "управління AMTRON wallbox"
|
|
110
|
+
},
|
|
111
|
+
"desc": {
|
|
112
|
+
"en": "read statistic information and set configuration values on AMTRON wallboxes from Mennekes",
|
|
113
|
+
"de": "Statistikinformationen lesen und Konfigurationswerte auf AMTRON-Wallboxen von Mennekes einstellen",
|
|
114
|
+
"ru": "читать статистическую информацию и задавать значения конфигурации на настенных ящиках AMTRON от Mennekes",
|
|
115
|
+
"pt": "leia informações estatísticas e defina valores de configuração em caixas de parede AMTRON da Mennekes",
|
|
116
|
+
"nl": "lees statistische informatie en stel configuratiewaarden in op AMTRON wallboxes van Mennekes",
|
|
117
|
+
"fr": "lire les informations statistiques et définir les valeurs de configuration sur les boîtiers muraux AMTRON de Mennekes",
|
|
118
|
+
"it": "leggere le informazioni statistiche e impostare i valori di configurazione sulle wallbox AMTRON di Mennekes",
|
|
119
|
+
"es": "leer información estadística y establecer valores de configuración en los wallboxes AMTRON de Mennekes",
|
|
120
|
+
"pl": "odczytywanie informacji statystycznych i ustawianie wartości konfiguracyjnych w stacjach naściennych AMTRON firmy Mennekes",
|
|
121
|
+
"zh-cn": "从 Mennekes 读取 AMTRON 墙盒上的统计信息并设置配置值",
|
|
122
|
+
"uk": "читати статистичну інформацію та встановлювати значення конфігурації на AMTRON wallbox від Mennekes"
|
|
123
|
+
},
|
|
124
|
+
"platform": "Javascript/Node.js",
|
|
125
|
+
"mode": "daemon",
|
|
126
|
+
"icon": "amtronwallbox.png",
|
|
127
|
+
"enabled": true,
|
|
128
|
+
"messagebox": false,
|
|
129
|
+
"extIcon": "https://raw.githubusercontent.com/rg-engineering/ioBroker.amtronwallbox/master/admin/amtronwallbox.png",
|
|
130
|
+
"keywords": [
|
|
131
|
+
"amtron",
|
|
132
|
+
"mennekes",
|
|
133
|
+
"wallbox"
|
|
134
|
+
],
|
|
135
|
+
"readme": "https://github.com/rg-engineering/ioBroker.amtronwallbox/blob/master/README.md",
|
|
136
|
+
"loglevel": "info",
|
|
137
|
+
"stopBeforeUpdate": true,
|
|
138
|
+
"type": "vehicle",
|
|
139
|
+
"license": "MIT",
|
|
140
|
+
"materialize": true,
|
|
141
|
+
"dependencies": [
|
|
142
|
+
{
|
|
143
|
+
"js-controller": ">=2.0.0"
|
|
144
|
+
}
|
|
145
|
+
],
|
|
146
|
+
"plugins": {
|
|
147
|
+
"sentry": {
|
|
148
|
+
"dsn": "https://9062b5ac97dc4ee08af43fb2513eb6c8@o390433.ingest.sentry.io/4505104266297344"
|
|
149
|
+
}
|
|
150
|
+
},
|
|
151
|
+
"compact": true,
|
|
152
|
+
"authors": [
|
|
153
|
+
{
|
|
154
|
+
"name": "René G.",
|
|
155
|
+
"email": "info@rg-engineering.eu"
|
|
156
|
+
}
|
|
157
|
+
],
|
|
158
|
+
"connectionType": "local",
|
|
159
|
+
"dataSource": "push",
|
|
160
|
+
"adminUI": {
|
|
161
|
+
"config": "materialize"
|
|
162
|
+
},
|
|
163
|
+
"messages": []
|
|
164
|
+
},
|
|
165
|
+
"native": {
|
|
166
|
+
"WallboxSystems": [],
|
|
167
|
+
"readInterval": 5
|
|
168
|
+
}
|
|
169
|
+
}
|