Create td.py

Need to work with Tumble Dryers. Tested and work with Tumble Dryer haier HD80-A3959.
This commit is contained in:
drudgebg 2023-03-21 08:39:20 +02:00 committed by GitHub
parent f8dde06510
commit 5e32dd76c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

10
pyhon/appliances/td.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