iobroker.zendure-solarflow 1.10.7 → 1.12.0-alpha.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 -11
- package/admin/build/index.js +32 -32
- package/admin/build/index.js.map +3 -3
- package/build/constants/sharedStates.js +22 -0
- package/build/constants/sharedStates.js.map +2 -2
- package/build/helpers/createCalculationStates.js +1 -1
- package/build/helpers/createCalculationStates.js.map +2 -2
- package/build/helpers/createControlStates.js +28 -3
- package/build/helpers/createControlStates.js.map +2 -2
- package/build/helpers/createSolarFlowLocalStates.js +133 -0
- package/build/helpers/createSolarFlowLocalStates.js.map +7 -0
- package/build/main.js +7 -2
- 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/jobSchedule.js +25 -15
- package/build/services/jobSchedule.js.map +2 -2
- package/build/services/mqttService.js +166 -64
- package/build/services/mqttService.js.map +2 -2
- package/io-package.json +27 -27
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,6 +16,13 @@
|
|
|
16
16
|
This project is an ioBroker Adapter to read data from the Zendure Solarflow Cloud API. It uses the official API provided by Zendure.
|
|
17
17
|
You can read more about the API here: https://github.com/Zendure/developer-device-data-report
|
|
18
18
|
|
|
19
|
+
## Donate
|
|
20
|
+
|
|
21
|
+
If you find the adapter useful for you and want to support my work, feel free to donate by Paypal. Thank You!
|
|
22
|
+
(this is an personal Donate link for Nograx, in no relation to the ioBroker Project!)<br />
|
|
23
|
+
|
|
24
|
+
[](https://www.paypal.com/paypalme/PeterFrommert)
|
|
25
|
+
|
|
19
26
|
## Features
|
|
20
27
|
|
|
21
28
|
- Get all telemetry data from your Solarflow devices, also those not visible in the offical app - like battery voltage
|
|
@@ -40,14 +47,18 @@ You can read more about the API here: https://github.com/Zendure/developer-devic
|
|
|
40
47
|
|
|
41
48
|
Credits goes to https://github.com/reinhard-brandstaedter/solarflow which helped a lot with the knowledge about the MQTT server from Zendure! Thanks!
|
|
42
49
|
|
|
43
|
-
##
|
|
44
|
-
|
|
45
|
-
If you find the adapter useful for you and want to support my work, feel free to donate by Paypal. Thank You!
|
|
46
|
-
(this is an personal Donate link for Nograx, in no relation to the ioBroker Project!)<br />
|
|
50
|
+
## Changelog
|
|
51
|
+
### 1.12.0-alpha.0 (2025-03-16)
|
|
47
52
|
|
|
48
|
-
|
|
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
|
|
54
|
+
|
|
55
|
+
### 1.11.0 (2025-02-11)
|
|
49
56
|
|
|
50
|
-
|
|
57
|
+
- Drop Standby usage to 7W and 14W if HUB connected with ACE as it is more accurate
|
|
58
|
+
- Added heatState and autoModel (system operation mode) state
|
|
59
|
+
- Added possibility to set the operation mode (autoModel)
|
|
60
|
+
- Fix gridPower state
|
|
61
|
+
|
|
51
62
|
### 1.10.7 (2025-01-21)
|
|
52
63
|
|
|
53
64
|
- Fix reset calculation values of ACE if connected to HUB
|
|
@@ -60,11 +71,6 @@ If you find the adapter useful for you and want to support my work, feel free to
|
|
|
60
71
|
|
|
61
72
|
- Fix "Grid Input Power" state if connected with Ace
|
|
62
73
|
|
|
63
|
-
### 1.10.2 (2025-01-14)
|
|
64
|
-
|
|
65
|
-
- Fix calculation of grid input power on ace
|
|
66
|
-
- Correct standby usage of battery if conncted with ace (add additional 10W)
|
|
67
|
-
|
|
68
74
|
### 1.10.1 (2025-01-06)
|
|
69
75
|
|
|
70
76
|
- Fix input limit when hub is bundled with ace
|