2023-03-05 18:46:51 +01:00
|
|
|
class Appliance:
|
|
|
|
def __init__(self, data):
|
|
|
|
self._data = data
|
|
|
|
|
|
|
|
def get(self):
|
2023-03-08 00:58:25 +01:00
|
|
|
if self._data["attributes"]["lastConnEvent"]["category"] == "DISCONNECTED":
|
|
|
|
self._data["attributes"]["parameters"]["machMode"] = "0"
|
2023-03-05 18:46:51 +01:00
|
|
|
return self._data
|