foxesscloud 2.5.7__tar.gz → 2.5.8__tar.gz
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.
- {foxesscloud-2.5.7/src/foxesscloud.egg-info → foxesscloud-2.5.8}/PKG-INFO +11 -2
- {foxesscloud-2.5.7 → foxesscloud-2.5.8}/README.md +10 -1
- {foxesscloud-2.5.7 → foxesscloud-2.5.8}/pyproject.toml +1 -1
- {foxesscloud-2.5.7 → foxesscloud-2.5.8}/src/foxesscloud/foxesscloud.py +130 -113
- {foxesscloud-2.5.7 → foxesscloud-2.5.8}/src/foxesscloud/openapi.py +127 -112
- {foxesscloud-2.5.7 → foxesscloud-2.5.8/src/foxesscloud.egg-info}/PKG-INFO +11 -2
- {foxesscloud-2.5.7 → foxesscloud-2.5.8}/LICENCE +0 -0
- {foxesscloud-2.5.7 → foxesscloud-2.5.8}/setup.cfg +0 -0
- {foxesscloud-2.5.7 → foxesscloud-2.5.8}/src/foxesscloud.egg-info/SOURCES.txt +0 -0
- {foxesscloud-2.5.7 → foxesscloud-2.5.8}/src/foxesscloud.egg-info/dependency_links.txt +0 -0
- {foxesscloud-2.5.7 → foxesscloud-2.5.8}/src/foxesscloud.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: foxesscloud
|
3
|
-
Version: 2.5.
|
3
|
+
Version: 2.5.8
|
4
4
|
Summary: library for accessing Fox ESS cloud data using Open API
|
5
5
|
Author-email: Tony Matthews <tony@quasair.co.uk>
|
6
6
|
Project-URL: Homepage, https://github.com/TonyM1958/FoxESS-Cloud
|
@@ -130,7 +130,7 @@ You can change inverter settings using:
|
|
130
130
|
|
131
131
|
```
|
132
132
|
f.set_min(minSocOnGrid, minSoc)
|
133
|
-
f.set_charge(ch1, st1, en1, ch2, st2, en2)
|
133
|
+
f.set_charge(ch1, st1, en1, ch2, st2, en2, enable)
|
134
134
|
f.set_period(start, end, mode, min_soc, max_soc, fdsoc, fdpwr, price, segment)
|
135
135
|
f.charge_periods(st0, en0, st1, en1, st2, en2, min_soc, target_soc, start_soc)
|
136
136
|
f.set_schedule(periods, enable)
|
@@ -147,6 +147,7 @@ set_charge() takes the charge times from the battery_settings and applies these
|
|
147
147
|
+ ch2: enable charge from grid for period 2 (True or False)
|
148
148
|
+ st2: the start time for period 2
|
149
149
|
+ en2: the end time for period 2
|
150
|
+
+ enable: set to 0 to show settings but stop inverter settings being updated. Default is 1.
|
150
151
|
|
151
152
|
set_period() returns a period structure that can be used to build a list for set_schedule()
|
152
153
|
+ start, end, mode: required parameters. end time is exclusive e.g. end at '07:00' will set a period end time of '06:59'
|
@@ -783,6 +784,14 @@ This setting can be:
|
|
783
784
|
|
784
785
|
# Version Info
|
785
786
|
|
787
|
+
2.5.8<br>
|
788
|
+
Fix incorrect charging setup when force_charge=1.
|
789
|
+
Rework charge_periods() to consolidate charge periods to reduce number of time segments when timed_mode=2.
|
790
|
+
Add 'enable' parameter to set_charge().
|
791
|
+
Change 'force' to 'hold' in preset tariffs.
|
792
|
+
Stop plunge slots being used when timed_mode is 0 or 1.
|
793
|
+
Change default plunge_price to [3,3] and plunge_slots to 6.
|
794
|
+
|
786
795
|
2.5.7<br>
|
787
796
|
Fix problem with schedules being set for plunge periods that are more than 24 hours in the future.
|
788
797
|
Add date to plunge period display.
|
@@ -116,7 +116,7 @@ You can change inverter settings using:
|
|
116
116
|
|
117
117
|
```
|
118
118
|
f.set_min(minSocOnGrid, minSoc)
|
119
|
-
f.set_charge(ch1, st1, en1, ch2, st2, en2)
|
119
|
+
f.set_charge(ch1, st1, en1, ch2, st2, en2, enable)
|
120
120
|
f.set_period(start, end, mode, min_soc, max_soc, fdsoc, fdpwr, price, segment)
|
121
121
|
f.charge_periods(st0, en0, st1, en1, st2, en2, min_soc, target_soc, start_soc)
|
122
122
|
f.set_schedule(periods, enable)
|
@@ -133,6 +133,7 @@ set_charge() takes the charge times from the battery_settings and applies these
|
|
133
133
|
+ ch2: enable charge from grid for period 2 (True or False)
|
134
134
|
+ st2: the start time for period 2
|
135
135
|
+ en2: the end time for period 2
|
136
|
+
+ enable: set to 0 to show settings but stop inverter settings being updated. Default is 1.
|
136
137
|
|
137
138
|
set_period() returns a period structure that can be used to build a list for set_schedule()
|
138
139
|
+ start, end, mode: required parameters. end time is exclusive e.g. end at '07:00' will set a period end time of '06:59'
|
@@ -769,6 +770,14 @@ This setting can be:
|
|
769
770
|
|
770
771
|
# Version Info
|
771
772
|
|
773
|
+
2.5.8<br>
|
774
|
+
Fix incorrect charging setup when force_charge=1.
|
775
|
+
Rework charge_periods() to consolidate charge periods to reduce number of time segments when timed_mode=2.
|
776
|
+
Add 'enable' parameter to set_charge().
|
777
|
+
Change 'force' to 'hold' in preset tariffs.
|
778
|
+
Stop plunge slots being used when timed_mode is 0 or 1.
|
779
|
+
Change default plunge_price to [3,3] and plunge_slots to 6.
|
780
|
+
|
772
781
|
2.5.7<br>
|
773
782
|
Fix problem with schedules being set for plunge periods that are more than 24 hours in the future.
|
774
783
|
Add date to plunge period display.
|