diff --git a/.test/solis_cloud_test.py b/.test/solis_cloud_test.py index 2146a40..bd8be68 100644 --- a/.test/solis_cloud_test.py +++ b/.test/solis_cloud_test.py @@ -225,3 +225,9 @@ def set_timer(self, direction, start, end, power): # %% sc.set_timer("charge", pd.Timestamp("00:50"), pd.Timestamp("01:00"), 3000) # %% +sc.set_mode_switch(35) +# %% +r=sc.set_code(696, 3600) +# %% + +# %% diff --git a/LICENSE b/LICENSE index 88f494d..048b6a9 100644 --- a/LICENSE +++ b/LICENSE @@ -1,3 +1,11 @@ +This contains code from the following projects: + +[solis_control](https://github.com/stevegal/solis_control) + +It has been modified by fboundy. The original licenses for all above projects can be found in the +[licenses folder](https://github.com/fboundy/pv_opt/licenses). + + MIT License Copyright (c) 2023 fboundy @@ -19,3 +27,4 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + diff --git a/README.md b/README.md index 5ef8daa..e67e39c 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# PV Opt: Home Assistant Solar/Battery Optimiser v3.18.1 +# PV Opt: Home Assistant Solar/Battery Optimiser v3.18.2

This documentation needs updating!

diff --git a/apps/pv_opt/pv_opt.py b/apps/pv_opt/pv_opt.py index 57daece..387ce08 100644 --- a/apps/pv_opt/pv_opt.py +++ b/apps/pv_opt/pv_opt.py @@ -12,7 +12,7 @@ from numpy import nan import re -VERSION = "3.18.1" +VERSION = "3.18.2" OCTOPUS_PRODUCT_URL = r"https://api.octopus.energy/v1/products/" @@ -465,9 +465,10 @@ def initialize(self): self.log(f"******************* PV Opt v{VERSION} *******************") self.log("") self.io = False + self.agile = False self.debug = DEBUG self.redact_regex = REDACT_REGEX - + self.contract_last_loaded = pd.Timestamp("1970-01-01", tz="UTC") try: subver = int(VERSION.split(".")[2]) except: diff --git a/licenses/pvopt license.md b/licenses/pvopt license.md new file mode 100644 index 0000000..6bfe09f --- /dev/null +++ b/licenses/pvopt license.md @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 fboundy + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/licenses/soliscontrol license.md b/licenses/soliscontrol license.md new file mode 100644 index 0000000..aa31383 --- /dev/null +++ b/licenses/soliscontrol license.md @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 stevegal + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file