mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-22 16:56:50 +00:00
Clean up non working example from Edimax integration docs (#38557)
This commit is contained in:
parent
ed0bfaeb05
commit
b616aa6128
@ -15,7 +15,7 @@ related:
|
||||
ha_quality_scale: legacy
|
||||
---
|
||||
|
||||
This `edimax` switch {% term integration %} allows you to control the state of your [Edimax](https://www.edimax.com/edimax/merchandise/merchandise_list/data/edimax/global/home_automation_smart_plug/) switches.
|
||||
This Edimax {% term integration %} allows you to control the state of your [Edimax](https://www.edimax.com/edimax/merchandise/merchandise_list/data/edimax/global/home_automation_smart_plug/) switches.
|
||||
|
||||
To use your Edimax switch in your installation, add the following to your {% term "`configuration.yaml`" %} file.
|
||||
{% include integrations/restart_ha_after_config_inclusion.md %}
|
||||
@ -48,25 +48,3 @@ name:
|
||||
default: Edimax Smart Plug
|
||||
type: string
|
||||
{% endconfiguration %}
|
||||
|
||||
## Power consumption sensor
|
||||
|
||||
Starting with [version 2 of the firmware](https://www.edimax.com/edimax/download/download/data/edimax/global/download/), the Edimax switches can also report the current and accumulated daily power consumption in their state objects. Use a [template sensor](/integrations/template) to extract their values:
|
||||
|
||||
{% raw %}
|
||||
|
||||
```yaml
|
||||
template:
|
||||
- sensor:
|
||||
- name: Edimax Current power consumption
|
||||
unit_of_measurement: "W"
|
||||
state: "{{ state_attr('switch.edimax_smart_plug', 'current_power_w') | default(0, true) }}"
|
||||
|
||||
- name: Edimax Accumulated daily power consumption
|
||||
unit_of_measurement: "kWh"
|
||||
state: "{{ state_attr('switch.edimax_smart_plug', 'today_energy_kwh') | default(0, true) }}"
|
||||
```
|
||||
|
||||
{% endraw %}
|
||||
|
||||
Note that if the smart plug is off, these states report the string `None`. By using a `replace()` in the template, these sensors report purely numerical values.
|
||||
|
Loading…
x
Reference in New Issue
Block a user