pyhOn/pyhon/appliances/wm.py

10 lines
336 B
Python
Raw Normal View History

2023-03-05 18:46:51 +01:00
class Appliance:
def __init__(self, data):
self._data = data
def get(self):
2023-03-08 00:58:25 +01:00
if self._data["attributes"]["lastConnEvent"]["category"] == "DISCONNECTED":
self._data["attributes"]["parameters"]["machMode"] = "0"
2023-03-08 21:53:53 +01:00
self._data["active"] = bool(self._data.get("activity"))
2023-03-05 18:46:51 +01:00
return self._data