mirror of
https://github.com/Andre0512/pyhOn.git
synced 2025-05-16 08:04:25 -04:00
10 lines
361 B
Python
10 lines
361 B
Python
from pyhon.appliances.base import ApplianceBase
|
|
|
|
|
|
class Appliance(ApplianceBase):
|
|
def attributes(self, data):
|
|
data = super().attributes(data)
|
|
if data.get("lastConnEvent", {}).get("category", "") == "DISCONNECTED":
|
|
data["parameters"]["machMode"].value = "0"
|
|
data["active"] = bool(data.get("activity"))
|
|
return data
|