iobroker.amtronwallbox 0.3.6 → 1.0.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 +4 -71
- package/admin/jsonConfig.json5 +41 -0
- package/build/lib/amtron_MHCP.js +1199 -0
- package/build/lib/amtron_MHCP.js.map +1 -0
- package/build/lib/amtron_rest.js +986 -0
- package/build/lib/amtron_rest.js.map +1 -0
- package/build/lib/amtronwallbox.js +17 -0
- package/build/lib/amtronwallbox.js.map +1 -0
- package/build/lib/base.js +299 -0
- package/build/lib/base.js.map +1 -0
- package/build/lib/types.js +3 -0
- package/build/lib/types.js.map +1 -0
- package/build/main.js +179 -0
- package/build/main.js.map +1 -0
- package/io-package.json +15 -15
- package/package.json +15 -7
- package/lib/support_tools.js +0 -348
- package/main.js +0 -2597
package/README.md
CHANGED
|
@@ -56,6 +56,10 @@ Note: Since the boxes have different interfaces, it may be that not all interfac
|
|
|
56
56
|
Placeholder for the next version (at the beginning of the line):
|
|
57
57
|
### **WORK IN PROGRESS**
|
|
58
58
|
-->
|
|
59
|
+
### 1.0.0 (2026-04-25)
|
|
60
|
+
* (René) see issue ##423: parser for ChargeControl overworked, compatibility with new datapoints of v5.33 of wallbox firmware
|
|
61
|
+
* (René) adapter rewritten in typescript
|
|
62
|
+
|
|
59
63
|
### 0.3.6 (2026-03-15)
|
|
60
64
|
* (René) update dependencies + changes based on adapter checker
|
|
61
65
|
|
|
@@ -68,77 +72,6 @@ Note: Since the boxes have different interfaces, it may be that not all interfac
|
|
|
68
72
|
### 0.3.3 (2025-10-04)
|
|
69
73
|
* (René) update dependencies + changes based on adapter checker
|
|
70
74
|
|
|
71
|
-
### 0.3.2 (2025-06-28)
|
|
72
|
-
* (René) update dependencies
|
|
73
|
-
* (René) new testing
|
|
74
|
-
|
|
75
|
-
### 0.3.1 (2025-02-27)
|
|
76
|
-
* (René) changes requested by adapter checker
|
|
77
|
-
* (René) dependencies updated
|
|
78
|
-
|
|
79
|
-
### 0.3.0 (2024-12-17)
|
|
80
|
-
* (René) see issue #284: test with nodejs@22
|
|
81
|
-
* (René) update dependencies
|
|
82
|
-
* (René) migration to jsonConfig
|
|
83
|
-
|
|
84
|
-
### 0.2.16 (2024-08-24)
|
|
85
|
-
* (René) update dependencies
|
|
86
|
-
* (René) bug fixes based on adapter checker recommendation
|
|
87
|
-
|
|
88
|
-
### 0.2.15 (2024-05-28)
|
|
89
|
-
* (René) change of dependencies
|
|
90
|
-
* (René) show cron job in log after creation
|
|
91
|
-
|
|
92
|
-
### 0.2.14 (2024-01-12)
|
|
93
|
-
* (René) dependencies updated
|
|
94
|
-
|
|
95
|
-
### 0.2.13 (2023-12-23)
|
|
96
|
-
* (René) just a sentry test
|
|
97
|
-
|
|
98
|
-
### 0.2.12 (2023-12-23)
|
|
99
|
-
* (René) see issue #162: ignore unused data from wallbox
|
|
100
|
-
|
|
101
|
-
### 0.2.11 (2023-12-16)
|
|
102
|
-
* (René) type of adapter changed back to "energy"
|
|
103
|
-
|
|
104
|
-
### 0.2.9 (2023-12-16)
|
|
105
|
-
* (René) dependencies updated
|
|
106
|
-
|
|
107
|
-
### 0.2.8 (2023-11-26)
|
|
108
|
-
* (René) role of states overworked
|
|
109
|
-
|
|
110
|
-
### 0.2.7 (2023-11-19)
|
|
111
|
-
* (René) dependencies updated
|
|
112
|
-
|
|
113
|
-
### 0.2.6 (2023-09-23)
|
|
114
|
-
* (René) bug fix for reported exceptions by sentry
|
|
115
|
-
|
|
116
|
-
### 0.2.5 (2023-08-27)
|
|
117
|
-
* (René) smaller bug fixes, see issue #59
|
|
118
|
-
|
|
119
|
-
### 0.2.4 (2023-07-30)
|
|
120
|
-
* (René) dependencies updated
|
|
121
|
-
|
|
122
|
-
### 0.2.3 (2023-06-01)
|
|
123
|
-
* (René) some changes to fullfill requirements to bring the adapter to latest
|
|
124
|
-
|
|
125
|
-
### 0.2.2 (2023-04-07)
|
|
126
|
-
* (René) dependencies updated
|
|
127
|
-
|
|
128
|
-
### 0.2.0 (2023-01-31)
|
|
129
|
-
* (René) see issue #1: write data to XTRA wallbox (experimentel)
|
|
130
|
-
|
|
131
|
-
### 0.1.0 (2022-12-18)
|
|
132
|
-
* (René) see issue #1: support of XTRA
|
|
133
|
-
|
|
134
|
-
### 0.0.3 (2022-08-18)
|
|
135
|
-
* (René) some bug fixes
|
|
136
|
-
* (René) change to cron
|
|
137
|
-
* (René) update of dependencies
|
|
138
|
-
|
|
139
|
-
### 0.0.1 (2022-05-19)
|
|
140
|
-
* (René) initial release
|
|
141
|
-
|
|
142
75
|
## License
|
|
143
76
|
MIT License
|
|
144
77
|
|
package/admin/jsonConfig.json5
CHANGED
|
@@ -16,6 +16,47 @@
|
|
|
16
16
|
"lg": 1.2,
|
|
17
17
|
"xl": 1.2
|
|
18
18
|
},
|
|
19
|
+
|
|
20
|
+
"currentversiontxt": {
|
|
21
|
+
"type": "staticText",
|
|
22
|
+
"newLine": true,
|
|
23
|
+
"text": "current installed version",
|
|
24
|
+
"xs": 12,
|
|
25
|
+
"sm": 2,
|
|
26
|
+
"md": 2,
|
|
27
|
+
"lg": 2,
|
|
28
|
+
"xl": 2
|
|
29
|
+
},
|
|
30
|
+
|
|
31
|
+
"currentversion": {
|
|
32
|
+
"type": "textSendTo",
|
|
33
|
+
"label": "current installed firmware version",
|
|
34
|
+
"command": "checkCurrentVersion",
|
|
35
|
+
"jsonData": "{\"test\": \"aaa\", \"test2\": \"bbb\" }",
|
|
36
|
+
"alsoDependsOn": [ "checkCurrentVersion" ],
|
|
37
|
+
"xs": 12,
|
|
38
|
+
"sm": 12,
|
|
39
|
+
"md": 6,
|
|
40
|
+
"lg": 4,
|
|
41
|
+
"xl": 4
|
|
42
|
+
|
|
43
|
+
},
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
"URLFirmware": {
|
|
47
|
+
"type": "staticLink",
|
|
48
|
+
"text": "link to Software download page",
|
|
49
|
+
"href": "https://www.mennekes.de/emobility/services/software-updates/?_gl=1*15k0mir*_up*MQ..*_gs*MQ..&gclid=Cj0KCQjw7IjOBhDyARIsAFzrWQyt4Zh48z24nNrfbinvm6sW1uqWkjwcxPb97d2Vh9WUyqkLEChGGHAaAlVWEALw_wcB",
|
|
50
|
+
"button": true,
|
|
51
|
+
"icon": "info",
|
|
52
|
+
"newLine": true,
|
|
53
|
+
"xs": 12,
|
|
54
|
+
"sm": 12,
|
|
55
|
+
"md": 6,
|
|
56
|
+
"lg": 4,
|
|
57
|
+
"xl": 4
|
|
58
|
+
},
|
|
59
|
+
|
|
19
60
|
"dividerHdr1": {
|
|
20
61
|
"newLine": true,
|
|
21
62
|
"type": "header",
|