mirror of
https://github.com/Andre0512/pyhOn.git
synced 2024-01-19 02:50:44 +00:00
Added WD params
This commit is contained in:
parent
409aa11fcb
commit
e12edda588
10
pyhon/appliances/wd.py
Normal file
10
pyhon/appliances/wd.py
Normal file
|
@ -0,0 +1,10 @@
|
|||
class Appliance:
|
||||
def __init__(self, data):
|
||||
self._data = data
|
||||
|
||||
def get(self):
|
||||
if self._data["attributes"]["lastConnEvent"]["category"] == "DISCONNECTED":
|
||||
self._data["attributes"]["parameters"]["machMode"] = "0"
|
||||
self._data["active"] = bool(self._data.get("activity"))
|
||||
self._data["pause"] = self._data["attributes"]["parameters"]["machMode"] == "3"
|
||||
return self._data
|
Loading…
Reference in a new issue