mirror of
https://github.com/sususweet/midea-meiju-codec.git
synced 2025-11-12 16:01:54 +00:00
feat: add support for washing machine T0xDA
This commit is contained in:
150
custom_components/midea_auto_cloud/device_mapping/T0xDA.py
Normal file
150
custom_components/midea_auto_cloud/device_mapping/T0xDA.py
Normal file
@@ -0,0 +1,150 @@
|
||||
from homeassistant.const import Platform, UnitOfElectricPotential, UnitOfTemperature, UnitOfTime
|
||||
from homeassistant.components.sensor import SensorStateClass, SensorDeviceClass
|
||||
from homeassistant.components.binary_sensor import BinarySensorDeviceClass
|
||||
from homeassistant.components.switch import SwitchDeviceClass
|
||||
|
||||
DEVICE_MAPPING = {
|
||||
"default": {
|
||||
"rationale": ["off", "on"],
|
||||
"queries": [{}],
|
||||
"calculate": {
|
||||
"get": [
|
||||
{
|
||||
"lvalue": "[remain_time]",
|
||||
"rvalue": "[remain_time]"
|
||||
}
|
||||
],
|
||||
"set": {
|
||||
}
|
||||
},
|
||||
"entities": {
|
||||
Platform.NUMBER: {
|
||||
"temperature": {
|
||||
"min": 0,
|
||||
"max": 100,
|
||||
"step": 1
|
||||
},
|
||||
"detergent": {
|
||||
"min": 0,
|
||||
"max": 5,
|
||||
"step": 1
|
||||
},
|
||||
"softener": {
|
||||
"min": 0,
|
||||
"max": 5,
|
||||
"step": 1
|
||||
},
|
||||
"dehydration_speed": {
|
||||
"min": 0,
|
||||
"max": 1600,
|
||||
"step": 100
|
||||
},
|
||||
"soak_time": {
|
||||
"min": 0,
|
||||
"max": 40,
|
||||
"step": 10
|
||||
},
|
||||
"wash_time": {
|
||||
"min": 0,
|
||||
"max": 20,
|
||||
"step": 1
|
||||
},
|
||||
"rinse_count": {
|
||||
"min": 0,
|
||||
"max": 3,
|
||||
"step": 1
|
||||
},
|
||||
"dehydration_time": {
|
||||
"min": 0,
|
||||
"max": 9,
|
||||
"step": 1
|
||||
},
|
||||
"wash_level": {
|
||||
"min": 0,
|
||||
"max": 8,
|
||||
"step": 1
|
||||
},
|
||||
"rinse_level": {
|
||||
"min": 0,
|
||||
"max": 8,
|
||||
"step": 1
|
||||
},
|
||||
"wash_strength": {
|
||||
"min": 1,
|
||||
"max": 4,
|
||||
"step": 1
|
||||
},
|
||||
},
|
||||
Platform.BINARY_SENSOR: {
|
||||
"softener_lack": {
|
||||
"device_class": BinarySensorDeviceClass.PROBLEM,
|
||||
},
|
||||
"detergent_lack": {
|
||||
"device_class": BinarySensorDeviceClass.PROBLEM,
|
||||
},
|
||||
"door_opened": {
|
||||
"device_class": BinarySensorDeviceClass.PROBLEM,
|
||||
},
|
||||
"bucket_water_overheating": {
|
||||
"device_class": BinarySensorDeviceClass.PROBLEM,
|
||||
},
|
||||
},
|
||||
Platform.SWITCH: {
|
||||
"power": {
|
||||
"device_class": SwitchDeviceClass.SWITCH,
|
||||
},
|
||||
"control_status": {
|
||||
"rationale": ["pause", "start"],
|
||||
},
|
||||
"lock": {
|
||||
"device_class": SwitchDeviceClass.SWITCH,
|
||||
},
|
||||
},
|
||||
Platform.SELECT: {
|
||||
"mode": {
|
||||
"options": {
|
||||
"normal": {"mode": "normal"},
|
||||
"dry": {"mode": "dry"},
|
||||
"continus": {"mode": "continus"},
|
||||
}
|
||||
},
|
||||
"program": {
|
||||
"options": {
|
||||
"标准": {"program": "standard"},
|
||||
"速洗": {"program": "fast"},
|
||||
"家纺": {"program": "blanket"},
|
||||
"羊毛": {"program": "wool"},
|
||||
"浸洗": {"program": "embathe"},
|
||||
"记忆": {"program": "memory"},
|
||||
"童装": {"program": "child"},
|
||||
"强洗": {"program": "strong_wash"},
|
||||
"桶自洁": {"program": "bucket_self_clean"},
|
||||
}
|
||||
},
|
||||
},
|
||||
Platform.SENSOR: {
|
||||
"running_status": {
|
||||
"device_class": SensorDeviceClass.ENUM
|
||||
},
|
||||
"appointment_time": {
|
||||
"device_class": SensorDeviceClass.DURATION,
|
||||
"unit_of_measurement": UnitOfTime.MINUTES,
|
||||
"state_class": SensorStateClass.MEASUREMENT
|
||||
},
|
||||
"remain_time": {
|
||||
"device_class": SensorDeviceClass.DURATION,
|
||||
"unit_of_measurement": UnitOfTime.MINUTES,
|
||||
"state_class": SensorStateClass.MEASUREMENT
|
||||
},
|
||||
"progress": {
|
||||
"device_class": SensorDeviceClass.BATTERY,
|
||||
"unit_of_measurement": "%",
|
||||
"state_class": SensorStateClass.MEASUREMENT
|
||||
},
|
||||
"error_code": {
|
||||
"device_class": SensorDeviceClass.ENUM
|
||||
},
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user