foxesscloud 2.5.6__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: foxesscloud
3
- Version: 2.5.6
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,18 @@ 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
+
795
+ 2.5.7<br>
796
+ Fix problem with schedules being set for plunge periods that are more than 24 hours in the future.
797
+ Add date to plunge period display.
798
+
786
799
  2.5.6<br>
787
800
  Change plunge slots to 8 and plungs pricing to [3,10].
788
801
  Change min_hours setting in charge_needed to 0.5 (30 minutes) and round up charge times to increments of this.
@@ -1,17 +1,3 @@
1
- Metadata-Version: 2.1
2
- Name: foxesscloud
3
- Version: 2.5.6
4
- Summary: library for accessing Fox ESS cloud data using Open API
5
- Author-email: Tony Matthews <tony@quasair.co.uk>
6
- Project-URL: Homepage, https://github.com/TonyM1958/FoxESS-Cloud
7
- Project-URL: Bug Tracker, https://github.com/TonyM1958/FoxESS-Cloud/issues
8
- Classifier: Programming Language :: Python :: 3
9
- Classifier: License :: OSI Approved :: MIT License
10
- Classifier: Operating System :: OS Independent
11
- Requires-Python: >=3.7
12
- Description-Content-Type: text/markdown
13
- License-File: LICENCE
14
-
15
1
  # FoxESS-Cloud
16
2
 
17
3
  <a href="https://www.buymeacoffee.com/tonym1958" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/default-orange.png" alt="Buy Me A Coffee" height="41" width="174" align="right"></a>
@@ -130,7 +116,7 @@ You can change inverter settings using:
130
116
 
131
117
  ```
132
118
  f.set_min(minSocOnGrid, minSoc)
133
- f.set_charge(ch1, st1, en1, ch2, st2, en2)
119
+ f.set_charge(ch1, st1, en1, ch2, st2, en2, enable)
134
120
  f.set_period(start, end, mode, min_soc, max_soc, fdsoc, fdpwr, price, segment)
135
121
  f.charge_periods(st0, en0, st1, en1, st2, en2, min_soc, target_soc, start_soc)
136
122
  f.set_schedule(periods, enable)
@@ -147,6 +133,7 @@ set_charge() takes the charge times from the battery_settings and applies these
147
133
  + ch2: enable charge from grid for period 2 (True or False)
148
134
  + st2: the start time for period 2
149
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.
150
137
 
151
138
  set_period() returns a period structure that can be used to build a list for set_schedule()
152
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'
@@ -783,6 +770,18 @@ This setting can be:
783
770
 
784
771
  # Version Info
785
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
+
781
+ 2.5.7<br>
782
+ Fix problem with schedules being set for plunge periods that are more than 24 hours in the future.
783
+ Add date to plunge period display.
784
+
786
785
  2.5.6<br>
787
786
  Change plunge slots to 8 and plungs pricing to [3,10].
788
787
  Change min_hours setting in charge_needed to 0.5 (30 minutes) and round up charge times to increments of this.
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "foxesscloud"
7
- version = "2.5.6"
7
+ version = "2.5.8"
8
8
  authors = [
9
9
  {name="Tony Matthews", email="tony@quasair.co.uk"},
10
10
  ]