# vzlogger

Source: https://docs.evcc.io/en/meters/vzlogger

## Parameters

| Name | Description | Default / example | |
| --- | --- | --- | --- |
| host | IP address or hostname | 192.0.2.2 |  |
| uuid | The vzlogger channel uuid for power |  |  |
| port | Port | 8081 |  |
| scale | Scale factor power Multiply power raw value by this factor | 1 | advanced |
| energyuuid | Meter reading The vzlogger channel uuid for the meter reading (OBIS Code 1.8.0, electricity consumption) |  | advanced |
| returnenergyuuid | Return meter reading The vzlogger channel uuid for the return meter reading (OBIS Code 2.8.0) |  | advanced |
| energyscale | Scale factor energy Multiply energy raw value by this factor | 0.001 | advanced |
| l1currentuuid | Current on phase 1 The vzlogger channel uuid for current on phase 1 (OBIS Code 31.7.0) |  | advanced |
| l2currentuuid | Current on phase 2 The vzlogger channel uuid for current on phase 2 (OBIS Code 51.7.0) |  | advanced |
| l3currentuuid | Current on phase 3 The vzlogger channel uuid for current on phase 3 (OBIS Code 71.7.0) |  | advanced |
| l1poweruuid | Power on phase 1 The vzlogger channel uuid for power on phase 1 (OBIS Code 36.7.0) |  | advanced |
| l2poweruuid | Power on phase 2 The vzlogger channel uuid for power on phase 2 (OBIS Code 56.7.0) |  | advanced |
| l3poweruuid | Power on phase 3 The vzlogger channel uuid for power on phase 3 (OBIS Code 76.7.0) |  | advanced |
| l1voltageuuid | Voltage on phase 1 The vzlogger channel uuid for voltage on phase 1 (OBIS Code 32.7.0) |  | advanced |
| l2voltageuuid | Voltage on phase 2 The vzlogger channel uuid for voltage on phase 2 (OBIS Code 52.7.0) |  | advanced |
| l3voltageuuid | Voltage on phase 3 The vzlogger channel uuid for voltage on phase 3 (OBIS Code 72.7.0) |  | advanced |
| cache | Cache Time interval for data refresh | 1s | advanced |

## Configuration example for evcc.yaml

```yaml
meters:
    - name: my_grid
      type: template
      template: vzlogger
      usage: grid
      host: 192.0.2.2 # IP address or hostname
      uuid: # The vzlogger channel uuid for power
      port: 8081 # Port, optional
      scale: 1 # Scale factor power, Multiply power raw value by this factor (optional)
      energyuuid: # Meter reading, The vzlogger channel uuid for the meter reading (OBIS Code 1.8.0, electricity consumption) (optional)
      returnenergyuuid: # Return meter reading, The vzlogger channel uuid for the return meter reading (OBIS Code 2.8.0) (optional)
      energyscale: 0.001 # Scale factor energy, Multiply energy raw value by this factor (optional)
      l1currentuuid: # Current on phase 1, The vzlogger channel uuid for current on phase 1 (OBIS Code 31.7.0) (optional)
      l2currentuuid: # Current on phase 2, The vzlogger channel uuid for current on phase 2 (OBIS Code 51.7.0) (optional)
      l3currentuuid: # Current on phase 3, The vzlogger channel uuid for current on phase 3 (OBIS Code 71.7.0) (optional)
      l1poweruuid: # Power on phase 1, The vzlogger channel uuid for power on phase 1 (OBIS Code 36.7.0) (optional)
      l2poweruuid: # Power on phase 2, The vzlogger channel uuid for power on phase 2 (OBIS Code 56.7.0) (optional)
      l3poweruuid: # Power on phase 3, The vzlogger channel uuid for power on phase 3 (OBIS Code 76.7.0) (optional)
      l1voltageuuid: # Voltage on phase 1, The vzlogger channel uuid for voltage on phase 1 (OBIS Code 32.7.0) (optional)
      l2voltageuuid: # Voltage on phase 2, The vzlogger channel uuid for voltage on phase 2 (OBIS Code 52.7.0) (optional)
      l3voltageuuid: # Voltage on phase 3, The vzlogger channel uuid for voltage on phase 3 (OBIS Code 72.7.0) (optional)
      cache: 1s # Cache, Time interval for data refresh (optional)
```
