Skip to main content

Asynchronous Python client for controlling Melcloud devices.

Project description

pymelcloud

PyPI version

This is a package for interacting with MELCloud and Mitsubishi Electric devices. It's still a little rough around the edges and the documentation is non-existent.

The goals for this package are:

  • To control and automate devices, not to configure them.
  • Handle device capabilities behind the scenes.
  • Make the different device types behave in predictable way.

Notes on usage

There are built-in rate limits and debouncing for most of the methods with the exception of the Device update method.

  • Initialize devices for each account only once during application runtime.
  • Make sure the update calls for each Device are rate limited. A 60 second update interval is a good starting point. Going much faster will exceed the expected load for MELCloud and can potentially cause availability issues.
  • Make absolutely sure the update calls are rate limited.

Supported devices

  • Air-to-air heat pumps (DeviceType=0)
  • Air-to-water heat pumps (DeviceType=1)
  • Energy Recovery Ventilators (DeviceType=3)

Read

Reads access only locally cached state. Call device.update() to fetch the latest state.

Available properties:

  • name
  • mac
  • serial
  • units - model info of related units.
  • temp_unit
  • last_seen
  • power
  • daily_energy_consumed
  • wifi_signal

Other properties are available through _ prefixed state objects if one has the time to go through the source.

Air-to-air heat pump properties

  • room_temperature
  • outdoor_temperature
  • target_temperature
  • target_temperature_step
  • target_temperature_min
  • target_temperature_max
  • operation_mode
  • available operation_modes
  • fan_speed
  • available fan_speeds
  • vane_horizontal
  • available vane_horizontal_positions
  • vane_vertical
  • available vane_vertical_positions
  • total_energy_consumed in kWh. See notes below.

Air-to-water heat pump properties

  • tank_temperature
  • target_tank_temperature
  • tank_temperature_min
  • tank_temperature_max
  • outside_temperature
  • zones
    • name
    • status
    • room_temperature
    • target_temperature
  • status
  • operation_mode
  • available operation_modes

Energy recovery ventilator properties

  • room_temperature
  • outdoor_temperature
  • available fan_speeds
  • fan_speed
  • actual_supply_fan_speed
  • actual_exhaust_fan_speed
  • available ventilation_modes
  • ventilation_mode
  • actual_ventilation_mode
  • total_energy_consumed
  • wifi_signal
  • presets
  • error_code
  • core_maintenance_required
  • filter_maintenance_required
  • night_purge_mode
  • room_co2_level

Energy consumption

The energy consumption reading is a little strange. The API returns a value of 1.8e6 for my unit. Judging by the scale the unit is either kJ or Wh. However, neither of them quite fits.

  • Total reading in kJ matches better what I would expect based on the energy reports in MELCloud.
  • In Wh the reading is 3-5 times greater than what I would expect, but the reading is increasing at a rate that seems to match energy reports in MELCloud.

Here are couple of readings with monthly reported usage as reference:

  • 2020-01-04T23:42:00+02:00 - 1820400, 28.5 kWh
  • 2020-01-05T09:44:00+02:00 - 1821300, 29.4 kWh
  • 2020-01-05T10:49:00+02:00 - 1821500, 29.6 kWh

I'd say it's pretty clear that it is Wh and the total reading is not reflective of unit lifetime energy consumption. total_energy_consumed converts Wh to kWh.

Write

Writes are applied after a debounce and update the local state once completed. The physical device does not register the changes immediately due to the 60 second polling interval.

Writable properties are:

  • power

Air-to-air heat pump write

  • target_temperature
  • operation_mode
  • fan_speed
  • vane_horizontal
  • vane_vertical

There's weird behavior associated with the horizontal vane swing. Toggling it on will also toggle vertical swing on and the horizontal swing has to be disabled before vertical vanes can be adjusted to any other position. This behavior can be replicated using the MELCloud user inteface.

Air-to-water heat pump write

  • target_tank_temperature
  • operation_mode
  • zone_1_target_temperature
  • zone_2_target_tempeature

Zone target temperatures can also be set via the Zone object returned by zones property on AtwDevice.

Energy recovery ventilator write

  • ventilation_mode
  • fan_speed

Example usage

import aiohttp
import asyncio
import pymelcloud


async def main():

    async with aiohttp.ClientSession() as session:
        # call the login method with the session
        token = await pymelcloud.login("my@example.com", "mysecretpassword", session=session)

        # lookup the device
        devices = await pymelcloud.get_devices(token, session=session)
        device = devices[pymelcloud.DEVICE_TYPE_ATW][0]

        # perform logic on the device
        await device.update()

        print(device.name)
        await session.close()

loop = asyncio.get_event_loop()
loop.run_until_complete(main())

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

python_melcloud-0.1.3.tar.gz (19.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

python_melcloud-0.1.3-py3-none-any.whl (19.5 kB view details)

Uploaded Python 3

File details

Details for the file python_melcloud-0.1.3.tar.gz.

File metadata

  • Download URL: python_melcloud-0.1.3.tar.gz
  • Upload date:
  • Size: 19.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for python_melcloud-0.1.3.tar.gz
Algorithm Hash digest
SHA256 5f0ae9908ab5b70f9be9d8d795b41379d9cab0c1e16e7ad48d54a6d150bc7c2f
MD5 1e93cc36094054358b0d467efd2a2b44
BLAKE2b-256 53b829ee764ed08f40108702f095dbcbaf68377449b335420c62f6c5c7a1b483

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_melcloud-0.1.3.tar.gz:

Publisher: release.yaml on erwindouna/python-melcloud

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file python_melcloud-0.1.3-py3-none-any.whl.

File metadata

File hashes

Hashes for python_melcloud-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 b1208dfa62183eb03c7434153e29197ba1d153386c17688a89c4bae07ecbeca1
MD5 681299a626b48c9835efee50f1e4336c
BLAKE2b-256 5dc5b2d7484141fcda18c461515a8152ef21f560c8d806866f78c03ceb6c2386

See more details on using hashes here.

Provenance

The following attestation bundles were made for python_melcloud-0.1.3-py3-none-any.whl:

Publisher: release.yaml on erwindouna/python-melcloud

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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