2023-03-05 18:46:51 +01:00
|
|
|
class Appliance:
|
2023-04-23 21:42:44 +02:00
|
|
|
def __init__(self, appliance):
|
|
|
|
self.parent = appliance
|
|
|
|
|
2023-04-08 04:06:36 +02:00
|
|
|
def data(self, data):
|
|
|
|
if data["attributes"]["lastConnEvent"]["category"] == "DISCONNECTED":
|
|
|
|
data["attributes"]["parameters"]["machMode"] = "0"
|
|
|
|
data["active"] = bool(data.get("attributes", {}).get("activity"))
|
|
|
|
data["pause"] = data["attributes"]["parameters"]["machMode"] == "3"
|
|
|
|
return data
|
2023-03-05 18:46:51 +01:00
|
|
|
|
2023-04-08 04:06:36 +02:00
|
|
|
def settings(self, settings):
|
|
|
|
return settings
|