Add dish washer
This commit is contained in:
parent
8da2018302
commit
5b91747ec1
9
pyhon/appliances/dw.py
Normal file
9
pyhon/appliances/dw.py
Normal file
@ -0,0 +1,9 @@
|
||||
class Appliance:
|
||||
def data(self, data):
|
||||
if data["attributes"]["lastConnEvent"]["category"] == "DISCONNECTED":
|
||||
data["attributes"]["parameters"]["machMode"] = "0"
|
||||
data["active"] = bool(data.get("attributes", {}).get("activity"))
|
||||
return data
|
||||
|
||||
def settings(self, settings):
|
||||
return settings
|
Loading…
Reference in New Issue
Block a user