pyhOn/pyhon/appliances/ov.py

18 lines
614 B
Python
Raw Normal View History

2023-04-08 04:06:36 +02: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"]["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 04:06:36 +02:00
return data
def settings(self, settings):
2023-04-19 20:12:52 +02:00
return settings