Skip to content

Commit

Permalink
Merge branch 'main' into patch
Browse files Browse the repository at this point in the history
  • Loading branch information
fboundy authored Jun 24, 2024
2 parents dd04f69 + 0e88b22 commit c15c2de
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# PV Opt: Home Assistant Solar/Battery Optimiser v3.15.3


Solar / Battery Charging Optimisation for Home Assistant. This appDaemon application attempts to optimise charging and discharging of a home solar/battery system to minimise cost electricity cost on a daily basis using freely available solar forecast data from SolCast. This is particularly beneficial for Octopus Agile but is also benefeficial for other time-of-use tariffs such as Octopus Flux or simple Economy 7.

The application will integrate fully with Solis inverters which are controlled using any of:
Expand Down Expand Up @@ -183,12 +184,13 @@ AppDaemon is a loosely coupled, multi-threaded, sandboxed python execution envir

5. Click on <b>Configuration</b> at the top

6. Click the 3 dots and <b>Edit in YAML</b> to add `pandas` as a Python package:
6. Click the 3 dots and <b>Edit in YAML</b> to add `pandas` and `numpy` as Python packages. Note that `numpy` has to be set to version `1.26.4` due to an unresolved compatability issue between Home Assistant and `2.0.0`:

```
init_commands: []
python_packages:
- pandas
- numpy==1.26.4
system_packages: []
```
Expand Down
1 change: 1 addition & 0 deletions apps/pv_opt/pv_opt.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

VERSION = "3.15.3"


OCTOPUS_PRODUCT_URL = r"https://api.octopus.energy/v1/products/"

DEBUG = False
Expand Down

0 comments on commit c15c2de

Please sign in to comment.