# Zendure Hyper 2000

Source: https://docs.evcc.io/en/meters/zendure-hyper-2000

## Parameters

| Name | Description | Default / example | |
| --- | --- | --- | --- |
| account | Account ID | dev@zendure.com |  |
| serial | Serial You can find this in the Zendure App in the settings of the device | VU5D99F74021B04 |  |
| region | Region (EU, Global) | EU |  |
| 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 % |  |
| timeout | Timeout | 10s |  |
| capacity | Battery capacity | 2 kWh | advanced |
| maxchargepower | Maximum charge power For forced charging of the battery. | 1200 W | advanced |
| maxdischargepower | Maximum discharge power Maximum discharge power of the storage. | 800 W | advanced |

## Configuration example for evcc.yaml

```yaml
meters:
    - name: my_pv
      type: template
      template: zendure-hyper
      usage: pv
      account: dev@zendure.com # Account ID
      serial: VU5D99F74021B04 # Serial, You can find this in the Zendure App in the settings of the device
      region: EU # Region, [EU, Global]
      timeout: 10s # Timeout, optional
```

```yaml
meters:
    - name: my_battery
      type: template
      template: zendure-hyper
      usage: battery
      account: dev@zendure.com # Account ID
      serial: VU5D99F74021B04 # Serial, You can find this in the Zendure App in the settings of the device
      region: EU # Region, [EU, Global]
      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)
      timeout: 10s # Timeout, optional
      capacity: 2 # Battery capacity (kWh), optional
      maxchargepower: 1200 # Maximum charge power (W), For forced charging of the battery. (optional)
      maxdischargepower: 800 # Maximum discharge power (W), Maximum discharge power of the storage. (optional)
```
