Ferroamp EnergyHub
Modbus TCP has to be enabled for the EnergyHub by the installer or Ferroamp support. The interface is only reachable via the EnergyHub's Ethernet interface. Grid values are measured by the external current transformers (CTs) at the grid connection point.
Supported features
- Battery control: External control of home battery charging and discharging via evcc.
Usage areas
- Grid meter
- Solar production
- Battery
Parameters
| Name | Description | Value | Level |
|---|---|---|---|
id | Modbus ID | int | required |
host | IP address or hostname | required | |
port | Port | int | required |
maxchargepower [W] | Maximum charge power For forced charging of the battery. | optional | |
maxdischargepower [W] | Maximum discharge power Maximum discharge power of the storage. | optional | |
minsoc [%] | Minimum charge Lower limit when discharging the battery in normal operation | optional | |
maxsoc [%] | Maximum charge Upper limit when charging the battery from the grid | optional |
Configuration example for evcc.yaml
If you don't want to configure via the UI, you can alternatively use this YAML block.
meters: - name: my_grid type: template template: ferroamp-energyhub usage: grid
# Modbus TCP modbus: tcpip id: 1 host: # Hostname port: 502 # Portmeters: - name: my_pv type: template template: ferroamp-energyhub usage: pv
# Modbus TCP modbus: tcpip id: 1 host: # Hostname port: 502 # Portmeters: - name: my_battery type: template template: ferroamp-energyhub usage: battery
# Modbus TCP modbus: tcpip id: 1 host: # Hostname port: 502 # Port maxchargepower: # Maximum charge power (W), For forced charging of the battery. maxdischargepower: # Maximum discharge power (W), Maximum discharge power of the storage. minsoc: 25 # Minimum charge (%), Lower limit when discharging the battery in normal operation (optional) maxsoc: 95 # Maximum charge (%), Upper limit when charging the battery from the grid (optional)