pyhOn/pyhon/appliances/wd.py

17 lines
580 B
Python
Raw Normal View History

2023-06-28 13:02:11 -04:00
from typing import Dict, Any
2023-05-29 12:58:50 -04:00
from pyhon.appliances.base import ApplianceBase
2023-04-23 15:42:44 -04:00
2023-05-29 12:58:50 -04:00
class Appliance(ApplianceBase):
2023-06-28 13:02:11 -04:00
def attributes(self, data: Dict[str, Any]) -> Dict[str, Any]:
2023-06-08 13:50:56 -04:00
data = super().attributes(data)
2023-06-21 12:02:07 -04:00
if data.get("lastConnEvent", {}).get("category", "") == "DISCONNECTED":
2023-06-12 18:12:29 -04:00
data["parameters"]["machMode"].value = "0"
2023-06-08 13:50:56 -04:00
data["active"] = bool(data.get("activity"))
data["pause"] = data["parameters"]["machMode"] == "3"
2023-04-07 22:06:36 -04:00
return data
2023-03-18 13:02:20 -04:00
2023-06-28 13:02:11 -04:00
def settings(self, settings: Dict[str, Any]) -> Dict[str, Any]:
2023-04-07 22:06:36 -04:00
return settings