mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-19 15:26:59 +00:00
IP address is no longer required for Enphase Envoy component (#6088)
* IP address is no longer required * Change keys in monitored conditions from '7_days' to 'seven_days' * Minor changes
This commit is contained in:
parent
4611a4349d
commit
377fa82b8e
@ -23,33 +23,44 @@ To enable this sensor, add the following lines to your `configuration.yaml` file
|
|||||||
# Example configuration.yaml entry
|
# Example configuration.yaml entry
|
||||||
sensor:
|
sensor:
|
||||||
- platform: enphase_envoy
|
- platform: enphase_envoy
|
||||||
ip_address: ENVOY_LOCAL_IP_ADDRESS
|
```
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# Example configuration.yaml entry
|
||||||
|
sensor:
|
||||||
|
- platform: enphase_envoy
|
||||||
|
ip_address: LOCAL_IP_FOR_ENVOY
|
||||||
|
monitored_conditions:
|
||||||
|
- production
|
||||||
|
- consumption
|
||||||
|
- lifetime_production
|
||||||
|
- lifetime_consumption
|
||||||
```
|
```
|
||||||
|
|
||||||
{% configuration %}
|
{% configuration %}
|
||||||
ip_address:
|
ip_address:
|
||||||
description: The local IP Address of your Envoy
|
description: The local IP Address of your Envoy. Leave blank to search for it, but this may not always be reliable.
|
||||||
required: true
|
required: false
|
||||||
type: string
|
type: string
|
||||||
monitored_conditions:
|
monitored_conditions:
|
||||||
description: The list of conditions to monitor
|
description: The list of conditions to monitor.
|
||||||
required: false
|
required: false
|
||||||
type: list
|
type: list
|
||||||
keys:
|
keys:
|
||||||
production:
|
production:
|
||||||
description: The power in W being produced by the solar panels
|
description: The power in W being produced by the solar panels.
|
||||||
daily_production:
|
daily_production:
|
||||||
description: The energy in Wh produced that day
|
description: The energy in Wh produced that day.
|
||||||
7_days_production:
|
seven_days_production:
|
||||||
description: The energy in Wh produced the last 7 days
|
description: The energy in Wh produced the last 7 days.
|
||||||
lifetime_production:
|
lifetime_production:
|
||||||
description: The energy in Wh produced in the lifetime of the Envoy
|
description: The energy in Wh produced in the lifetime of the Envoy.
|
||||||
consumption:
|
consumption:
|
||||||
description: The power in W being consumed in the whole house
|
description: The power in W being consumed in the whole house.
|
||||||
daily_consumption:
|
daily_consumption:
|
||||||
description: The energy in Wh consumed that day
|
description: The energy in Wh consumed that day.
|
||||||
7_days_consumption:
|
seven_days_consumption:
|
||||||
description: The energy in Wh consumed the last 7 days
|
description: The energy in Wh consumed the last 7 days.
|
||||||
lifetime_consumption:
|
lifetime_consumption:
|
||||||
description: The energy in Wh consumed in the lifetime of the Envoy
|
description: The energy in Wh consumed in the lifetime of the Envoy.
|
||||||
{% endconfiguration %}
|
{% endconfiguration %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user