iobroker.zendure-solarflow 1.8.8 → 1.9.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 +12 -1
- package/admin/build/index.js +35 -35
- package/admin/build/index.js.map +2 -2
- package/admin/style.css +24 -0
- package/build/constants/sharedStates.js +6 -2
- package/build/constants/sharedStates.js.map +2 -2
- package/build/helpers/createControlStates.js +24 -0
- package/build/helpers/createControlStates.js.map +2 -2
- package/build/main.js +2 -0
- package/build/main.js.map +2 -2
- package/build/services/adapterService.js +37 -5
- package/build/services/adapterService.js.map +2 -2
- package/build/services/mqttService.js +20 -3
- package/build/services/mqttService.js.map +2 -2
- package/io-package.json +29 -28
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ You can read more about the API here: https://github.com/Zendure/developer-devic
|
|
|
24
24
|
- Stop input if one battery drops into low voltage (battery protect). Works only when setting the output limit via the adapter
|
|
25
25
|
- Control more than one Solarflow at the same time!
|
|
26
26
|
- Get more precise calculations!
|
|
27
|
-
- Works with all Zendure SolarFlow devices: HUB1200
|
|
27
|
+
- Works with all Zendure SolarFlow devices: HUB1200, Hyper2000, HUB2000 and AIO! I can test only on HUB1200 as I don't own the other devices...
|
|
28
28
|
|
|
29
29
|
## Notes
|
|
30
30
|
|
|
@@ -34,6 +34,8 @@ You can read more about the API here: https://github.com/Zendure/developer-devic
|
|
|
34
34
|
|
|
35
35
|
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.
|
|
36
36
|
|
|
37
|
+
3. The Adapter will show a +10W use on battery if no solar input and device is online. This will reflect the "stand-by" usage of the device.
|
|
38
|
+
|
|
37
39
|
## Credits
|
|
38
40
|
|
|
39
41
|
Credits goes to https://github.com/reinhard-brandstaedter/solarflow which helped a lot with the knowledge about the MQTT server from Zendure! Thanks!
|
|
@@ -46,6 +48,15 @@ If you find the adapter useful for you and want to support my work, feel free to
|
|
|
46
48
|
[](https://www.paypal.com/paypalme/PeterFrommert)
|
|
47
49
|
|
|
48
50
|
## Changelog
|
|
51
|
+
### 1.9.1 (2024-11-21)
|
|
52
|
+
|
|
53
|
+
- Improvement for 'Low Voltage Block'.
|
|
54
|
+
- Changed the state "hubState" a an option value.
|
|
55
|
+
|
|
56
|
+
### 1.9.0 (2024-11-20)
|
|
57
|
+
|
|
58
|
+
- New option to force Solarflow device to go offline when "Low Voltage Block"-option is used.
|
|
59
|
+
|
|
49
60
|
### 1.8.8 (2024-09-20)
|
|
50
61
|
|
|
51
62
|
- Improve connection retry, expand the time with every retry attempt.
|