iobroker.zendure-solarflow 1.15.3-alpha.0 → 1.15.4
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 +9 -120
- package/admin/build/index.js +1 -1
- package/admin/build/index.js.map +1 -1
- package/build/constants/ac2400ControlStates.js +9 -0
- package/build/constants/ac2400ControlStates.js.map +2 -2
- package/build/constants/aceControlStates.js +9 -0
- package/build/constants/aceControlStates.js.map +2 -2
- package/build/constants/hubControlStates.js +9 -0
- package/build/constants/hubControlStates.js.map +2 -2
- package/build/constants/hyperControlStates.js +9 -0
- package/build/constants/hyperControlStates.js.map +2 -2
- package/build/constants/sharedStates.js +7 -0
- package/build/constants/sharedStates.js.map +2 -2
- package/build/constants/solarflow800ControlStates.js +9 -0
- package/build/constants/solarflow800ControlStates.js.map +2 -2
- package/build/constants/solarflow800ProControlStates.js +9 -0
- package/build/constants/solarflow800ProControlStates.js.map +2 -2
- package/build/main.js +8 -0
- package/build/main.js.map +2 -2
- package/build/models/ISolarFlowMqttProperties.js +1 -0
- package/build/models/ISolarFlowMqttProperties.js.map +2 -2
- package/build/services/mqttService.js +65 -39
- package/build/services/mqttService.js.map +2 -2
- package/io-package.json +27 -27
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -44,20 +44,25 @@ You can still do firmware updates with the official Zendure app via bluetooth an
|
|
|
44
44
|
|
|
45
45
|
## Notes
|
|
46
46
|
|
|
47
|
-
1. Please deactivate/uncheck all modes in the Zendure App, otherwise it is not possible to set the output limit!
|
|
47
|
+
1. Please deactivate/uncheck all modes in the Zendure App, otherwise it is not possible to set the output limit! You can also set "autoModel" to 0 via control folder in adapter/objects.
|
|
48
48
|
|
|
49
49
|

