Skip to content

Latest commit

 

History

History
102 lines (82 loc) · 3.45 KB

AC.md

File metadata and controls

102 lines (82 loc) · 3.45 KB

Air Conditioner

Features

  • Supports target temperature
  • Supports run mode
  • Supports fan mode
  • Supports swing mode
  • Supports preset mode
  • Supports auxiliary heating
  • Supports build-in fresh air system

Supported Run-Modes

  • Comfort Mode
  • ECO Mode
  • Boost Mode

Customize

Set the temperature step of AC (0.5 by default).

{"temperature_step": 1}

Entities

Default entity

EntityID Class Description
climate.{DEVICEID}_climate climate Climate entity

Extra entities

EntityID Class Description
sensor.{DEVICEID}_full_dust binary_sensor Full of Dust
sensor.{DEVICEID}_indoor_humidity sensor Indoor humidity
sensor.{DEVICEID}_indoor_temperature sensor Indoor Temperature
sensor.{DEVICEID}_outdoor_temperature sensor Outdoor Temperature
sensor.{DEVICEID}_total_energy_consumption sensor Total Energy Consumption
sensor.{DEVICEID}_current_energy_consumption sensor Current Energy Consumption
sensor.{DEVICEID}_realtime_power sensor Realtime Power
fan.{DEVICEID}_fresh_air fan Fresh Air Fan
switch.{DEVICEID}_aux_heat switch Aux Heating
switch.{DEVICEID}_boost_mode switch Boost Mode
switch.{DEVICEID}_breezeless switch Breezeless
switch.{DEVICEID}_comfort_mode switch Comfort Mode
switch.{DEVICEID}_dry switch Dry
switch.{DEVICEID}_eco_mode switch ECO Mode
switch.{DEVICEID}_indirect_wind switch Indirect Wind
switch.{DEVICEID}_natural_wind switch Natural Wind
switch.{DEVICEID}_prompt_tone switch Prompt Tone
switch.{DEVICEID}_power switch Power
switch.{DEVICEID}_screen_display switch Screen Display
switch.{DEVICEID}_smart_eye switch Smart Eye
switch.{DEVICEID}_swing_horizontal switch Swing Horizontal
switch.{DEVICEID}_swing_vertical switch Swing Vertical

Build-in fresh air system

Some Midea appliance be named "Fresh Air Appliance", the protocol that actually uses the air conditioner. If your fresh air appliance is identified as an air conditioner, you should check the Fresh Air Fan entity in CONFIGURE, and use this fan entity to control your fresh air appliance.***

Services

following extra services will be made

midea_ac_lan.set_ac_fan_speed

Service

Set fan speed of AC fan. Service data:

Name Description
device_id The Appliance code (Device ID) of appliance
fan_speed Range 1 to 100 or auto

Example

service: midea_ac_lan.set_fan_speed
data:
  device_id: XXXXXXXXXXXX
  fan_speed: auto

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 "aux_heat"
"breezeless"
"comfort_mode"
"dry"
"eco_mode"
"indirect_wind"
"natural_wind"
"prompt_tone"
"power"
"screen_display"
"screen_display_2"
"smart_eye"
"swing_horizontal"
"swing_vertical"
"turbo_mode"
value true or false

Example

service: midea_ac_lan.set_attribute
data:
  device_id: XXXXXXXXXXXX
  attribute: eco_mode
  value: true