Author: Andrea Barbaresi =2018-2024=
Licence: GPLv3
This repo contains the python package midea_inventor_lib that implements a client-side library to connect to the Web API provided by Midea/Inventor, in order to remotely control an EVA II PRO WiFi Smart Dehumidifier device.
You can buy Midea/Inventor/Comfee smart dehumidifier appliances (WiFi version) on Amazon sites (the links below contain my referral code):
- Midea Cube 20 pint
- Midea Cube 35 pint
- Midea Cube 50 pint
- Midea Cube 50 pint w pump
- Midea EasyDry 22 pint
- Midea EasyDry 35 pint
- Midea EasyDry 50 pint
- Midea EasyDry 50 pint w pump
- Midea EasyDry 50 pint w pump wifi upd
- Inventor Fresh
- Comfee 10L
- Comfee 10L w HEPA filter
- Comfee 12L
- Comfee 12L w HEPA filter
- Comfee 16L
- Comfee 20L
- Midea FRESH DRY 10L
- Midea FRESH DRY 12L
- Midea FRESH DRY 20L (DE plug)
- Midea FRESH DRY 20L
- Inventor Eva II PRO WiFi on Amazon.it
- Comfee MDDP-50DEN7 on Amazon.it
- Midea DF-20DEN7-WF
- Midea DF-20DEN7-WF
- Midea Cube 20L
- Midea Quiet 12L
- Midea Quiet 20L
- Midea Fesh Dry 10L
- Midea Fesh Dry 12L
- Comfeee MDDN-10DEN7 10L
- Comfeee MDDN-10DEN7 12L
- Comfeee MDDN-10DEN7 16L
- Comfeee MDDN-10DEN7 20L
- Comfeee MDDN-10DEN7 30L
- Comfeee MDDN-10DEN7 50L
- Comfeee Easy Dry 16L
- Comfeee Easy Dry 20L
- Midea Cube 20L
- Midea MDDF-20DEN7 20L
- Midea MDDF-20DEN7 50L
- Midea 12L
- Midea 20L
- Midea 1500 pies
- Comfee 10L
- Comfee 12L
- Comfee 20L
- Comfee 20L new 2024 version
- Comfee Easy Dry 16L new 2024 version
- Comfee Easy Dry 50L new 2024 version
- Midea Cube 12L
- Midea Cube 20L 80m2
- Midea Cube 20L 40m2
- Midea 12L
- Midea 20L
- Midea 50L
- Midea MAD22C1AWS
- Midea Fresh Dry 10L w HEPA filter
- Comfee 12L
- Comfee 20L
- Comfee 50L
- Comfee MDDN-10DEN7 10L
- Comfee Easy Dry 12L
- Comfee MDDF-20DEN7 20L
- Comfee MDDPE-30DEN7 30L
Even though the library has been designed to generically address any kind of existing MIDEA devices, please note that at the moment the implemented functionalities work on the dehumidifier appliance only (0xA1 type devices).
If you are interested in developing code that is able to control Midea/Inventor Air Condition systems (0xAC type devices), you can have a look at midea-air-condition Ruby&Rails library by Balazs Nadasdi available here.
In order to control the EVA II PRO WiFi Smart Dehumidifier appliance using the provided Python library, first of all it is necessary to download and install the official App, in order to register a valid user to the cloud platform (a valid email address is required). The official companion Apps are available on Google's and Apple's App Stores:
Once connected with valid credentials (i.e. email address and password), your home device has to be added to the list of configured devices using the App (please refer to the manual of the official App to accomplish this task).
Once having a valid registered user and the home device configured, you can start to use the python library instead of the offical App to control the device via Internet (both the client when the library is installed and the home device should be connected to the Internet).
Install from PyPi using pip, a package manager for Python.
pip install midea-inventor-lib
Don't have pip installed? Try installing it, by running this from the command line:
$ curl https://raw.github.com/pypa/pip/master/contrib/get-pip.py | python
Or, you can download the source code (ZIP) and then run:
python setup.py install
You may need to run the above commands with sudo
.
Minimal steps to use the library in your python code are reported below:
Step 1: Include the python package
from midea_inventor_lib import MideaClient
Step 2: Instantiate the MideaClient object
Using clear-text password:
client = MideaClient("user.example@gmail.com", "myPassword", "")
Using password's sha-256 hash:
client = MideaClient("user.example@gmail.com", "", "76549b827ec46e705fd03831813fa52172338f0dfcbd711ed44b81a96dac51c6")
Enable logging (optional):
You can enable logging by setting the 'verbose' parameter to True (default is False) in the MideaClient constructor. Set 'debug' parameter to True in order to log debugging messages too (default is False). Set 'logfile' string parameter to a full-path filename in order to make the library log messages into a file instead of using the console (default). E.g.:
_email = "user@example.com"
_password = "passwordExample"
_sha256password = ""
_verbose = True #Enable logging
_debug = False #Disable debug messages
_logfile = "" #Log to console (default)
client = MideaClient(_email, _password, _sha256password, _debug, _verbose, _logfile)
Step 3: Activate a new session by logging in
res = client.login()
if res == -1:
print "Login error: please check log messages."
else:
sessionId = client.current["sessionId"]
Step 4: Get the target deviceId by retrieving the list of configured appliances
appliances = {}
appliances = client.listAppliances()
for a in appliances:
print "[id="+a["id"]+" type="+a["type"]+" name="+a["name"]+"]"
Step 5: Send commands to control the target device Get the device state:
res = client.get_device_status(deviceId)
if res == 1:
print client.deviceStatus.toString()
Power-on:
res = client.send_poweron_command(deviceId)
if res:
print client.deviceStatus.toString();
Power-off:
res = client.send_poweroff_command(deviceId)
if res:
print client.deviceStatus.toString();
Set Ion on:
res = client.send_ion_on_command(deviceId)
if res:
print client.deviceStatus.toString();
Set Ion off:
res = client.send_ion_off_command(deviceId)
if res:
print client.deviceStatus.toString();
Set fan speed:
if speed > 0 and speed < 100:
res = client.send_fan_speed_command(deviceId, speed)
if res:
print client.deviceStatus.toString();
Set target humidity:
if hum >= 30 and hum <= 70:
res = client.send_target_humidity_command(deviceId, hum)
if res:
print client.deviceStatus.toString();
Set operation mode:
if mode > 0 and mode < 5:
res = client.send_mode_command(deviceId, mode) #set Mode (1:TARGET_MODE, 2:CONTINOUS_MODE, 3:SMART_MODE, 4:DRYER_MODE)
if res:
print client.deviceStatus.toString();
Set updated status (usefull to update multiple attributes at one):
status =client.get_device_status(deviceId) #get current status
#Update status
status.ionSetSwitch = 1 #Ion on
status.setMode = 1 #target-mode
res = self._client.send_update_status_command(self._device["id"], status)
if res:
print client.deviceStatus.toString();
This repo also contains a fully working client (dehumi_control.py) that demonstrates how to use the midea_inventor_lib library in order to control the EVA II PRO WiFi Smart Dehumidifier appliance via a Command Line Interface.
To use the client, the email address of a registered user and the associated password have to be provided via command line parameters (either clear-text password or password's sha-256 hash has to be provided using the '-p' or '-s' options):
# python dehumi_control.py -h
Usage:dehumi_control.py -e <email_address> -p <cleartext password> -s <sha256_password> -l <logfile> [-h] [-v] [-d]
[NEW] A custom integration for Home Assistant platform (version 0.96.0 or newer) can be found at Home Assistant Custom Integration for EVA II PRO WiFi Smart Dehumidifier appliance by Midea/Inventor repository.
You can skip this part if you are not interested in technical details concerning the format of the API messages used by the library.
Official companion Apps for Android and IOS platforms are based on the midea-SDKs made available by Midea Smart Technology Co., Ltd.:
According to the SDK's documentation, "MideaSDK is a software develop kit maintained by MSmart. You can develop your own APP, Smart Hardware or Smart TV based on this SDK to control the smart appliances produced by Midea."
Official documentation for the open API can be found here (chinese language only): https://github.com/midea-sdk/midea-sdk.github.io/tree/master/api
Apart Androd and IOS platforms, no other environment is currently officially supported. In order to develop the client-side library for all the platform supporting Python, I used a Man-In-The-Middle Web Proxy as a packet sniffer to understand the basics on the API messages exchanged between the offical Android client and the Midea cloud Server.
Web API server can be reached via https://mapp-appsmb.com/<endpoint>
(POST web requests shoud be used).
A brief description of the most relevant endpoints follows:
/v1/user/login/id/get
endpoint with 'loginAccount' parameter is used to get 'loginId' parameter (different for each session).
/v1/user/login
endpoint with 'password' parameter is used to perform the login ('accessToken' and 'sessionId' parameters are returned). The password parameter sent by the client is SHA-256 hash of a string derived from 'loginId', 'password' and 'appKey' parameters.
/v1/appliance/user/list/get
endpoint is used to retrieve the list of configured devices together withh all the associated parameters ('name', 'modelNumber', 'activeStaus', 'onlineStatus', etc.)
/v1/appliance/transparent/send
endpoint with the 'order' parameter is used to control the home device (the 'reply' parameter is returned). Both the 'order' and 'reply' parameters are AES encryted; the encryption/decryption key used by AES is derived from the 'APP_key' parameter (constant string) and the 'accessToken' parameter returned when logging in. The revelant part of code used for the encription and decryption tasks can be found in the MideaSecurity class in midea_security.py file.
At the moment, the client-side Python library can control a dehumidifier appliance by sending API messages to the cloud Server that talks to the home device. Both the client and the home device need Internet access in this cloud-to-cloud scenario. The possibility to control the home device locally (i.e. the possibility to let the client to send API messagges directly to the home device) when both the client and the home device are associated to the same WiFi network is FFS.
If you can code in Python and you are interested in improving and expanding this work, feel free to clone this repo. Drop me a line if you wish to merge your modifications in my repo too.
Besides owning an EVA II PRO WiFi device, I have no connection with Midea/Inventor company. This library was developed for my own personal use and shared to other people interested on Internet of Things systems and domotic platforms. This software is provided as is, without any warranty, according to the GNU Public Licence version 3.
If this project helps you to reduce time to develop your code, you can make me a donation.