Skip to content

Releases: ankohanse/hass-studer-xcom

v2024.11.2

15 Nov 04:22
Compare
Choose a tag to compare

Add better view and edit support for params with unit "Seconds" which represents seconds since 1 January 1970 at 00:00.
This applies to RCC param 5002 (Date).

Add better view and edit support for params with unit "Minutes", which represents minutes since midnight, 0=00:00 to 1440=24:00.
This applies to XT param 1206 (Start hour AUX1), 1207 (End hour AUX1) and many others.

Note:
This change allows to create an automation that will periodically correct the Studer system time. This is needed for some (off-grid) system, where the time slowly shifts byabout 1 minute per month.
Below is an example for such an automation:

alias: Studer RCC Sync Time
description: ""
triggers:
  - trigger: time_pattern
    hours: "0"
    minutes: "0"
    seconds: "0"
conditions: []
actions:
  - action: datetime.set_value
    metadata: {}
    data:
      datetime: "{{ now() }}"
    target:
      entity_id: datetime.studer_4001_rcc_5002
mode: single

v2024.11.1

07 Nov 01:29
28f51ec
Compare
Choose a tag to compare

Improve handling of cached modified parameter values

v2024.10.4

11 Oct 03:58
Compare
Choose a tag to compare

Improve handling of float value precision

v2024.10.3

10 Oct 07:47
Compare
Choose a tag to compare

Discover Moxa Web Config url as very first step in the config flow.
This allows us to always show the discovered url as link in the page where the port for the Xcom-LAN/Moxa connection is configured.

v2024.10.2

08 Oct 22:16
Compare
Choose a tag to compare

Split readme to create sepeare document describing Xcom-LAN configuration
Update images in readme to reflect recent changes.

v2024.10.1

07 Oct 04:56
Compare
Choose a tag to compare

Implement User Interface to support in choosing param and info numbers via a menu.
Also allow to add and delete (multiple) param and info numbers by directly typing them.

v2024.09.5

20 Sep 02:09
Compare
Choose a tag to compare

Improve the setup wizard:

  • Show url's to the Moxa Web Config of connection to Xcom client fails
  • Show url to readme that describes Moxa Web Config prerequisites
  • Show url to Studer Parameter and Info numbers list
  • Fix issue where old configured numbers were lost during reconfigure

v2024.09.4

13 Sep 07:12
Compare
Choose a tag to compare

Bump aioxcom to 1.2.0

v2024.09.3

06 Sep 03:35
Compare
Choose a tag to compare

Move discovery to library
Retrieve device version info
Use async file read

v2024.09.1

03 Sep 01:26
Compare
Choose a tag to compare

General improvements.
Move xcom specific code to a pypi library.