Fixed issue with edimax SP-1101 switches (#2105)
* Fixed issue with edimax SP-1101 switches * Added missing ValueError exception
This commit is contained in:
parent
71452c11c1
commit
70d6ce5b79
1 changed files with 4 additions and 0 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Reference in a new issue