# Kostal Plenticore Hybrid

Source: https://docs.evcc.io/en/meters/kostal-plenticore-hybrid

Compatible with various inverter generations (G1/G2/G3). For active battery control, the feature external battery control via Modbus must be activated using installer access.

Supported features: battery-control, curtail

## Known limitations

- Only a single system may access the inverter! Plenticore G1 requires at least firmware UI 01.16.05025 (04.11.2020, MC >=01.44).
 (https://github.com/evcc-io/evcc/wiki/Kostal-Plenticore)

## Parameters

| Name | Description | Default / example | |
| --- | --- | --- | --- |
| modbus | Modbus Type (tcpip) |  |  |
| capacity | Battery capacity | 50 kWh |  |
| minsoc | Minimum charge Lower limit as configured on the battery system. Used by optimizer. | 0 % |  |
| maxsoc | Maximum charge Upper limit as configured on the battery system. Used by optimizer and for grid charging. | 100 % |  |
| endianness | Endianness (Little/Big) (little, big) | little | advanced |
| maxchargepower | Maximum charge power For forced charging of the battery. |  W | advanced |
| maxdischargepower | Maximum discharge power Maximum discharge power of the storage. |  W | advanced |
| watchdog | Watchdog | 60s | advanced |

## Configuration example for evcc.yaml

```yaml
meters:
    - name: my_pv
      type: template
      template: kostal-plenticore-gen2
      usage: pv
      
      # Modbus TCP
      modbus: tcpip
      id: 71
      host:  # Hostname
      port: 1502 # Port
      endianness: little # Endianness (Little/Big), [little, big] (optional)
      watchdog: 60s # Watchdog, optional
```

```yaml
meters:
    - name: my_battery
      type: template
      template: kostal-plenticore-gen2
      usage: battery
      
      # Modbus TCP
      modbus: tcpip
      id: 71
      host:  # Hostname
      port: 1502 # Port
      capacity: 50 # Battery capacity (kWh), optional
      minsoc: 0 # Minimum charge (%), Lower limit as configured on the battery system. Used by optimizer. (optional)
      maxsoc: 100 # Maximum charge (%), Upper limit as configured on the battery system. Used by optimizer and for grid charging. (optional)
      endianness: little # Endianness (Little/Big), [little, big] (optional)
      maxchargepower: # Maximum charge power (W), For forced charging of the battery. (optional)
      maxdischargepower: # Maximum discharge power (W), Maximum discharge power of the storage. (optional)
      watchdog: 60s # Watchdog, optional
```