|
|
50
50
|
|
|
51
|
-
2. You will be logged out of the official iOS or Android App after logging in with the ioBroker adapter. This is a normal behavior. As a workaround you can create an second Zendure account with another e-mail and grant access to your Solarflow HUB to this account. Then use the second account for ioBroker / the Zendure Solarflow adapter.
|
|
51
|
+
2. You will be logged out of the official iOS or Android App after logging in with the ioBroker adapter. This is a normal behavior. As a workaround you can create an second Zendure account with another e-mail and grant access to your Solarflow HUB to this account. Then use the second account for ioBroker / the Zendure Solarflow adapter. This is not working für new devices like SF 2400 AC or SF 800 (Pro).
|
|
52
52
|
|
|
53
53
|
## Credits
|
|
54
54
|
|
|
55
55
|
Credits goes to https://github.com/reinhard-brandstaedter/solarflow which helped a lot with the knowledge about the MQTT server from Zendure! Thanks!
|
|
56
56
|
|
|
57
57
|
## Changelog
|
|
58
|
-
### 1.15.
|
|
58
|
+
### 1.15.4 (2025-07-17)
|
|
59
59
|
|
|
60
|
-
-
|
|
60
|
+
- Add smart mode control parameter for more devices
|
|
61
|
+
|
|
62
|
+
### 1.15.3 (2025-07-17)
|
|
63
|
+
|
|
64
|
+
- Match case sensitive product key for SF 2400 AC and SF 800 in settings if local mode is used
|
|
65
|
+
- Add sensor and control of "SmartMode"
|
|
61
66
|
|
|
62
67
|
### 1.15.2 (2025-07-14)
|
|
63
68
|
|
|
@@ -73,122 +78,6 @@ Credits goes to https://github.com/reinhard-brandstaedter/solarflow which helped
|
|
|
73
78
|
- Add 'packPower' state, which shows combined power from (packInputPower and outputPackPower). Discharging will be shown with a negative value.
|
|
74
79
|
- Add 'hyperTmp' to Solarflow 800 devices in hope this will show the temperature of the Solarflow 800 (can not test it due to lack of test device).
|
|
75
80
|
|
|
76
|
-
### 1.14.4 (2025-06-26)
|
|
77
|
-
|
|
78
|
-
- Add Product Key for Solarflow 800
|
|
79
|
-
- Update dependencys
|
|
80
|
-
|
|
81
|
-
### 1.14.3 (2025-06-09)
|
|
82
|
-
|
|
83
|
-
- Fix input and output limit for Solarflow 2400 AC
|
|
84
|
-
|
|
85
|
-
### 1.14.2 (2025-06-07)
|
|
86
|
-
|
|
87
|
-
- Fix control states not writable.
|
|
88
|
-
|
|
89
|
-
### 1.14.1 (2025-06-07)
|
|
90
|
-
|
|
91
|
-
- IMPORTANT: This version will use a new way to check which states should be created for the device, so maybe something is broken on state creation!
|
|
92
|
-
- Add support for AC2400, Solarflow 800 and Solarflow 800 Pro. All devices are untested as Zendure won't allow to share data to other users on these new devices AND I don't own any of the devices!
|
|
93
|
-
- Removed the "standby usage" on batteries, as it confused some people.
|
|
94
|
-
|
|
95
|
-
### 1.13.2 (2025-05-07)
|
|
96
|
-
|
|
97
|
-
- Fix AC Mode showing unknown parameter on ACE 1500
|
|
98
|
-
|
|
99
|
-
### 1.13.1 (2025-05-05)
|
|
100
|
-
|
|
101
|
-
- TEST: Set Smart CT Mode and Smart Matching Mode correctly - Feedback needed!
|
|
102
|
-
- Removed efficiency from calculation, as it seems Zendure already included it in charge and discharge values
|
|
103
|
-
|
|
104
|
-
### 1.13.0 (2025-04-30)
|
|
105
|
-
|
|
106
|
-
- Add possibility to deactivate automatic restart of adapter in adapter settings (recommended only on local mode!)
|
|
107
|
-
- Fixed missing control state "hubState"
|
|
108
|
-
|
|
109
|
-
### 1.12.7 (2025-03-24)
|
|
110
|
-
|
|
111
|
-
- Add productKey "gDa3tb" for Hyper 2000
|
|
112
|
-
|
|
113
|
-
### 1.12.6 (2025-03-21)
|
|
114
|
-
|
|
115
|
-
- Fix onMessage Debug message
|
|
116
|
-
|
|
117
|
-
### 1.12.5 (2025-03-21)
|
|
118
|
-
|
|
119
|
-
- Add Debug messages on log level debug
|
|
120
|
-
- Add schedule for adapter refresh on local mode
|
|
121
|
-
- Fix Change of Discharge limit to 0
|
|
122
|
-
|
|
123
|
-
### 1.12.4 (2025-03-19)
|
|
124
|
-
|
|
125
|
-
- Fix calculation of SOC if "local" mode is used
|
|
126
|
-
|
|
127
|
-
### 1.12.3 (2025-03-19)
|
|
128
|
-
|
|
129
|
-
- Add 2 more devices if "local" mode is used
|
|
130
|
-
- Fix mqtt subscription of 2. device in "local" mode
|
|
131
|
-
|
|
132
|
-
### 1.12.2 (2025-03-18)
|
|
133
|
-
|
|
134
|
-
- Fix reset of calculation values on "local" mode
|
|
135
|
-
|
|
136
|
-
### 1.12.1 (2025-03-17)
|
|
137
|
-
|
|
138
|
-
- Fix IOT subscription
|
|
139
|
-
|
|
140
|
-
### 1.12.0 (2025-03-17)
|
|
141
|
-
|
|
142
|
-
- Added possibility to use "local" mode. You have to either route dns request to your own MQTT server or use a tool to modify the Zendure device
|
|
143
|
-
- Some improvements on value calculation
|
|
144
|
-
- Some improvements on AIO 2400 device
|
|
145
|
-
|
|
146
|
-
### 1.11.0 (2025-02-11)
|
|
147
|
-
|
|
148
|
-
- Drop Standby usage to 7W and 14W if HUB connected with ACE as it is more accurate
|
|
149
|
-
- Added heatState and autoModel (system operation mode) state
|
|
150
|
-
- Added possibility to set the operation mode (autoModel)
|
|
151
|
-
- Fix gridPower state
|
|
152
|
-
|
|
153
|
-
### 1.10.7 (2025-01-21)
|
|
154
|
-
|
|
155
|
-
- Fix reset calculation values of ACE if connected to HUB
|
|
156
|
-
|
|
157
|
-
### 1.10.6 (2025-01-16)
|
|
158
|
-
|
|
159
|
-
- Fix start of calculation if HUB is connected with Ace
|
|
160
|
-
|
|
161
|
-
### 1.10.4 (2025-01-14)
|
|
162
|
-
|
|
163
|
-
- Fix "Grid Input Power" state if connected with Ace
|
|
164
|
-
|
|
165
|
-
### 1.10.1 (2025-01-06)
|
|
166
|
-
|
|
167
|
-
- Fix input limit when hub is bundled with ace
|
|
168
|
-
- Fix calculation when low voltage block is activated
|
|
169
|
-
|
|
170
|
-
### 1.10.0 (2024-12-02)
|
|
171
|
-
|
|
172
|
-
- Add setting to perform a full charge if SOC from Zendure is greater than 50% when on low voltage
|
|
173
|
-
- Bugfixes
|
|
174
|
-
|
|
175
|
-
### 1.9.3 (2024-11-22)
|
|
176
|
-
|
|
177
|
-
- Fix for Low Voltage Block not deactivated
|
|
178
|
-
|
|
179
|
-
### 1.9.2 (2024-11-21)
|
|
180
|
-
|
|
181
|
-
- Fix some state definitions
|
|
182
|
-
|
|
183
|
-
### 1.9.1 (2024-11-21)
|
|
184
|
-
|
|
185
|
-
- Improvement for 'Low Voltage Block'.
|
|
186
|
-
- Changed the state "hubState" a an option value.
|
|
187
|
-
|
|
188
|
-
### 1.9.0 (2024-11-20)
|
|
189
|
-
|
|
190
|
-
- New option to force Solarflow device to go offline when "Low Voltage Block"-option is used.
|
|
191
|
-
|
|
192
81
|
## License
|
|
193
82
|
|
|
194
83
|
MIT License
|