A library to control Midea dehumidifiers via the Local area network
Project description
This is a library that allows communication with Midea dehumidifier appliances via the local area network.
midea-beautiful-dehumidifier
This library allows discovering Midea dehumidifiers on local network, getting their state and controlling then. The name comes from Chinese name for Midea (美的) which translates to beautiful in English.
This library inspired from the repository at mac-zhou/midea-msmart which provides similar functionality for air conditioners and barban-dev/midea_inventor_dehumidifier cloud based functionality for dehumidifiers. This library may include verbatim or adapted portions of the code from those two projects.
Thanks also to yitsushi's project, NeoAcheron's project, andersonshatch's project.
Supported appliances
The library works only Midea dehumidifiers supporting V3 protocol. Both appliances with and without ion function are supported.
Some examples of supported dehumidifiers:
- Comfee MDDF-16DEN7-WF or MDDF-20DEN7-WF (tested with 20L version)
- Inventor EVA ΙΟΝ Pro Wi-Fi (EP3-WiFi 16L/20L) (tested with 20L version)
- Inventor Eva II Pro Wi-Fi (EVP-WF16L/20L)
- Pro Breeze 30L Smart Dehumidifier with Wifi / App Control
It may as well work with other Midea Wi-Fi dehumidifiers.
Dehumidifier data
The following dehumidifier data is accessible via library:
- on/off switch (boolean, can be set)
- current relative humidity (read-only)
- target relative humidity (can be set)
- active mode (can be set)
- fan speed (can be set)
- ion mode status (boolean, can be set)
- tank is full (boolean, read-only)
- appliance name (read-only). Set through Midea mobile application.
- appliance serial number (read-only)
- appliance IPv4 address (read-only)
- token and key for local network access (read-only, only v3 appliances)
- filter replacement indicator (boolean, read-only, if supported on appliance)
- pump on/off switch (boolean, can be set, if supported on appliance)
- defrosting mode indicator (boolean, read-only, if supported on appliance)
- internal error code (read-only)
Discovery
This library is able to discover appliances on local network. This is done by broadcasting UDP packets on all local networks interfaces to ports 6445. Appliances will respond to this broadcast with their description packet. Following discovery, communication switchers to TCP over port 6444. This communication is encrypted, and, for appliances with version 3 firmware the library needs a token/key combination associated to each appliance. This can be either provided as arguments or retrieved from Midea app account. Once obtained, the token/key pair can be reused for an appliance multiple times. The library can also retrieve the list of registered appliances from Midea app account and obtain additional information for devices (eg. name).
Library connects to Midea cloud API using credentials from NetHome Plus mobile app. You can use other Midea app mobile applications if you obtain their application key and id. See midea_beautiful_dehumidifier/midea.py for some examples. Application key and application id must match, otherwise library won't be able to sign in.
The discovery should work on Linux and Windows based systems, however it doesn't work in Windows Subsystem for Linux and may not work in Docker containers or VMs depending on network setup. For example, VM or container needs to have rights to broadcast to physical network to make discovery work. On workaround is to run discovery from non-virtualized environment host.
If this discovery mechanism doesn't work on particular set-up, it is still possible to either target appliances directly using their IP address when it is known or to retrieve or setting their status using cloud service.
Network considerations
Discovery requires that both appliance and the machine performing discovery are present on the same subnet. Discovery process will issue UDP broadcast request on the local private networks discovered from host's network adapters. The library only scans private network ranges using this method (e.g. 10.0.0.0 – 10.255.255.255, 172.16.0.0 – 172.31.255.255 and 192.168.0.0 – 192.168.255.255) It is also possible to explicitly provide networks or even single addresses to scan and in this case there is no limitation on address ranges, however, beware of sending broadcast requests to public ip networks.
Local protocol support
Library supports following protocols:
- cloud based status reading and writing (no local access needed)
- v3 local protocol with compatible devices (requires TOKEN/KEY combination)
- v2 local protocol with compatible devices (TO BE TESTED)
Logging
Library logs additional information at log level 5. Credentials information like username, password or token keys should never be logged, but you can use command line tool to display token and key data.
Command Line Usage
Installing package
pip install --upgrade midea-beautiful-dehumidifier
Command line tool help
midea_beautiful_dehumidifier-cli --help
midea_beautiful_dehumidifier-cli discover --help
midea_beautiful_dehumidifier-cli set --help
midea_beautiful_dehumidifier-cli status --help
Discovery
Discover dehumidifier appliances on the local network:
midea_beautiful_dehumidifier-cli discover --account ACCOUNT_EMAIL --password PASSWORD
Show tokens used to connect to appliances via local network
midea_beautiful_dehumidifier-cli discover --account ACCOUNT_EMAIL --password PASSWORD --credentials
Search for devices by providing explicit network address
midea_beautiful_dehumidifier-cli discover --account ACCOUNT_EMAIL --password PASSWORD --network 192.0.1.3 --credentials
Search for devices by providing explicit network range
midea_beautiful_dehumidifier-cli discover --account ACCOUNT_EMAIL --password PASSWORD --network 192.0.1.2/24 --credentials
Appliance status
Get status of an appliance using known TOKEN and KEY (e.g. retrieved using discover
command)
midea_beautiful_dehumidifier-cli status --ip APPLIANCE_IP_ADDRESS --token TOKEN --key KEY
Get status of an appliance using Midea app credentials
midea_beautiful_dehumidifier-cli status --ip APPLIANCE_IP_ADDRESS --account ACCOUNT_EMAIL --password PASSWORD
Get status of an appliance via Midea cloud API (note the usage of --id
and --cloud
options)
midea_beautiful_dehumidifier-cli status --id APPLIANCE_ID --account ACCOUNT_EMAIL --password PASSWORD --cloud
Set appliance attribute
Set target relative humidity (0-100)
midea_beautiful_dehumidifier-cli set --ip APPLIANCE_IP_ADDRESS --token TOKEN --key KEY --humidity 55
Sets operating mode (number 1 to 4)
midea_beautiful_dehumidifier-cli set --ip APPLIANCE_IP_ADDRESS --token TOKEN --key KEY --mode 1
Set fan strength (0-100)
midea_beautiful_dehumidifier-cli set --ip APPLIANCE_IP_ADDRESS --token TOKEN --key KEY --fan 40
Turn on/off ion mode (0 or 1)
midea_beautiful_dehumidifier-cli set --ip APPLIANCE_IP_ADDRESS --token TOKEN --key KEY --ion 1
Turn on/off ion mode (0 or 1)
midea_beautiful_dehumidifier-cli set --ip APPLIANCE_IP_ADDRESS --token TOKEN --key KEY --on 1
Turn on/off pump (0 or 1)
midea_beautiful_dehumidifier-cli set --ip APPLIANCE_IP_ADDRESS --token TOKEN --key KEY --pump 1
Combinations multiple settings
midea_beautiful_dehumidifier-cli set --ip APPLIANCE_IP_ADDRESS --token TOKEN --key KEY --fan 60 --humidity 50
Set target humidity via Midea cloud API (note the usage of --id
and --cloud
options)
midea_beautiful_dehumidifier-cli set --id APPLIANCE_ID --account ACCOUNT_EMAIL --password PASSWORD --humidity 55 --cloud
Watch appliance status
Watch appliance status allows to debug packets received when polling it. It will repeatedly retrieve appliance status with specified pauses between each poll. Polling can be interrupted via keyboard.
Continuously watch status of an appliance using known TOKEN and KEY (e.g. retrieved using discover
command) with interval of 10 seconds between polling
midea_beautiful_dehumidifier-cli watch --ip APPLIANCE_IP_ADDRESS --token TOKEN --key KEY --interval 10
Continuously watch status of an appliance using Midea app credentials with interval of 30 seconds between polling
midea_beautiful_dehumidifier-cli status --ip APPLIANCE_IP_ADDRESS --account ACCOUNT_EMAIL --password PASSWORD --interval 30
Specifying log level
Log level is specified using --log
option:
Set DEBUG
level
midea_beautiful_dehumidifier-cli --log DEBUG discover --account ACCOUNT_EMAIL --password PASSWORD
Very verbose level (may contain confidential information)
midea_beautiful_dehumidifier-cli --log NOTSET discover --account ACCOUNT_EMAIL --password PASSWORD
Set WARNING
level (default log level if option was not specified)
midea_beautiful_dehumidifier-cli --log WARNING discover --account ACCOUNT_EMAIL --password PASSWORD
Code examples
Discover appliances on local network:
from midea_beautiful_dehumidifier import find_appliances
appliances = find_appliances(
account="USER_EMAIL@example.com", # Account e-mail
password="secret_password", # Account password
)
for appliance in appliances:
print(f"{appliance!r}")
Get appliance state:
from midea_beautiful_dehumidifier import appliance_state
appliance = appliance_state(
ip=192.0.1.2, # APPLIANCE_IP_ADDRESS
token="TOKEN", # TOKEN obtained from Midea API
key="KEY", # Token KEY obtained from Midea API
)
print(f"{appliance!r}")
Get appliance state from cloud:
from midea_beautiful_dehumidifier import appliance_state
appliance = appliance_state(
account="USER_EMAIL@example.com", # Account e-mail
password="secret_password", # Account password
id=123412341234, # Appliance id obtained from Midea API
)
print(f"{appliance!r}")
Build the library
Library is automatically built, packaged and published to PyPI when a Git Hub release is published.
See also
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file midea-beautiful-dehumidifier-0.6.1.tar.gz
.
File metadata
- Download URL: midea-beautiful-dehumidifier-0.6.1.tar.gz
- Upload date:
- Size: 31.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 68c884a64320754b70ed7e7a93537a63165bcfab1e59460240609a7333985d6e |
|
MD5 | 76d1919f049bfbcbf6a1949e8c95d460 |
|
BLAKE2b-256 | 6d348747c37d104d5c11466790cb76110b974f2997a476b1918aa9e831132d2d |
File details
Details for the file midea_beautiful_dehumidifier-0.6.1-py3-none-any.whl
.
File metadata
- Download URL: midea_beautiful_dehumidifier-0.6.1-py3-none-any.whl
- Upload date:
- Size: 32.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bae9f9a73e264a736986ba0128cb2c640ebf475e39ca4fa600b339bbc77d5323 |
|
MD5 | fd7c24261ab26ae6a61aa2c1c43fe550 |
|
BLAKE2b-256 | 13e3fe9bb762eb5ebb41da0b503537c1044d775ab896ca9423e6f8546da87742 |