pyh0n/pyhon/appliances/ov.py

18 lines
614 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-04-08 07:36:36 +05:30
return data
def settings(self, settings):
2023-04-19 23:42:52 +05:30
return settings