iobroker.tibberlink 3.5.2 → 3.5.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 +18 -1
- package/admin/jsonConfig.json +5 -0
- package/admin/jsonConfigNEW.json +1933 -0
- package/build/lib/{tibberHelper.js → projectUtils.js} +88 -53
- package/build/lib/projectUtils.js.map +1 -0
- package/build/lib/tibberAPICaller.js +136 -110
- package/build/lib/tibberAPICaller.js.map +1 -1
- package/build/lib/tibberCalculator.js +328 -283
- package/build/lib/tibberCalculator.js.map +1 -1
- package/build/lib/tibberLocal.js +63 -48
- package/build/lib/tibberLocal.js.map +1 -1
- package/build/lib/tibberPulse.js +64 -43
- package/build/lib/tibberPulse.js.map +1 -1
- package/build/lib/tools.js +9 -5
- package/build/lib/tools.js.map +1 -1
- package/build/main.js +146 -82
- package/build/main.js.map +1 -1
- package/io-package.json +27 -27
- package/package.json +77 -87
- package/build/lib/tibberHelper.js.map +0 -1
package/README.md
CHANGED
|
@@ -68,7 +68,7 @@ If you're not currently a Tibber user, I would greatly appreciate it if you coul
|
|
|
68
68
|
- "Best hours block LTF": "Best hours block" within a Limited Time Frame (LTF).
|
|
69
69
|
- "Smart Battery Buffer": Utilize the "EfficiencyLoss" parameter to specify the efficiency loss of the battery system. The "EfficiencyLoss" parameter can range from 0 to 1, where 0 represents no efficiency loss and 1 represents complete efficiency loss. For example, a value of 0.25 indicates a 25% efficiency loss for a charge/discharge cycle.
|
|
70
70
|
Use the "AmountHours" parameter to input the desired number of hours for battery charging. The calculator will activate battery charging ("value YES") and deactivate battery feed ("value 2 NO") during the specified "AmountHours" cheapest hours. Conversely, it will deactivate battery charging ("value NO") and activate battery feed ("value 2 YES") during hours with the highest cost, provided the cost is higher than the highest total price among the cheap hours. In the remaining normal hours where energy buffering by the battery is not economically viable, both outputs will be switched off.
|
|
71
|
-
- LTF channels:
|
|
71
|
+
- LTF channels: These operate similarly to standard channels but are active only within a time frame defined by the 'StartTime' and 'StopTime' state objects. After 'StopTime,' the channel automatically deactivates. 'StartTime' and 'StopTime' can span two calendar days, as Tibber does not provide data beyond a 48-hour window. Both states require a date-time string in ISO-8601 format with a timezone offset, e.g., '2024-12-24T18:00:00.000+01:00'." Additionally, the LTF channels feature a new state parameter called 'RepeatDays,' which defaults to 0. When 'RepeatDays' is set to a positive integer, the channel will repeat its cycle by incrementing both 'StartTime' and 'StopTime' by the specified number of days after 'StopTime' is reached. For example, set 'RepeatDays' to 1 for daily repetition.
|
|
72
72
|
|
|
73
73
|
### Hints
|
|
74
74
|
|
|
@@ -106,6 +106,23 @@ If you enjoyed this project — or just feeling generous, consider buying me a b
|
|
|
106
106
|
|
|
107
107
|
## Changelog
|
|
108
108
|
|
|
109
|
+
### 3.5.4 (2024-12-01)
|
|
110
|
+
|
|
111
|
+
- (HombachC) add warning when LTF stop time isn't same or next day and provide docu
|
|
112
|
+
- (HombachC) fix error in calculator channel 'best single hours' (#594)
|
|
113
|
+
- (HombachC) intruduce 'iobroker/eslint-config' (#591)
|
|
114
|
+
- (HombachC) performance optimizations
|
|
115
|
+
- (HombachC) dependency updates
|
|
116
|
+
|
|
117
|
+
### 3.5.3 (2024-11-23)
|
|
118
|
+
|
|
119
|
+
- (HombachC) fix edge case in output state setup and usage
|
|
120
|
+
- (HombachC) optimzed state subscription
|
|
121
|
+
- (HombachC) update deprecated state calls
|
|
122
|
+
- (HombachC) add await to delObjectAsync
|
|
123
|
+
- (HombachC) harmonize project tools
|
|
124
|
+
- (HombachC) dependency updates
|
|
125
|
+
|
|
109
126
|
### 3.5.2 (2024-10-30)
|
|
110
127
|
|
|
111
128
|
- (HombachC) add verification for YES/NO 2 values in calculator (#547)
|