iobroker.zendure-solarflow 1.12.0-alpha.0 → 1.12.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 +17 -6
- package/admin/build/index.js +24 -24
- package/admin/build/index.js.map +2 -2
- package/build/models/ISolarFlowMqttProperties.js.map +2 -2
- package/build/services/calculationService.js +21 -13
- package/build/services/calculationService.js.map +2 -2
- package/build/services/jobSchedule.js +7 -0
- package/build/services/jobSchedule.js.map +2 -2
- package/build/services/mqttService.js +96 -85
- package/build/services/mqttService.js.map +3 -3
- package/io-package.json +14 -14
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -13,8 +13,7 @@
|
|
|
13
13
|
|
|
14
14
|
## Zendure Solarflow adapter for ioBroker
|
|
15
15
|
|
|
16
|
-
This project is an ioBroker Adapter to read data from the Zendure Solarflow Cloud API.
|
|
17
|
-
You can read more about the API here: https://github.com/Zendure/developer-device-data-report
|
|
16
|
+
This project is an ioBroker Adapter to read data from the Zendure Solarflow Cloud API.
|
|
18
17
|
|
|
19
18
|
## Donate
|
|
20
19
|
|
|
@@ -31,7 +30,17 @@ If you find the adapter useful for you and want to support my work, feel free to
|
|
|
31
30
|
- Stop input if one battery drops into low voltage (battery protect). Works only when setting the output limit via the adapter
|
|
32
31
|
- Control more than one Solarflow at the same time!
|
|
33
32
|
- Get more precise calculations!
|
|
34
|
-
- Works with all Zendure SolarFlow devices: HUB1200, Hyper2000, HUB2000 and AIO!
|
|
33
|
+
- Works with all Zendure SolarFlow devices: HUB1200, Hyper2000, HUB2000 and AIO!
|
|
34
|
+
|
|
35
|
+
## Offline-Mode (Disconnect from Zendure Cloud)
|
|
36
|
+
|
|
37
|
+
As a new feature you can disconnect the Zendure device from the Cloud. You can either use the [Solarflow Bluetooth Manager](https://github.com/reinhard-brandstaedter/solarflow-bt-manager) from Reinhard Brandstätter or my own Windows Tool [Zendure Cloud Disconnector](https://github.com/nograx/zendure-cloud-disconnector) to disconnect the device from the cloud. It's also possible to redirect DNS requests with your router from "mq.zen-iot.com" to your own MQTT server!
|
|
38
|
+
|
|
39
|
+
Both tools connect to the Zendure device via bluetooth and simply sets the internal MQTT url to a new url/ip you have to provide. Currently you are forced to use the default MQTT port 1883 on your server. You are also forced to deactivate authentication on the MQTT server as the Zendure device use a hardcoded password.
|
|
40
|
+
|
|
41
|
+
If the Zendure device communicates with your MQTT server, you can connect this ioBroker adapter to the same MQTT instance. You have to provide the device model and the device key (which is shown in the Zendure Cloud Disconnector app).
|
|
42
|
+
|
|
43
|
+
You can still do firmware updates with the official Zendure app via bluetooth and use both bluetooth tools to reconnect the device to the cloud!
|
|
35
44
|
|
|
36
45
|
## Notes
|
|
37
46
|
|
|
@@ -41,16 +50,18 @@ If you find the adapter useful for you and want to support my work, feel free to
|
|
|
41
50
|
|
|
42
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.
|
|
43
52
|
|
|
44
|
-
3. The Adapter will show a +
|
|
53
|
+
3. The Adapter will show a +7W use on battery if no solar input and device is online. This will reflect the "stand-by" usage of the device.
|
|
45
54
|
|
|
46
55
|
## Credits
|
|
47
56
|
|
|
48
57
|
Credits goes to https://github.com/reinhard-brandstaedter/solarflow which helped a lot with the knowledge about the MQTT server from Zendure! Thanks!
|
|
49
58
|
|
|
50
59
|
## Changelog
|
|
51
|
-
### 1.12.0
|
|
60
|
+
### 1.12.0 (2025-03-17)
|
|
52
61
|
|
|
53
|
-
- 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
|
|
62
|
+
- 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
|
|
63
|
+
- Some improvements on value calculation
|
|
64
|
+
- Some improvements on AIO 2400 device
|
|
54
65
|
|
|
55
66
|
### 1.11.0 (2025-02-11)
|
|
56
67
|
|