pyhOn/pyhon/appliances/dw.py

14 lines
458 B
Python
Raw Normal View History

2023-07-16 03:53:23 +00:00
# pylint: disable=duplicate-code
2023-06-28 17:02:11 +00:00
from typing import Any, Dict
2023-05-29 16:58:50 +00:00
from pyhon.appliances.base import ApplianceBase
2023-04-23 19:42:44 +00:00
2023-05-29 16:58:50 +00:00
class Appliance(ApplianceBase):
2023-06-28 17:02:11 +00:00
def attributes(self, data: Dict[str, Any]) -> Dict[str, Any]:
2023-06-08 17:50:56 +00:00
data = super().attributes(data)
2023-06-21 16:02:07 +00:00
if data.get("lastConnEvent", {}).get("category", "") == "DISCONNECTED":
2023-06-12 22:12:29 +00:00
data["parameters"]["machMode"].value = "0"
2023-06-08 17:50:56 +00:00
data["active"] = bool(data.get("activity"))
2023-04-16 00:46:30 +00:00
return data