You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,12 @@
1
1
# Changelog
2
2
3
+
## V1.94
4
+
### script
5
+
* add script functionality for a super high priority limit change if your powermeter falls below POWERMETER_MIN_POINT (https://github.com/reserve85/HoymilesZeroExport/issues/200)
# if your powermeter exceeds POWERMETER_MAX_POINT: immediatelly set the limit to predefined percent of HOY_MAX_WATT (if you have more than one inverter it´s the sum of all HOY_MAX_WATT)
269
268
# value = 0 disables the feature. Values are possible from [0 to 100]
270
269
ON_GRID_USAGE_JUMP_TO_LIMIT_PERCENT = 100
270
+
# if your powermeter falls below POWERMETER_MIN_POINT: immediatelly decrease the limit
271
+
ON_GRID_FEED_FAST_LIMIT_DECREASE = false
271
272
# max difference between Limit and real output power in % of HOY_MAX_WATT (100 = disabled)
If you defined ON_GRID_USAGE_JUMP_TO_LIMIT_PERCENT > 0, then the limit will jump to the defined percent when reaching this point.
26
26
"""
27
27
pass
28
+
29
+
defget_powermeter_min_point(self):
30
+
"""
31
+
The minimum power of your powermeter for the normal "regulation loop".
32
+
if your powermeter jumps under this point and ON_GRID_FEED_FAST_LIMIT_DECREASE = true, the limit will be reduced instantly. it is like a "super high priority limit change".
33
+
"""
34
+
pass
28
35
29
36
defon_grid_usage_jump_to_limit_percent(self):
30
37
"""
31
38
If the powermeter jumps over the max point, the limit will be increased to this percent of the powermeter value.
32
39
"""
33
40
pass
41
+
42
+
defon_grid_feed_fast_limit_decrease(self):
43
+
"""
44
+
If the powermeter falls below the min point, the limit will be immediatelly decreased.
0 commit comments