Skip to content

v2024.11.2

Choose a tag to compare

@ankohanse ankohanse released this 15 Nov 04:22

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