SENEC .Home P4
Cloud connection via the SENEC.Connect API. A subscription key from the SENEC developer portal is required. Access is read-only, battery control is not possible.
Usage areas
- Grid meter
- Solar production
- Battery
Parameters
| Name | Description | Value | Level |
|---|---|---|---|
token | Subscription key Subscription key from the SENEC developer portal (sent as header | optional | |
minsoc [%] | Minimum charge Lower limit as configured on the battery system. Used by optimizer. | optional | |
maxsoc [%] | Maximum charge Upper limit as configured on the battery system. Used by optimizer and for grid charging. | optional | |
maxacpower [W] | Maximum AC power of the hybrid inverter | advanced |
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: senec-connect usage: grid token: # Subscription key, Subscription key from the SENEC developer portal (sent as header `Ocp-Apim-Subscription-Key`).meters: - name: my_pv type: template template: senec-connect usage: pv token: # Subscription key, Subscription key from the SENEC developer portal (sent as header `Ocp-Apim-Subscription-Key`). maxacpower: 0 # Maximum AC power of the hybrid inverter (W), optionalmeters: - name: my_battery type: template template: senec-connect usage: battery token: # Subscription key, Subscription key from the SENEC developer portal (sent as header `Ocp-Apim-Subscription-Key`). minsoc: 25 # Minimum charge (%), Lower limit as configured on the battery system. Used by optimizer. (optional) maxsoc: 95 # Maximum charge (%), Upper limit as configured on the battery system. Used by optimizer and for grid charging. (optional)