├── .devcontainer └── devcontainer.json ├── .github ├── ISSUE_TEMPLATE │ ├── 1-issue_zh-cn.yml │ ├── 2-issue_en.yml │ ├── 3-enhancement_zh-cn.yml │ ├── 4-enhancement_en.yml │ └── config.yml └── workflows │ ├── codeql.yml │ └── validate.yml ├── .gitignore ├── .vscode ├── settings.json └── tasks.json ├── LICENSE ├── README.md ├── README_hans.md ├── brands ├── ariston.png ├── beverly.png ├── bugu.png ├── carrier.png ├── colmo.png ├── comfee.png ├── electrolux.png ├── invertor.png ├── littleswan.png ├── midea.png ├── netsu.png ├── probreeze.png ├── rotenso.png ├── toshiba.png ├── vandelo.png └── wahin.png ├── custom_components └── midea_ac_lan │ ├── __init__.py │ ├── binary_sensor.py │ ├── climate.py │ ├── config_flow.py │ ├── const.py │ ├── fan.py │ ├── humidifier.py │ ├── light.py │ ├── lock.py │ ├── manifest.json │ ├── midea │ ├── backports │ │ └── enum.py │ ├── core │ │ ├── cloud.py │ │ ├── crc8.py │ │ ├── device.py │ │ ├── discover.py │ │ ├── message.py │ │ ├── packet_builder.py │ │ └── security.py │ └── devices │ │ ├── __init__.py │ │ ├── a1 │ │ ├── device.py │ │ └── message.py │ │ ├── ac │ │ ├── device.py │ │ └── message.py │ │ ├── b0 │ │ ├── device.py │ │ └── message.py │ │ ├── b1 │ │ ├── device.py │ │ └── message.py │ │ ├── b3 │ │ ├── device.py │ │ └── message.py │ │ ├── b4 │ │ ├── device.py │ │ └── message.py │ │ ├── b6 │ │ ├── device.py │ │ └── message.py │ │ ├── bf │ │ ├── device.py │ │ └── message.py │ │ ├── c2 │ │ ├── device.py │ │ └── message.py │ │ ├── c3 │ │ ├── device.py │ │ └── message.py │ │ ├── ca │ │ ├── device.py │ │ └── message.py │ │ ├── cc │ │ ├── device.py │ │ └── message.py │ │ ├── cd │ │ ├── device.py │ │ └── message.py │ │ ├── ce │ │ ├── device.py │ │ └── message.py │ │ ├── cf │ │ ├── device.py │ │ └── message.py │ │ ├── da │ │ ├── device.py │ │ └── message.py │ │ ├── db │ │ ├── device.py │ │ └── message.py │ │ ├── dc │ │ ├── device.py │ │ └── message.py │ │ ├── e1 │ │ ├── device.py │ │ └── message.py │ │ ├── e2 │ │ ├── device.py │ │ └── message.py │ │ ├── e3 │ │ ├── device.py │ │ └── message.py │ │ ├── e6 │ │ ├── device.py │ │ └── message.py │ │ ├── e8 │ │ ├── device.py │ │ └── message.py │ │ ├── ea │ │ ├── device.py │ │ └── message.py │ │ ├── ec │ │ ├── device.py │ │ └── message.py │ │ ├── ed │ │ ├── device.py │ │ └── message.py │ │ ├── fa │ │ ├── device.py │ │ └── message.py │ │ ├── fb │ │ ├── device.py │ │ └── message.py │ │ ├── fc │ │ ├── device.py │ │ └── message.py │ │ ├── fd │ │ ├── device.py │ │ └── message.py │ │ ├── x13 │ │ ├── device.py │ │ └── message.py │ │ ├── x26 │ │ ├── device.py │ │ └── message.py │ │ ├── x34 │ │ ├── device.py │ │ └── message.py │ │ └── x40 │ │ ├── device.py │ │ └── message.py │ ├── midea_devices.py │ ├── midea_entity.py │ ├── number.py │ ├── select.py │ ├── sensor.py │ ├── services.yaml │ ├── switch.py │ ├── translations │ ├── en.json │ ├── fr.json │ ├── hu.json │ ├── ru.json │ ├── sk.json │ └── zh-Hans.json │ └── water_heater.py ├── doc ├── 13.md ├── 13_hans.md ├── 26.md ├── 26_hans.md ├── 34.md ├── 34_hans.md ├── 40.md ├── 40_hans.md ├── A1.md ├── A1_hans.md ├── AC.md ├── AC_hans.md ├── B0.md ├── B0_hans.md ├── B1.md ├── B1_hans.md ├── B3.md ├── B3_hans.md ├── B4.md ├── B4_hans.md ├── B6.md ├── B6_hans.md ├── BF.md ├── BF_hans.md ├── C2.md ├── C2_hans.md ├── C3.md ├── C3_hans.md ├── CA.md ├── CA_hans.md ├── CC.md ├── CC_hans.md ├── CD.md ├── CD_hans.md ├── CE.md ├── CE_hans.md ├── CF.md ├── CF_hans.md ├── DA.md ├── DA_hans.md ├── DB.md ├── DB_hans.md ├── DC.md ├── DC_hans.md ├── E1.md ├── E1_hans.md ├── E2.md ├── E2_hans.md ├── E3.md ├── E3_hans.md ├── E6.md ├── E6_hans.md ├── E8.md ├── E8_hans.md ├── EA.md ├── EA_hans.md ├── EC.md ├── EC_hans.md ├── ED.md ├── ED_hans.md ├── FA.md ├── FA_hans.md ├── FB.md ├── FB_hans.md ├── FC.md ├── FC_hans.md ├── FD.md ├── FD_hans.md └── images │ ├── alipay.png │ └── wechatpay.png ├── hacs.json ├── requirements.txt └── scripts ├── run.sh └── setup.sh /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1-issue_zh-cn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/.github/ISSUE_TEMPLATE/1-issue_zh-cn.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2-issue_en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/.github/ISSUE_TEMPLATE/2-issue_en.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/3-enhancement_zh-cn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/.github/ISSUE_TEMPLATE/3-enhancement_zh-cn.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/4-enhancement_en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/.github/ISSUE_TEMPLATE/4-enhancement_en.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/README.md -------------------------------------------------------------------------------- /README_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/README_hans.md -------------------------------------------------------------------------------- /brands/ariston.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/brands/ariston.png -------------------------------------------------------------------------------- /brands/beverly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/brands/beverly.png -------------------------------------------------------------------------------- /brands/bugu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/brands/bugu.png -------------------------------------------------------------------------------- /brands/carrier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/brands/carrier.png -------------------------------------------------------------------------------- /brands/colmo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/brands/colmo.png -------------------------------------------------------------------------------- /brands/comfee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/brands/comfee.png -------------------------------------------------------------------------------- /brands/electrolux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/brands/electrolux.png -------------------------------------------------------------------------------- /brands/invertor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/brands/invertor.png -------------------------------------------------------------------------------- /brands/littleswan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/brands/littleswan.png -------------------------------------------------------------------------------- /brands/midea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/brands/midea.png -------------------------------------------------------------------------------- /brands/netsu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/brands/netsu.png -------------------------------------------------------------------------------- /brands/probreeze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/brands/probreeze.png -------------------------------------------------------------------------------- /brands/rotenso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/brands/rotenso.png -------------------------------------------------------------------------------- /brands/toshiba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/brands/toshiba.png -------------------------------------------------------------------------------- /brands/vandelo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/brands/vandelo.png -------------------------------------------------------------------------------- /brands/wahin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/brands/wahin.png -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/__init__.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/binary_sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/binary_sensor.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/climate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/climate.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/config_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/config_flow.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/const.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/fan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/fan.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/humidifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/humidifier.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/light.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/lock.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/manifest.json -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/backports/enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/backports/enum.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/core/cloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/core/cloud.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/core/crc8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/core/crc8.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/core/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/core/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/core/discover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/core/discover.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/core/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/core/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/core/packet_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/core/packet_builder.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/core/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/core/security.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/__init__.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/a1/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/a1/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/a1/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/a1/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/ac/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/ac/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/ac/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/ac/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/b0/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/b0/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/b0/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/b0/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/b1/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/b1/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/b1/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/b1/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/b3/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/b3/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/b3/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/b3/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/b4/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/b4/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/b4/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/b4/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/b6/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/b6/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/b6/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/b6/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/bf/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/bf/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/bf/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/bf/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/c2/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/c2/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/c2/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/c2/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/c3/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/c3/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/c3/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/c3/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/ca/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/ca/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/ca/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/ca/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/cc/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/cc/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/cc/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/cc/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/cd/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/cd/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/cd/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/cd/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/ce/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/ce/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/ce/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/ce/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/cf/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/cf/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/cf/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/cf/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/da/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/da/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/da/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/da/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/db/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/db/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/db/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/db/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/dc/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/dc/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/dc/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/dc/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/e1/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/e1/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/e1/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/e1/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/e2/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/e2/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/e2/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/e2/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/e3/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/e3/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/e3/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/e3/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/e6/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/e6/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/e6/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/e6/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/e8/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/e8/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/e8/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/e8/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/ea/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/ea/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/ea/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/ea/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/ec/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/ec/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/ec/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/ec/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/ed/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/ed/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/ed/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/ed/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/fa/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/fa/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/fa/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/fa/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/fb/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/fb/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/fb/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/fb/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/fc/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/fc/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/fc/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/fc/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/fd/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/fd/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/fd/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/fd/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/x13/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/x13/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/x13/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/x13/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/x26/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/x26/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/x26/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/x26/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/x34/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/x34/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/x34/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/x34/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/x40/device.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/x40/device.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea/devices/x40/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea/devices/x40/message.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea_devices.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/midea_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/midea_entity.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/number.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/select.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/sensor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/sensor.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/services.yaml -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/switch.py -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/translations/en.json -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/translations/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/translations/fr.json -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/translations/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/translations/hu.json -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/translations/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/translations/ru.json -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/translations/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/translations/sk.json -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/translations/zh-Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/translations/zh-Hans.json -------------------------------------------------------------------------------- /custom_components/midea_ac_lan/water_heater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/custom_components/midea_ac_lan/water_heater.py -------------------------------------------------------------------------------- /doc/13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/13.md -------------------------------------------------------------------------------- /doc/13_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/13_hans.md -------------------------------------------------------------------------------- /doc/26.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/26.md -------------------------------------------------------------------------------- /doc/26_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/26_hans.md -------------------------------------------------------------------------------- /doc/34.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/34.md -------------------------------------------------------------------------------- /doc/34_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/34_hans.md -------------------------------------------------------------------------------- /doc/40.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/40.md -------------------------------------------------------------------------------- /doc/40_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/40_hans.md -------------------------------------------------------------------------------- /doc/A1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/A1.md -------------------------------------------------------------------------------- /doc/A1_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/A1_hans.md -------------------------------------------------------------------------------- /doc/AC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/AC.md -------------------------------------------------------------------------------- /doc/AC_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/AC_hans.md -------------------------------------------------------------------------------- /doc/B0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/B0.md -------------------------------------------------------------------------------- /doc/B0_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/B0_hans.md -------------------------------------------------------------------------------- /doc/B1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/B1.md -------------------------------------------------------------------------------- /doc/B1_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/B1_hans.md -------------------------------------------------------------------------------- /doc/B3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/B3.md -------------------------------------------------------------------------------- /doc/B3_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/B3_hans.md -------------------------------------------------------------------------------- /doc/B4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/B4.md -------------------------------------------------------------------------------- /doc/B4_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/B4_hans.md -------------------------------------------------------------------------------- /doc/B6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/B6.md -------------------------------------------------------------------------------- /doc/B6_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/B6_hans.md -------------------------------------------------------------------------------- /doc/BF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/BF.md -------------------------------------------------------------------------------- /doc/BF_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/BF_hans.md -------------------------------------------------------------------------------- /doc/C2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/C2.md -------------------------------------------------------------------------------- /doc/C2_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/C2_hans.md -------------------------------------------------------------------------------- /doc/C3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/C3.md -------------------------------------------------------------------------------- /doc/C3_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/C3_hans.md -------------------------------------------------------------------------------- /doc/CA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/CA.md -------------------------------------------------------------------------------- /doc/CA_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/CA_hans.md -------------------------------------------------------------------------------- /doc/CC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/CC.md -------------------------------------------------------------------------------- /doc/CC_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/CC_hans.md -------------------------------------------------------------------------------- /doc/CD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/CD.md -------------------------------------------------------------------------------- /doc/CD_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/CD_hans.md -------------------------------------------------------------------------------- /doc/CE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/CE.md -------------------------------------------------------------------------------- /doc/CE_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/CE_hans.md -------------------------------------------------------------------------------- /doc/CF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/CF.md -------------------------------------------------------------------------------- /doc/CF_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/CF_hans.md -------------------------------------------------------------------------------- /doc/DA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/DA.md -------------------------------------------------------------------------------- /doc/DA_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/DA_hans.md -------------------------------------------------------------------------------- /doc/DB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/DB.md -------------------------------------------------------------------------------- /doc/DB_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/DB_hans.md -------------------------------------------------------------------------------- /doc/DC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/DC.md -------------------------------------------------------------------------------- /doc/DC_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/DC_hans.md -------------------------------------------------------------------------------- /doc/E1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/E1.md -------------------------------------------------------------------------------- /doc/E1_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/E1_hans.md -------------------------------------------------------------------------------- /doc/E2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/E2.md -------------------------------------------------------------------------------- /doc/E2_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/E2_hans.md -------------------------------------------------------------------------------- /doc/E3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/E3.md -------------------------------------------------------------------------------- /doc/E3_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/E3_hans.md -------------------------------------------------------------------------------- /doc/E6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/E6.md -------------------------------------------------------------------------------- /doc/E6_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/E6_hans.md -------------------------------------------------------------------------------- /doc/E8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/E8.md -------------------------------------------------------------------------------- /doc/E8_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/E8_hans.md -------------------------------------------------------------------------------- /doc/EA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/EA.md -------------------------------------------------------------------------------- /doc/EA_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/EA_hans.md -------------------------------------------------------------------------------- /doc/EC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/EC.md -------------------------------------------------------------------------------- /doc/EC_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/EC_hans.md -------------------------------------------------------------------------------- /doc/ED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/ED.md -------------------------------------------------------------------------------- /doc/ED_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/ED_hans.md -------------------------------------------------------------------------------- /doc/FA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/FA.md -------------------------------------------------------------------------------- /doc/FA_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/FA_hans.md -------------------------------------------------------------------------------- /doc/FB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/FB.md -------------------------------------------------------------------------------- /doc/FB_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/FB_hans.md -------------------------------------------------------------------------------- /doc/FC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/FC.md -------------------------------------------------------------------------------- /doc/FC_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/FC_hans.md -------------------------------------------------------------------------------- /doc/FD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/FD.md -------------------------------------------------------------------------------- /doc/FD_hans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/FD_hans.md -------------------------------------------------------------------------------- /doc/images/alipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/images/alipay.png -------------------------------------------------------------------------------- /doc/images/wechatpay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/doc/images/wechatpay.png -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/hacs.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | homeassistant==2024.5.1 2 | pycryptodome==3.20.0 -------------------------------------------------------------------------------- /scripts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/scripts/run.sh -------------------------------------------------------------------------------- /scripts/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyrielRct/midea_ac_lan/HEAD/scripts/setup.sh --------------------------------------------------------------------------------