pyhOn/pyhon/appliances/dw.py

14 lines
458 B
Python
Raw Normal View History

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