Skip to main content

Python client for Unisenza Plus

Project description

Unisenza Plus is an IoT family that connects smart thermostats and other devices manufactured by Purmo to a cloud service via the Unisenza Plus Gateway. pyupgw is a python client for that cloud service.

Currently, only the smart thermostats are supported.

Installation

Install the library using pip or your favorite package management tool:

$ pip install pyupgw

Usage

The following sample program illustrates how to use the client

import asyncio
from pyupgw import create_client, Client, Device

def report_changes(device: Device, changes: dict):
    print(f"{device.get_name()} has new changes:")
    for key, value in changes.items():
        print(f"- {key}: {value}")

 async def main():
     async with create_client("username", "password") as client:

         # Refresh the device state from the server.
         # The coroutine completes when the new state is available.
         await client.refresh_all_devices()

         print("Gateways:")
         for gateway in client.get_gateways():
             print(f"- {gateway.get_name()}")

         print("Devices:")
         for gateway, device in client.get_devices():
             print(
                 f"- {device.get_name()},",
                 f"target temperature: {device.get_target_temperature()},",
                 f"current temperature: {device.get_current_temperature()}",
             )

         device = client.get_gateways()[0].get_children()[0]

         # Send the updated temperature to the server.
         # The coroutine completes when the server accepts the change,
         # but hasn't necessarily applied it yet.
         # You can subscribe to get notified when the change is eventually applied.
         device.subscribe(report_changes)
         await device.update_target_temperature(20.0)
         await asyncio.sleep(10)

 if __name__ == "__main__":
     asyncio.run(main())

The underlying API is based on MQTT and totally asynchronous. The library automatically synchronizes when fetching fresh state for the devices, but the same is not true for the update_X() calls. The server may not even report some updates, for instance when setting the target temperature to the same value it already has.

The sample program naively uses asyncio.sleep() to ensure it has time to receive the notification about the newly applied temperature value. An actual program would do something more efficient, like update GUI elements or dispatch messages to an event loop in response to the callbacks.

Command-line interface

The package contains a command-line interface. To install the dependencies, include the cli extras:

$ pip install pyupgw[cli]
$ pyupgw --help

Goals

The main reason for this project is to (eventually) develop Home Assistant integration for the Unisenza Plus.

The client library is intended to give a robust and simplified interface to the most important functionality of the smart thermostats. By hiding complexity it trades off some degree of control.

The library only supports a subset of features of the devices. New features may be added on a case-by-case basis.

Non-goals

The author of the library is in no way affiliated with the company Purmo, and not working using official API documentation. The code is based on experimentation with the equipment at hand, and will likely never cover all the possible features of the products.

The Unisenza Plus service is based on the UleEco IoT platform. Hence, the package might work with some modifications with other solutions based on the platform. However, since the author does not have official documentation, this is not guaranteed and a universal UleEco client is not in the scope of this project for the time being.

The intended use of the library is developing scripts and other automation for the Purmo thermostats. The underlying API contains data specifically intended to be consumed by the official Unisenza Plus app (related to presentation and notifications, for instance). There is no intention to support those features in this library.

Contributing

This project is still in its early stages. Please open an issue or PR in the Github repository if you want to get in touch with questions or contributions.

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

pyupgw-0.8.1.tar.gz (34.7 kB view details)

Uploaded Source

Built Distribution

pyupgw-0.8.1-py3-none-any.whl (22.1 kB view details)

Uploaded Python 3

File details

Details for the file pyupgw-0.8.1.tar.gz.

File metadata

  • Download URL: pyupgw-0.8.1.tar.gz
  • Upload date:
  • Size: 34.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.31.0

File hashes

Hashes for pyupgw-0.8.1.tar.gz
Algorithm Hash digest
SHA256 3c0266d664082fceb18f72d84f38a3364d43decf77d3490b53013bc59b343389
MD5 9bc48fa2e4295f5839c60fcf514e96a3
BLAKE2b-256 671b1cc273136bd3c30a30bb0aee82b334dc3d7d707507d60397663699194662

See more details on using hashes here.

File details

Details for the file pyupgw-0.8.1-py3-none-any.whl.

File metadata

  • Download URL: pyupgw-0.8.1-py3-none-any.whl
  • Upload date:
  • Size: 22.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.31.0

File hashes

Hashes for pyupgw-0.8.1-py3-none-any.whl
Algorithm Hash digest
SHA256 7837e3650b19c61404ee54227e966c4ea9c627e90f861b94356acdd63831e5ff
MD5 6bb08bb2e721705a0fc27268c319681f
BLAKE2b-256 2d2be2a19b73a8de33ee01f489bcb2ad14ee9a17864f18051df99102f6c8780d

See more details on using hashes here.

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