pyh0n/pyhon/appliances/ov.py

22 lines
808 B
Python
Raw Normal View History

2023-04-08 07:36:36 +05:30
class Appliance:
2023-04-24 01:12:44 +05:30
def __init__(self, appliance):
self.parent = appliance
2023-04-08 07:36:36 +05:30
def data(self, data):
if data["attributes"]["lastConnEvent"]["category"] == "DISCONNECTED":
data["attributes"]["parameters"]["temp"] = "0"
data["attributes"]["parameters"]["onOffStatus"] = "0"
data["attributes"]["parameters"]["remoteCtrValid"] = "0"
data["attributes"]["parameters"]["remainingTimeMM"] = "0"
data["active"] = data["attributes"]["parameters"]["onOffStatus"] == "1"
2023-05-28 21:04:32 +05:30
if program := int(data["attributes"]["parameters"]["prCode"]):
ids = self.parent.settings["startProgram.program"].ids
data["programName"] = ids.get(program, "")
2023-04-08 07:36:36 +05:30
return data
def settings(self, settings):
2023-04-19 23:42:52 +05:30
return settings