Skip to content

Latest commit

 

History

History
71 lines (58 loc) · 2.64 KB

26.md

File metadata and controls

71 lines (58 loc) · 2.64 KB

Bathroom Master

Features

  • Supports preset mode
  • Supports fan direction setting

Entities

Default entity

No Default entity

Extra entities

EntityID Class Description
sensor.{DEVICEID}_current_temperature sensor Current Temperature
sensor.{DEVICEID}_current_humidity sensor Current Humidity
binary_sensor.{DEVICEID}_current_radar binary_sensor Occupancy Status
switch.{DEVICEID}_main_light switch Main Light
switch.{DEVICEID}_night_light switch Night Light
select.{DEVICEID}_mode select Mode
select.{DEVICEID}_direction select Fan direction

Service

midea_ac_lan.set_attribute

Service

Set the attribute of appliance. Service data:

Name Description
device_id The Appliance code (Device ID) of appliance
attribute "main_light"
"night_light"
value true or false
Name Description
device_id The Appliance code (Device ID) of appliance
attribute "mode"
value "Off"
"Heat(high)"
"Heat(low)"
"Bath"
"Blow"
"Ventilation"
"Dry"
Name Description
device_id The Appliance code (Device ID) of appliance
attribute "direction"
value 60
70
80
90
100
110
"Oscillate"

Example

service: midea_ac_lan.set_attribute
data:
  device_id: XXXXXXXXXXXX
  attribute: main_light
  value: true
service: midea_ac_lan.set_attribute
data:
  device_id: XXXXXXXXXXXX
  attribute: mode
  value: Bath
service: midea_ac_lan.set_attribute
data:
  device_id: XXXXXXXXXXXX
  attribute: direction
  value: 70