Skip to main content

Client-side Python library for EVA II PRO WiFi Smart Dehumidifier appliance by Midea/Inventor.

Project description

Library for EVA II PRO WiFi Smart Dehumidifier appliance

Author: Andrea Barbaresi =2018=

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.

Info about the dehumidifier appliance can be found here.

You can buy the smart dehumidifier appliance (WiFi version) on Amazon (the two links below contain my referral code):

Target devices

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.

Prerequisites

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).

Getting started

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@gmail.com"
_password = "myPassword"
_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();

Client example

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]

Internals

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.

For Further Studies (FFS)

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.

How to contribute

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.

Disclaimer

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

midea_inventor_lib-1.0.1.tar.gz (14.6 kB view hashes)

Uploaded Source

Built Distribution

midea_inventor_lib-1.0.1-py2-none-any.whl (30.2 kB view hashes)

Uploaded Python 2

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page