Fixed issue with edimax SP-1101 switches (#2105)

* Fixed issue with edimax SP-1101 switches

* Added missing ValueError exception
This commit is contained in:
s1gnalrunner 2016-05-26 14:53:10 +02:00 committed by Paulus Schoutsen
parent 71452c11c1
commit 70d6ce5b79

View file

@ -61,6 +61,8 @@ class SmartPlugSwitch(SwitchDevice):
return float(self.smartplug.now_power) / 1000000.0
except ValueError:
return None
except TypeError:
return None
@property
def today_power_mw(self):
@ -69,6 +71,8 @@ class SmartPlugSwitch(SwitchDevice):
return float(self.smartplug.now_energy_day) / 1000.0
except ValueError:
return None
except TypeError:
return None
@property
def is_on(self):