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
|