foxesscloud 2.6.6__tar.gz → 2.6.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.6.6/src/foxesscloud.egg-info → foxesscloud-2.6.8}/PKG-INFO +2 -2
- {foxesscloud-2.6.6 → foxesscloud-2.6.8}/README.md +1 -1
- {foxesscloud-2.6.6 → foxesscloud-2.6.8}/pyproject.toml +1 -1
- {foxesscloud-2.6.6 → foxesscloud-2.6.8}/src/foxesscloud/foxesscloud.py +4 -4
- {foxesscloud-2.6.6 → foxesscloud-2.6.8}/src/foxesscloud/openapi.py +2 -2
- {foxesscloud-2.6.6 → foxesscloud-2.6.8/src/foxesscloud.egg-info}/PKG-INFO +2 -2
- {foxesscloud-2.6.6 → foxesscloud-2.6.8}/LICENCE +0 -0
- {foxesscloud-2.6.6 → foxesscloud-2.6.8}/setup.cfg +0 -0
- {foxesscloud-2.6.6 → foxesscloud-2.6.8}/src/foxesscloud.egg-info/SOURCES.txt +0 -0
- {foxesscloud-2.6.6 → foxesscloud-2.6.8}/src/foxesscloud.egg-info/dependency_links.txt +0 -0
- {foxesscloud-2.6.6 → foxesscloud-2.6.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.6.
|
3
|
+
Version: 2.6.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
|
@@ -797,7 +797,7 @@ This setting can be:
|
|
797
797
|
|
798
798
|
# Version Info
|
799
799
|
|
800
|
-
2.6.
|
800
|
+
2.6.8<br>
|
801
801
|
Add residual_handling=3 for Mira BMS with firmware 1.014 or later that returns residual capacity per battery.
|
802
802
|
Calculate 'ratedCapacity' in get_battery() and 'soh' for HV2600 and Mira.
|
803
803
|
Allow unlimited periods in strategy, including overlap with charge periods but warn and limit if the periods sent to inverter would be more than 8.
|
@@ -783,7 +783,7 @@ This setting can be:
|
|
783
783
|
|
784
784
|
# Version Info
|
785
785
|
|
786
|
-
2.6.
|
786
|
+
2.6.8<br>
|
787
787
|
Add residual_handling=3 for Mira BMS with firmware 1.014 or later that returns residual capacity per battery.
|
788
788
|
Calculate 'ratedCapacity' in get_battery() and 'soh' for HV2600 and Mira.
|
789
789
|
Allow unlimited periods in strategy, including overlap with charge periods but warn and limit if the periods sent to inverter would be more than 8.
|
@@ -1,7 +1,7 @@
|
|
1
1
|
##################################################################################################
|
2
2
|
"""
|
3
3
|
Module: Fox ESS Cloud
|
4
|
-
Updated:
|
4
|
+
Updated: 03 November 2024
|
5
5
|
By: Tony Matthews
|
6
6
|
"""
|
7
7
|
##################################################################################################
|
@@ -10,7 +10,7 @@ By: Tony Matthews
|
|
10
10
|
# ALL RIGHTS ARE RESERVED © Tony Matthews 2023
|
11
11
|
##################################################################################################
|
12
12
|
|
13
|
-
version = "1.7.
|
13
|
+
version = "1.7.9"
|
14
14
|
print(f"FoxESS-Cloud version {version}")
|
15
15
|
|
16
16
|
debug_setting = 1
|
@@ -715,9 +715,9 @@ def get_batteries(info=1):
|
|
715
715
|
if b.get('info') is not None:
|
716
716
|
if b['info'].get('slaveBatteries') is not None:
|
717
717
|
b['count'] = len(b['info']['slaveBatteries'])
|
718
|
-
if b['info']['
|
718
|
+
if b['info']['masterSN'][:7] == '60BBHV2' and b['info']['masterVersion'] >= '1.014':
|
719
719
|
b['residual_handling'] = 2
|
720
|
-
elif
|
720
|
+
elif b['info']['masterSN'][:7] == '60MBB01' and b['info']['masterVersion'] >= '1.014':
|
721
721
|
residual_handling = 3
|
722
722
|
rated_capacity = b.get('ratedCapacity')
|
723
723
|
b['ratedCapacity'] = rated_capacity if rated_capacity is not None and rated_capacity > 100 else None
|
@@ -1,7 +1,7 @@
|
|
1
1
|
##################################################################################################
|
2
2
|
"""
|
3
3
|
Module: Fox ESS Cloud using Open API
|
4
|
-
Updated:
|
4
|
+
Updated: 03 November 2024
|
5
5
|
By: Tony Matthews
|
6
6
|
"""
|
7
7
|
##################################################################################################
|
@@ -10,7 +10,7 @@ By: Tony Matthews
|
|
10
10
|
# ALL RIGHTS ARE RESERVED © Tony Matthews 2024
|
11
11
|
##################################################################################################
|
12
12
|
|
13
|
-
version = "2.6.
|
13
|
+
version = "2.6.8"
|
14
14
|
print(f"FoxESS-Cloud Open API version {version}")
|
15
15
|
|
16
16
|
debug_setting = 1
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: foxesscloud
|
3
|
-
Version: 2.6.
|
3
|
+
Version: 2.6.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
|
@@ -797,7 +797,7 @@ This setting can be:
|
|
797
797
|
|
798
798
|
# Version Info
|
799
799
|
|
800
|
-
2.6.
|
800
|
+
2.6.8<br>
|
801
801
|
Add residual_handling=3 for Mira BMS with firmware 1.014 or later that returns residual capacity per battery.
|
802
802
|
Calculate 'ratedCapacity' in get_battery() and 'soh' for HV2600 and Mira.
|
803
803
|
Allow unlimited periods in strategy, including overlap with charge periods but warn and limit if the periods sent to inverter would be more than 8.
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|