Auto set friendly name in state attributes

This commit is contained in:
Paulus Schoutsen 2015-02-28 20:10:39 -08:00
parent 80ffe74af6
commit b38146bdef
5 changed files with 17 additions and 30 deletions

View file

@ -2,7 +2,6 @@
import logging
from homeassistant.helpers import ToggleDevice
from homeassistant.const import ATTR_FRIENDLY_NAME
from homeassistant.components.switch import (
ATTR_TODAY_MWH, ATTR_CURRENT_POWER_MWH)
@ -75,12 +74,9 @@ class WemoSwitch(ToggleDevice):
cur_info = self.wemo.insight_params
return {
ATTR_FRIENDLY_NAME: self.wemo.name,
ATTR_CURRENT_POWER_MWH: cur_info['currentpower'],
ATTR_TODAY_MWH: cur_info['todaymw']
}
else:
return {ATTR_FRIENDLY_NAME: self.wemo.name}
@property
def is_on(self):