88 lines
2.6 KiB
Python
88 lines
2.6 KiB
Python
import logging
|
|
from .message import (
|
|
MessageQuery,
|
|
MessageB4Response
|
|
)
|
|
try:
|
|
from enum import StrEnum
|
|
except ImportError:
|
|
from ...backports.enum import StrEnum
|
|
from ...core.device import MiedaDevice
|
|
|
|
_LOGGER = logging.getLogger(__name__)
|
|
|
|
|
|
class DeviceAttributes(StrEnum):
|
|
door = "door"
|
|
status = "status"
|
|
time_remaining = "time_remaining"
|
|
current_temperature = "current_temperature"
|
|
tank_ejected = "tank_ejected"
|
|
water_change_reminder = "water_change_reminder"
|
|
water_shortage = "water_shortage"
|
|
|
|
|
|
class MideaB4Device(MiedaDevice):
|
|
_status = {
|
|
0x01: "Standby", 0x02: "Idle", 0x03: "Working",
|
|
0x04: "Finished", 0x05: "Delay", 0x06: "Paused"
|
|
}
|
|
|
|
def __init__(
|
|
self,
|
|
name: str,
|
|
device_id: int,
|
|
ip_address: str,
|
|
port: int,
|
|
token: str,
|
|
key: str,
|
|
protocol: int,
|
|
model: str,
|
|
customize: str
|
|
):
|
|
super().__init__(
|
|
name=name,
|
|
device_id=device_id,
|
|
device_type=0xB4,
|
|
ip_address=ip_address,
|
|
port=port,
|
|
token=token,
|
|
key=key,
|
|
protocol=protocol,
|
|
model=model,
|
|
attributes={
|
|
DeviceAttributes.door: False,
|
|
DeviceAttributes.status: None,
|
|
DeviceAttributes.time_remaining: None,
|
|
DeviceAttributes.current_temperature: None,
|
|
DeviceAttributes.tank_ejected: False,
|
|
DeviceAttributes.water_change_reminder: False,
|
|
DeviceAttributes.water_shortage: False,
|
|
})
|
|
|
|
def build_query(self):
|
|
return [MessageQuery(self._device_protocol_version)]
|
|
|
|
def process_message(self, msg):
|
|
message = MessageB4Response(msg)
|
|
_LOGGER.debug(f"[{self.device_id}] Received: {message}")
|
|
new_status = {}
|
|
for status in self._attributes.keys():
|
|
if hasattr(message, str(status)):
|
|
value = getattr(message, str(status))
|
|
if status == DeviceAttributes.status:
|
|
if value in MideaB4Device._status.keys():
|
|
self._attributes[DeviceAttributes.status] = MideaB4Device._status.get(value)
|
|
else:
|
|
self._attributes[DeviceAttributes.status] = None
|
|
else:
|
|
self._attributes[status] = value
|
|
new_status[str(status)] = self._attributes[status]
|
|
return new_status
|
|
|
|
def set_attribute(self, attr, value):
|
|
pass
|
|
|
|
|
|
class MideaAppliance(MideaB4Device):
|
|
pass
|