Configuration addon - s-allius/tsun-gen3-proxy GitHub Wiki

Home Assistant Add-on Configuration

Each add-on in Home Assistant has a Configuration page to configure it. This configuration is devided into two blocks Options and Network.

In the Network block, you can change the TCP ports on which the Proxy waits for incoming device connections.

The Options block is used to configure the proxy. You can switch between a UI version and a YAML configuration (-> three dots in the top right-hand corner). The configuration for inverters or battery devices is also displayed as a YAML text field in the UI version.

The syntax of the entries is checked and converted into a config.json file, which is then read when the proxy is started. Incorrect configurations cannot be saved.

More details on configuring the add-on can be found here: Configuration procedure for the Home Assistant Add-on variant and in the Config Reference

Note: Remember to restart the add-on when the configuration is changed.

Example add-on configuration for GEN3PLUS inverters

inverters:
  - serial: Y17000000000000
    monitor_sn: 2000000000
    node_id: inv_1
    suggested_area: Roof
    modbus_polling: true
    client_mode.host: 192.168.x.x
    client_mode.port: 8899
    client_mode.forward: true
    pv1.manufacturer: Shinefar
    pv1.type: SF-M18/144550
    pv2.manufacturer: Shinefar
    pv2.type: SF-M18/144550
    pv3.manufacturer: Shinefar
    pv3.type: SF-M18/144550
    pv4.manufacturer: Shinefar
    pv4.type: SF-M18/144550

Note: This is just an example, you need to replace the values with your own!

Example add-on configuration for GEN3PLUS energie storages

batteries:
  - serial: 4100000000000000
    monitor_sn: 2300000000
    node_id: bat_1
    suggested_area: Garage
    modbus_polling: false
    pv1.manufacturer: Shinefar
    pv1.type: SF-M18/144550
    pv2.manufacturer: Shinefar
    pv2.type: SF-M18/144550

Note: This is just an example, you need to replace the values with your own!