Update sensor.sma.markdown (#8050)

This commit is contained in:
Johann Kellerman 2019-01-15 00:19:05 +02:00 committed by Franck Nijhof
parent 3a202ac371
commit a3f2e701c0

View File

@ -29,7 +29,7 @@ sensor:
password: YOUR_SMA_PASSWORD password: YOUR_SMA_PASSWORD
sensors: sensors:
current_consumption: [total_consumption] current_consumption: [total_consumption]
current_power: pv_power:
total_yield: total_yield:
``` ```
@ -59,29 +59,47 @@ group:
type: string type: string
sensors: sensors:
description: A dictionary of sensors that will be added. The value of the dictionary can include a list of sensor names that will be used as attributes. description: A dictionary of sensors that will be added. The value of the dictionary can include a list of sensor names that will be used as attributes.
required: true required: false
default: All sensors
type: map type: map
keys: keys:
current_power: pv_power:
description: Current power (W). description: Current power generated by the inverter (W).
current_consumption: pv_gen_meter:
description: Power that you are currently drawing, depending on your installation it can be a combination of the inverter and the grid (W). description: Total kWh generated to date (kWh)
total_yield: total_yield:
description: Total power yield from solar installation (kWh). description: Total power yield from solar installation (kWh).
daily_yield:
description: The yield for today (Wh)
current_consumption:
description: Power that you are currently drawing, depending on your installation it can be a combination of the inverter and the grid (W).
total_consumption: total_consumption:
description: Total power consumption (kWh). description: Total power consumption (kWh).
grid_voltage:
description: The grid voltage (V) grid_power_supplied:
pv_power:
description: PV Power (W)
daily_yield:
description: daily_yield (Wh)
power_supplied:
description: Power supplied (W) description: Power supplied (W)
power_absorbed: grid_power_absorbed:
description: Power absorbed (W) description: Power absorbed (W)
grid_total_yield:
description: Total power fom the grid (kWh)
grid_total_absorbed:
description: Total power supplied to the grid
grid_power:
description: Power supplied by the grid (W)
frequency:
description: Grid frequency (W)
voltage_l1:
description: Voltage for phase 1 (V)
voltage_l2:
description: Voltage for phase 2 (V)
voltage_l2:
description: Voltage for phase 3 (V)
status: status:
description: Status of the solar plant. description: Status of the solar plant.
your-custom-sensor: your-custom-sensor:
description: Any sensor name defined in the `custom:` section description: Any sensor name defined in the `custom:` section
custom: custom:
@ -123,4 +141,4 @@ Example:
factor: 1000 factor: 1000
``` ```
Over time more sensors will be added as standard sensors to the [pysma library](https://github.com/kellerza/pysma/blob/master/pysma/__init__.py#L59). Feel free to submit additional sensors on that repository. Over time more sensors will be added as standard sensors to the [pysma library](https://github.com/kellerza/pysma/blob/master/pysma/__init__.py#L100). Feel free to submit additional sensors on that repository.