Merge pull request #7 from alexandre-leites/main

Added WD params
This commit is contained in:
Andre Basche 2023-03-18 23:39:15 +01:00 committed by GitHub
commit d707342f8f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

10
pyhon/appliances/wd.py Normal file
View 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