From d9b4e39a69f4f70b92f4282e1ac7a11eefce21c4 Mon Sep 17 00:00:00 2001 From: bahmcloud Date: Sun, 15 Feb 2026 21:29:56 +0100 Subject: [PATCH] Add relative color temp control --- .idea/PROJECT_STATE.md | 3 ++- CHANGELOG.md | 3 +++ README.md | 4 ++-- custom_components/ha_knx_bridge/bridge.py | 8 ++++---- custom_components/ha_knx_bridge/config_flow.py | 12 ++++++------ custom_components/ha_knx_bridge/manifest.json | 2 +- custom_components/ha_knx_bridge/strings.json | 6 +++--- custom_components/ha_knx_bridge/translations/ar.json | 4 ++-- custom_components/ha_knx_bridge/translations/bg.json | 4 ++-- custom_components/ha_knx_bridge/translations/ca.json | 4 ++-- custom_components/ha_knx_bridge/translations/cs.json | 4 ++-- custom_components/ha_knx_bridge/translations/da.json | 4 ++-- custom_components/ha_knx_bridge/translations/de.json | 4 ++-- custom_components/ha_knx_bridge/translations/el.json | 4 ++-- custom_components/ha_knx_bridge/translations/en.json | 4 ++-- custom_components/ha_knx_bridge/translations/es.json | 4 ++-- custom_components/ha_knx_bridge/translations/et.json | 4 ++-- custom_components/ha_knx_bridge/translations/fi.json | 4 ++-- custom_components/ha_knx_bridge/translations/fr.json | 4 ++-- custom_components/ha_knx_bridge/translations/he.json | 4 ++-- custom_components/ha_knx_bridge/translations/hi.json | 4 ++-- custom_components/ha_knx_bridge/translations/hr.json | 4 ++-- custom_components/ha_knx_bridge/translations/hu.json | 4 ++-- custom_components/ha_knx_bridge/translations/id.json | 4 ++-- custom_components/ha_knx_bridge/translations/is.json | 4 ++-- custom_components/ha_knx_bridge/translations/it.json | 4 ++-- custom_components/ha_knx_bridge/translations/ja.json | 4 ++-- custom_components/ha_knx_bridge/translations/ko.json | 4 ++-- custom_components/ha_knx_bridge/translations/lt.json | 4 ++-- custom_components/ha_knx_bridge/translations/lv.json | 4 ++-- custom_components/ha_knx_bridge/translations/nb.json | 4 ++-- custom_components/ha_knx_bridge/translations/nl.json | 4 ++-- custom_components/ha_knx_bridge/translations/pl.json | 4 ++-- .../ha_knx_bridge/translations/pt-BR.json | 4 ++-- custom_components/ha_knx_bridge/translations/pt.json | 4 ++-- custom_components/ha_knx_bridge/translations/ro.json | 4 ++-- custom_components/ha_knx_bridge/translations/ru.json | 4 ++-- custom_components/ha_knx_bridge/translations/sk.json | 4 ++-- custom_components/ha_knx_bridge/translations/sl.json | 4 ++-- custom_components/ha_knx_bridge/translations/sv.json | 4 ++-- custom_components/ha_knx_bridge/translations/th.json | 4 ++-- custom_components/ha_knx_bridge/translations/tr.json | 4 ++-- custom_components/ha_knx_bridge/translations/uk.json | 4 ++-- custom_components/ha_knx_bridge/translations/vi.json | 4 ++-- .../ha_knx_bridge/translations/zh-Hans.json | 4 ++-- .../ha_knx_bridge/translations/zh-Hant.json | 4 ++-- 46 files changed, 99 insertions(+), 95 deletions(-) diff --git a/.idea/PROJECT_STATE.md b/.idea/PROJECT_STATE.md index c005b46..7635762 100644 --- a/.idea/PROJECT_STATE.md +++ b/.idea/PROJECT_STATE.md @@ -45,7 +45,8 @@ Completed: - Relative dimming step mapping tuned to avoid on/off jumps. - Relative dimming now repeats steps until a stop telegram is received. - Relative color temperature steps (DPT 3.007) added for lights. -- Project version set to 0.0.27 and `CHANGELOG.md` maintained. +- Relative color temperature control wired into light schema, UI order adjusted, and KNX color temperature types aligned. +- Project version set to 0.0.28 and `CHANGELOG.md` maintained. Files created: - `custom_components/ha_knx_bridge/__init__.py` diff --git a/CHANGELOG.md b/CHANGELOG.md index b7edcf7..286bc25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 0.0.28 - 2026-02-15 +- Add relative color temperature control (DPT 3.007), reorder relative dimming field in UI, and align color temperature KNX types. + ## 0.0.27 - 2026-02-15 - Add optional relative color temperature address (DPT 3.007) for lights. diff --git a/README.md b/README.md index 0faf409..60cd780 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ Notes: - Relative dimming (DPT 3.007) maps KNX step values to small `brightness_step_pct` changes in Home Assistant. - For relative dimming, the bridge repeats steps until a KNX stop telegram (0 or 8) is received. - Relative color temperature (DPT 3.007) adjusts Kelvin in the same start/stop pattern. -- Color temperature mode must match the KNX telegram DPT: `relative` for 5.001, `absolute` for 7.600, `absolute_float` for DPT 9. +- Color temperature mode must match the KNX telegram DPT: `relative` for 5.001, `absolute` for 7.600 (2-byte unsigned), `absolute_float` for DPT 9 (2-byte float). ## Notes - For DPT 1.008 (Up/Down), the bridge treats `0 = Up/Open` and `1 = Down/Close`. @@ -112,5 +112,5 @@ Notes: - Advanced DPT mapping options and inversion settings. ## Versioning and Releases -- Current version: 0.0.27 +- Current version: 0.0.28 - `CHANGELOG.md` lists versions with the newest entries at the top. diff --git a/custom_components/ha_knx_bridge/bridge.py b/custom_components/ha_knx_bridge/bridge.py index 51a2abb..51629da 100644 --- a/custom_components/ha_knx_bridge/bridge.py +++ b/custom_components/ha_knx_bridge/bridge.py @@ -1167,7 +1167,7 @@ class BridgeManager: await self._call_light_service( port.entity_id, "turn_on", - {"color_temp": _kelvin_to_mireds(kelvin)}, + {ATTR_COLOR_TEMP_KELVIN: int(round(kelvin))}, ) return @@ -1477,7 +1477,7 @@ class BridgeManager: await self._call_light_service( port.entity_id, "turn_on", - {"color_temp": _kelvin_to_mireds(next_kelvin)}, + {ATTR_COLOR_TEMP_KELVIN: int(round(next_kelvin))}, ) await asyncio.sleep(0.3) @@ -1740,8 +1740,8 @@ def _color_temperature_payload( percent = (kelvin - min_kelvin) / (max_kelvin - min_kelvin) * 100 return int(round(_clamp_percent(int(round(percent))))), "percent" if port.color_temperature_mode == "absolute_float": - return float(kelvin), "9" - return int(round(kelvin)), "7.600" + return float(kelvin), "2byte_float" + return int(round(kelvin)), "2byte_unsigned" def _color_temperature_from_value( diff --git a/custom_components/ha_knx_bridge/config_flow.py b/custom_components/ha_knx_bridge/config_flow.py index a30365c..dc4d9e3 100644 --- a/custom_components/ha_knx_bridge/config_flow.py +++ b/custom_components/ha_knx_bridge/config_flow.py @@ -636,6 +636,12 @@ def _light_schema(defaults: dict | None = None) -> vol.Schema: ): selector.TextSelector( selector.TextSelectorConfig(type="text") ), + vol.Optional( + CONF_LIGHT_RELATIVE_DIMMING_ADDRESS, + default=defaults.get(CONF_LIGHT_RELATIVE_DIMMING_ADDRESS, ""), + ): selector.TextSelector( + selector.TextSelectorConfig(type="text") + ), vol.Optional( CONF_LIGHT_BRIGHTNESS_STATE_ADDRESS, default=defaults.get(CONF_LIGHT_BRIGHTNESS_STATE_ADDRESS, ""), @@ -648,12 +654,6 @@ def _light_schema(defaults: dict | None = None) -> vol.Schema: defaults.get(_invert_out_key(CONF_LIGHT_BRIGHTNESS_STATE_ADDRESS)) ), ): selector.BooleanSelector(), - vol.Optional( - CONF_LIGHT_RELATIVE_DIMMING_ADDRESS, - default=defaults.get(CONF_LIGHT_RELATIVE_DIMMING_ADDRESS, ""), - ): selector.TextSelector( - selector.TextSelectorConfig(type="text") - ), vol.Optional( CONF_LIGHT_COLOR_ADDRESS, default=defaults.get(CONF_LIGHT_COLOR_ADDRESS, ""), diff --git a/custom_components/ha_knx_bridge/manifest.json b/custom_components/ha_knx_bridge/manifest.json index 1de976f..88177c4 100644 --- a/custom_components/ha_knx_bridge/manifest.json +++ b/custom_components/ha_knx_bridge/manifest.json @@ -1,7 +1,7 @@ { "domain": "ha_knx_bridge", "name": "HA KNX Bridge", - "version": "0.0.27", + "version": "0.0.28", "config_flow": true, "documentation": "https://github.com/bahmcloud/HA-KNX-Bridge", "issue_tracker": "https://github.com/bahmcloud/HA-KNX-Bridge/issues", diff --git a/custom_components/ha_knx_bridge/strings.json b/custom_components/ha_knx_bridge/strings.json index 29896c0..d6b5f21 100644 --- a/custom_components/ha_knx_bridge/strings.json +++ b/custom_components/ha_knx_bridge/strings.json @@ -77,9 +77,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -180,9 +180,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -291,9 +291,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/ar.json b/custom_components/ha_knx_bridge/translations/ar.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/ar.json +++ b/custom_components/ha_knx_bridge/translations/ar.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/bg.json b/custom_components/ha_knx_bridge/translations/bg.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/bg.json +++ b/custom_components/ha_knx_bridge/translations/bg.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/ca.json b/custom_components/ha_knx_bridge/translations/ca.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/ca.json +++ b/custom_components/ha_knx_bridge/translations/ca.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/cs.json b/custom_components/ha_knx_bridge/translations/cs.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/cs.json +++ b/custom_components/ha_knx_bridge/translations/cs.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/da.json b/custom_components/ha_knx_bridge/translations/da.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/da.json +++ b/custom_components/ha_knx_bridge/translations/da.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/de.json b/custom_components/ha_knx_bridge/translations/de.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/de.json +++ b/custom_components/ha_knx_bridge/translations/de.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/el.json b/custom_components/ha_knx_bridge/translations/el.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/el.json +++ b/custom_components/ha_knx_bridge/translations/el.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/en.json b/custom_components/ha_knx_bridge/translations/en.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/en.json +++ b/custom_components/ha_knx_bridge/translations/en.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/es.json b/custom_components/ha_knx_bridge/translations/es.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/es.json +++ b/custom_components/ha_knx_bridge/translations/es.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/et.json b/custom_components/ha_knx_bridge/translations/et.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/et.json +++ b/custom_components/ha_knx_bridge/translations/et.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/fi.json b/custom_components/ha_knx_bridge/translations/fi.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/fi.json +++ b/custom_components/ha_knx_bridge/translations/fi.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/fr.json b/custom_components/ha_knx_bridge/translations/fr.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/fr.json +++ b/custom_components/ha_knx_bridge/translations/fr.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/he.json b/custom_components/ha_knx_bridge/translations/he.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/he.json +++ b/custom_components/ha_knx_bridge/translations/he.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/hi.json b/custom_components/ha_knx_bridge/translations/hi.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/hi.json +++ b/custom_components/ha_knx_bridge/translations/hi.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/hr.json b/custom_components/ha_knx_bridge/translations/hr.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/hr.json +++ b/custom_components/ha_knx_bridge/translations/hr.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/hu.json b/custom_components/ha_knx_bridge/translations/hu.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/hu.json +++ b/custom_components/ha_knx_bridge/translations/hu.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/id.json b/custom_components/ha_knx_bridge/translations/id.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/id.json +++ b/custom_components/ha_knx_bridge/translations/id.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/is.json b/custom_components/ha_knx_bridge/translations/is.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/is.json +++ b/custom_components/ha_knx_bridge/translations/is.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/it.json b/custom_components/ha_knx_bridge/translations/it.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/it.json +++ b/custom_components/ha_knx_bridge/translations/it.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/ja.json b/custom_components/ha_knx_bridge/translations/ja.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/ja.json +++ b/custom_components/ha_knx_bridge/translations/ja.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/ko.json b/custom_components/ha_knx_bridge/translations/ko.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/ko.json +++ b/custom_components/ha_knx_bridge/translations/ko.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/lt.json b/custom_components/ha_knx_bridge/translations/lt.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/lt.json +++ b/custom_components/ha_knx_bridge/translations/lt.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/lv.json b/custom_components/ha_knx_bridge/translations/lv.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/lv.json +++ b/custom_components/ha_knx_bridge/translations/lv.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/nb.json b/custom_components/ha_knx_bridge/translations/nb.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/nb.json +++ b/custom_components/ha_knx_bridge/translations/nb.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/nl.json b/custom_components/ha_knx_bridge/translations/nl.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/nl.json +++ b/custom_components/ha_knx_bridge/translations/nl.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/pl.json b/custom_components/ha_knx_bridge/translations/pl.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/pl.json +++ b/custom_components/ha_knx_bridge/translations/pl.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/pt-BR.json b/custom_components/ha_knx_bridge/translations/pt-BR.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/pt-BR.json +++ b/custom_components/ha_knx_bridge/translations/pt-BR.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/pt.json b/custom_components/ha_knx_bridge/translations/pt.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/pt.json +++ b/custom_components/ha_knx_bridge/translations/pt.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/ro.json b/custom_components/ha_knx_bridge/translations/ro.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/ro.json +++ b/custom_components/ha_knx_bridge/translations/ro.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/ru.json b/custom_components/ha_knx_bridge/translations/ru.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/ru.json +++ b/custom_components/ha_knx_bridge/translations/ru.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/sk.json b/custom_components/ha_knx_bridge/translations/sk.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/sk.json +++ b/custom_components/ha_knx_bridge/translations/sk.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/sl.json b/custom_components/ha_knx_bridge/translations/sl.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/sl.json +++ b/custom_components/ha_knx_bridge/translations/sl.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/sv.json b/custom_components/ha_knx_bridge/translations/sv.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/sv.json +++ b/custom_components/ha_knx_bridge/translations/sv.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/th.json b/custom_components/ha_knx_bridge/translations/th.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/th.json +++ b/custom_components/ha_knx_bridge/translations/th.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/tr.json b/custom_components/ha_knx_bridge/translations/tr.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/tr.json +++ b/custom_components/ha_knx_bridge/translations/tr.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/uk.json b/custom_components/ha_knx_bridge/translations/uk.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/uk.json +++ b/custom_components/ha_knx_bridge/translations/uk.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/vi.json b/custom_components/ha_knx_bridge/translations/vi.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/vi.json +++ b/custom_components/ha_knx_bridge/translations/vi.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/zh-Hans.json b/custom_components/ha_knx_bridge/translations/zh-Hans.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/zh-Hans.json +++ b/custom_components/ha_knx_bridge/translations/zh-Hans.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", diff --git a/custom_components/ha_knx_bridge/translations/zh-Hant.json b/custom_components/ha_knx_bridge/translations/zh-Hant.json index 5b3289c..85f8724 100644 --- a/custom_components/ha_knx_bridge/translations/zh-Hant.json +++ b/custom_components/ha_knx_bridge/translations/zh-Hant.json @@ -60,9 +60,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)", @@ -163,9 +163,9 @@ "light_state_address": "On/off state address (DPT 1.001)", "light_state_address_invert_outgoing": "Invert outgoing", "brightness_address": "Brightness address (DPT 5.001)", + "relative_dimming_address": "Relative dimming address (DPT 3.007)", "brightness_state_address": "Brightness state address (DPT 5.001)", "brightness_state_address_invert_outgoing": "Invert outgoing", - "relative_dimming_address": "Relative dimming address (DPT 3.007)", "color_address": "RGB color address (DPT 232.600)", "color_state_address": "RGB color state address (DPT 232.600)", "rgbw_address": "RGBW color address (DPT 251.600)",