Midea/midea_ac_lan/midea/devices/db/device.py

88 lines
2.7 KiB
Python
Raw Normal View History

2023-09-22 05:45:40 +00:00
import logging
from .message import (
MessageQuery,
MessagePower,
MessageStart,
MessageDBResponse
)
try:
from enum import StrEnum
except ImportError:
from ...backports.enum import StrEnum
from ...core.device import MiedaDevice
_LOGGER = logging.getLogger(__name__)
class DeviceAttributes(StrEnum):
power = "power"
start = "start"
washing_data = "washing_data"
progress = "progress"
time_remaining = "time_remaining"
class MideaDBDevice(MiedaDevice):
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=0xDB,
ip_address=ip_address,
port=port,
token=token,
key=key,
protocol=protocol,
model=model,
attributes={
DeviceAttributes.power: False,
DeviceAttributes.start: False,
DeviceAttributes.washing_data: bytearray([]),
DeviceAttributes.progress: "Unknown",
DeviceAttributes.time_remaining: None
})
def build_query(self):
return [MessageQuery(self._device_protocol_version)]
def process_message(self, msg):
message = MessageDBResponse(msg)
_LOGGER.debug(f"[{self.device_id}] Received: {message}")
new_status = {}
progress = ["Idle", "Spin", "Rinse", "Wash", "Pre-wash",
"Dry", "Weight", "Hi-speed Spin", "Unknown"]
for status in self._attributes.keys():
if hasattr(message, str(status)):
if status == DeviceAttributes.progress:
self._attributes[status] = progress[getattr(message, str(status))]
else:
self._attributes[status] = getattr(message, str(status))
new_status[str(status)] = self._attributes[status]
return new_status
def set_attribute(self, attr, value):
if attr == DeviceAttributes.power:
message = MessagePower(self._device_protocol_version)
message.power = value
self.build_send(message)
elif attr == DeviceAttributes.start:
message = MessageStart(self._device_protocol_version)
message.start = value
message.washing_data = self._attributes[DeviceAttributes.washing_data]
self.build_send(message)
class MideaAppliance(MideaDBDevice):
pass