Skip to main content

Python client for Eurotronic GmbH BLE Comet (and rebranded) Radiator TRVs.

Project description

CometBlue

GitHub version PyPI version

eurotronic-cometblue-ha is a library to communicate with your Eurotronic GmbH Comet Blue radiator controllers.

This library is a fork of zero-udo/eurotronic-cometblue with changes specifically for using it in a Home Assistant custom component. For changes, see zero-udo/eurotronic-cometblue#8.

The device supports up to four programmable schedules for each weekday. Longer periods can be set as holidays. There are 8 holiday slots available.

This library is based on the work of zero-udo. It depends on bleak and bleak-retry-connector and runs therefore on Linux, Windows and macOS in addition to the Home Assistant component.

Compatible devices

Comet Blue radiator controllers are sold under different names:

"Manufacturer" Model Tested
Eurotronic Comet Blue :heavy_check_mark:
Sygonix HT100 BT :heavy_check_mark:
Xavax Hama :grey_question:
Silvercrest RT2000BT :grey_question:

This library should work with all listed radiator controllers, but is only tested with a Sygonix HT100BT which is the only one I own.

Thanks to @FloSchmidt for checking the Eurotronic Comet Blue

If your device is not listed here but looks similar (or you know it is a rebranded Comet Blue), or if you are able to test this library with another device - let me know your results.

Installation

Just

pip install eurotronic-cometblue

Usage

Import the library and instantiate an object.

Parameters are the device MAC-Address and the (optional) PIN. Depending on your connection quality you can specify a longer or shorter discovery duration.

Parameter required? default value
mac yes None
pin no 0
timeout no 2
from cometblue import CometBlue

blue = CometBlue(mac="00:00:00:00:00:00", pin=123456, timeout=2)

or

from cometblue import AsyncCometBlue

blue = AsyncCometBlue(mac="00:00:00:00:00:00", pin=123456, timeout=2)

for an asynchronous client.

The following (synchronous) methods are available, for the asynchronous variants add _async:

Method Parameter Return Value
get_temperature None dict with
  • 'currentTemp'
  • 'manualTemp'
  • 'targetTempLow'
  • 'targetTempHigh'
  • 'tempOffset'
  • 'windowOpen'
  • 'windowOpenMinutes'
set_temperature dict with the same values as get_temperature. Not all values have to be set. None
get_battery None int - Battery value in percent
get_datetime None datetime - currently set date and time of the device. Used for schedules
set_datetime An optional datetime-object. The current date and time is used if the parameter is omitted. None
get_weekday A Weekday-Enum value eg. Weekday.MONDAY dict with start# and end# (# = 1-4) keys and the time as HH:mm formatted strs as values
set_weekday A Weekday-Enum value eg. Weekday.MONDAY and a dict containing start# and end# (# = 1-4) as keys and HH:mm formatted strs as values None
get_holiday int 1-8 to select the holiday period dict with
  • 'start': datetime
  • 'end': datetime
  • 'temperature': float
set_holiday dict with the same values as get_holidays return value. None
get_manual_mode None True if manual mode is set.
False if the schedule is used
set_manual_mode boolean - True if manual mode should be used. False if the schedule should be used None
get_multiple Retrieves multiple values specified in a list. Valid values are:
  • 'temperature'
  • 'battery'
  • 'datetime'
  • 'holiday#' # = 1-8 or
  • 'holidays' (retrieves holiday1-8)
  • 'monday'
  • 'tuesday'
  • etc...
  • 'weekdays' (retrieves all weekdays)
The values as a dict in the format defined by the appropriate methods
discover timeout: int, timeout used for discovery MAC-addresses of all discovery Comet Blue devices

:warning: the device applies set values when the connection is closed, not directly after setting them

Examples

Use CometBlueAsync and [method_name]_async for asynchronous handling.

Instantiating and retrieving the current temperature

from cometblue import CometBlue

blue = CometBlue("00:00:00:00:00:00", 123456)
blue.connect()
temp = blue.get_temperature()
print(temp)
blue.disconnect()

or

from cometblue import CometBlue

with CometBlue("00:00:00:00:00:00", 123456) as blue:
    temp = blue.get_temperature()
    print(temp)

results in

{
    'currentTemp': 24.5,
    'manualTemp': 16.0,
    'targetTempLow': 16.0,
    'targetTempHigh': 20.0,
    'tempOffset': 0.0,
    'windowOpen': True,
    'windowOpenMinutes': 10
}

Setting a new schedule

Setting a new schedule for Mondays with two heating periods:

  • Period 1 from 06:00 to 08:00

  • Period 2 from 16:00 to 22:00

All unmentioned periods (periods 3 and 4) will be disabled (start and end set to 00:00).

Set periods will be consolidated, meaning setting only period 3 via this method will write period 1 and disable the others.

To use this schedule, make sure to disable manual mode.

blue.set_weekday(Weekday.MONDAY,
                 {"start1": "06:00", "end1": "08:00",
                  "start2": "16:00", "end2": "22:00"})
blue.set_manual_mode(False)

Setting a holiday

Setting a holiday (slot 2) from 26th December 2020 18:00 till 5th January 2021 14:00 and keep the temperature at 16.5 °C

blue.set_holiday(2, {"start": datetime(2020, 12, 26, 18),
                     "end": datetime(2021, 1, 5, 14),
                     "temperature": 16.5})

Credits:

  • Thorsten Tränker for his reverse engineering work done here
  • rikroe for the switch to bleak

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

eurotronic_cometblue_ha-1.3.0.tar.gz (14.4 kB view details)

Uploaded Source

Built Distribution

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

eurotronic_cometblue_ha-1.3.0-py3-none-any.whl (12.3 kB view details)

Uploaded Python 3

File details

Details for the file eurotronic_cometblue_ha-1.3.0.tar.gz.

File metadata

  • Download URL: eurotronic_cometblue_ha-1.3.0.tar.gz
  • Upload date:
  • Size: 14.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for eurotronic_cometblue_ha-1.3.0.tar.gz
Algorithm Hash digest
SHA256 616339e602bfedf111bb921b6b5ea32c4b61f3d7aab07955b9e46b61837ba602
MD5 215bdd689dd6a4e023fa63c17f7ac628
BLAKE2b-256 947f878f31d671697114eb3feef61f708e13ccb4216a02dc16f6baba0c348761

See more details on using hashes here.

Provenance

The following attestation bundles were made for eurotronic_cometblue_ha-1.3.0.tar.gz:

Publisher: publish-to-pypi.yml on rikroe/eurotronic-cometblue

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

File details

Details for the file eurotronic_cometblue_ha-1.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for eurotronic_cometblue_ha-1.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 663cc684b42e1563b68861daff98b9fb581e6a81033bdb5754e6493c459de8c9
MD5 6301bac63273686ed8d96c85692c1964
BLAKE2b-256 c9230cf6ca05f2a133b80907b79085705be61eeab0da94e58ae25e914afea942

See more details on using hashes here.

Provenance

The following attestation bundles were made for eurotronic_cometblue_ha-1.3.0-py3-none-any.whl:

Publisher: publish-to-pypi.yml on rikroe/eurotronic-cometblue

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