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
sensors:
current_consumption: [total_consumption]
current_power:
pv_power:
total_yield:
```
@ -59,29 +59,47 @@ group:
type: string
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.
required: true
required: false
default: All sensors
type: map
keys:
current_power:
description: Current power (W).
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).
pv_power:
description: Current power generated by the inverter (W).
pv_gen_meter:
description: Total kWh generated to date (kWh)
total_yield:
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:
description: Total power consumption (kWh).
grid_voltage:
description: The grid voltage (V)
pv_power:
description: PV Power (W)
daily_yield:
description: daily_yield (Wh)
power_supplied:
grid_power_supplied:
description: Power supplied (W)
power_absorbed:
grid_power_absorbed:
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:
description: Status of the solar plant.
description: Status of the solar plant.
your-custom-sensor:
description: Any sensor name defined in the `custom:` section
custom:
@ -123,4 +141,4 @@ Example:
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.