Skip to content

Syncs the value in a helper entity in home assistant to a fronius inverter's soft limit field.

License

Notifications You must be signed in to change notification settings

shadow7412/fronius-driver

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Fronius driver for Home Assistant

This script provides a means to apply a value contained in a helper to the soft limit field on a fronius inverter.

Setup

  • Ensure you know the service password for your fronius inverter. You will need it.
  • In the DNO Editor, scroll down to "Dynamic power reduction", and ensure that "Limit Entire System" and "Export Limiting Control (Soft Limit)" are both selected.

Script Arguments

The script requires the following arguments:

  • -t, --home_assistant_token: The access token for Home Assistant.
  • -u, --home_assistant_url: The URL of your Home Assistant instance.
  • -f, --fronius_url: The URL of your Fronius inverter.
  • -p, --fronius_password: The password to access your Fronius inverter.

Additionally, you can specify one optional argument:

  • -e, --home_assistant_export_limit_entity: The entity in Home Assistant that controls the export limit. Defaults to input_number.export_limit if not specified.

You also have an option to specify whether to run your script in headless mode.

  • -n, --not_headless: Disable the headless mode in Firefox. Potentially useful for debugging. Probably not useful in docker.

How to run the script locally

  1. Ensure python is installed - install it if required.
  2. Create a virtual environment (technically optional, but I'd recommend it) using python -mvenv venv
  3. Enable it. . venv/bin/activate (at least on linux)
  4. Install dependencies. pip install requirements.txt
  5. Run the script with all mandatory arguments.

It might look something like this:

./main.py -t ABCDEFG -u http:https://localhost:8123 -f http:https://fronius -p "R3D@CT3D"

How to run the script in docker

Same deal really, except you get to skip nearly all the steps. Obviously ensure docker is installed though.

docker run --rm shadowbert/fronius-driver -t ABCDEFG -u http:https://localhost:8123 -f http:https://fronius -p "R3D@CT3D"

What if everything goes belly up?

If an exception is thrown during execution, a base64 representation of a screenshot will be output to the terminal. Convert it (search for base64 to image in your favourite search engine if you don't know what you're doing) and see if you gain any insight.

About

Syncs the value in a helper entity in home assistant to a fronius inverter's soft limit field.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published