mirror of
https://github.com/bahmcloud/HA-KNX-Bridge.git
synced 2026-04-06 18:01:14 +00:00
Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 221454d5e8 | |||
| 69267f7c0f | |||
| 91f51cb414 | |||
| 1eb283112c | |||
| 60b436f79f | |||
| d9b4e39a69 | |||
| 9825e748cf | |||
| a9fb58c87a | |||
| c8d05acae9 | |||
| 082ce93334 | |||
| 0afbcc4f70 |
16
.idea/PROJECT_STATE.md
generated
16
.idea/PROJECT_STATE.md
generated
@@ -10,7 +10,7 @@ The integration should:
|
|||||||
- Auto-select appropriate KNX DPTs and request only the group addresses needed.
|
- Auto-select appropriate KNX DPTs and request only the group addresses needed.
|
||||||
- Ignore missing/empty group addresses without errors.
|
- Ignore missing/empty group addresses without errors.
|
||||||
|
|
||||||
Target compatibility: Home Assistant 2025.12 with forward compatibility to 2026.2.
|
Target compatibility: Home Assistant 2025.12 with forward compatibility to 2026.03.
|
||||||
|
|
||||||
Project rules:
|
Project rules:
|
||||||
- Keep `README.md` updated for user-relevant changes after each new version.
|
- Keep `README.md` updated for user-relevant changes after each new version.
|
||||||
@@ -18,7 +18,7 @@ Project rules:
|
|||||||
- Releases are created only when explicitly requested.
|
- Releases are created only when explicitly requested.
|
||||||
- Version number must match everywhere it is referenced (manifest, changelog, README, HACS if used).
|
- Version number must match everywhere it is referenced (manifest, changelog, README, HACS if used).
|
||||||
|
|
||||||
## Current State (as of 2026-02-15)
|
## Current State (as of 2026-03-09)
|
||||||
Completed:
|
Completed:
|
||||||
- Repo initialized with `main` branch and pushed to GitHub.
|
- Repo initialized with `main` branch and pushed to GitHub.
|
||||||
- HACS metadata (`hacs.json`) and base integration scaffold created.
|
- HACS metadata (`hacs.json`) and base integration scaffold created.
|
||||||
@@ -40,7 +40,17 @@ Completed:
|
|||||||
- Incoming invert toggles removed; outgoing inversion remains only for state addresses.
|
- Incoming invert toggles removed; outgoing inversion remains only for state addresses.
|
||||||
- Light port support added with full KNX color/temperature mappings and individual color channels.
|
- Light port support added with full KNX color/temperature mappings and individual color channels.
|
||||||
- Light port keys renamed to avoid conflicts; outgoing updates now only target light state addresses.
|
- Light port keys renamed to avoid conflicts; outgoing updates now only target light state addresses.
|
||||||
- Project version set to 0.0.22 and `CHANGELOG.md` maintained.
|
- Light port optional relative dimming address (DPT 3.007) added.
|
||||||
|
- Light color temperature event type mapping and relative dimming decoding fixed.
|
||||||
|
- 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.
|
||||||
|
- Relative color temperature control wired into light schema, UI order adjusted, and KNX color temperature types aligned.
|
||||||
|
- Color temperature service calls now use mireds for better compatibility.
|
||||||
|
- Relative dimming/color temperature decoding improved for control/stepcode payloads.
|
||||||
|
- Relative dimming/CT now parse control strings from DPT 3.007 payloads and treat raw step values as percent steps (0/8 stop).
|
||||||
|
- Home Assistant 2026.03 compatibility fix: graceful fallback for removed `ATTR_COLOR_TEMP` import and color temperature service calls now use Kelvin.
|
||||||
|
- Project version set to 0.0.34 and `CHANGELOG.md` maintained.
|
||||||
|
|
||||||
Files created:
|
Files created:
|
||||||
- `custom_components/ha_knx_bridge/__init__.py`
|
- `custom_components/ha_knx_bridge/__init__.py`
|
||||||
|
|||||||
37
CHANGELOG.md
37
CHANGELOG.md
@@ -1,5 +1,42 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 0.0.34 - 2026-03-09
|
||||||
|
- Fix startup on Home Assistant 2026.03 by handling removed `ATTR_COLOR_TEMP` imports.
|
||||||
|
- Switch light color temperature service calls to `color_temp_kelvin`.
|
||||||
|
|
||||||
|
## 0.0.33 - 2026-02-15
|
||||||
|
- Parse control strings from DPT 3.007 payloads and use raw step values as percent steps (0/8 stop).
|
||||||
|
|
||||||
|
## 0.0.32 - 2026-02-15
|
||||||
|
- Treat DPT 3.007 step_code 0 as a start/stop toggle for relative dimming/CT and rely on raw payload parsing.
|
||||||
|
|
||||||
|
## 0.0.31 - 2026-02-15
|
||||||
|
- Treat DPT 3.007 step_code 0 as a single-step for relative dimming/CT and register control_dimming event types.
|
||||||
|
|
||||||
|
## 0.0.30 - 2026-02-15
|
||||||
|
- Improve relative dimming/color temperature decoding for control/stepcode payloads.
|
||||||
|
|
||||||
|
## 0.0.29 - 2026-02-15
|
||||||
|
- Use mired-based HA color temperature service calls for better device compatibility.
|
||||||
|
|
||||||
|
## 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.
|
||||||
|
|
||||||
|
## 0.0.26 - 2026-02-15
|
||||||
|
- Repeat relative dimming steps until a stop telegram is received.
|
||||||
|
|
||||||
|
## 0.0.25 - 2026-02-15
|
||||||
|
- Tune light relative dimming step mapping to avoid on/off jumps.
|
||||||
|
|
||||||
|
## 0.0.24 - 2026-02-15
|
||||||
|
- Fix light color temperature event type mapping and improve relative dimming decoding.
|
||||||
|
|
||||||
|
## 0.0.23 - 2026-02-15
|
||||||
|
- Add optional light relative dimming address (DPT 3.007).
|
||||||
|
|
||||||
## 0.0.22 - 2026-02-15
|
## 0.0.22 - 2026-02-15
|
||||||
- Fix light port key collisions and restrict outgoing updates to state addresses only.
|
- Fix light port key collisions and restrict outgoing updates to state addresses only.
|
||||||
|
|
||||||
|
|||||||
13
README.md
13
README.md
@@ -10,7 +10,7 @@ Current minimal scope:
|
|||||||
- Light port (KNX -> HA commands, HA state -> KNX)
|
- Light port (KNX -> HA commands, HA state -> KNX)
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
- Home Assistant 2025.12 or newer (tested for compatibility with 2026.2).
|
- Home Assistant 2025.12 or newer (tested for compatibility with 2026.03).
|
||||||
- The built-in KNX integration must be set up and running.
|
- The built-in KNX integration must be set up and running.
|
||||||
|
|
||||||
## Install (HACS)
|
## Install (HACS)
|
||||||
@@ -66,12 +66,19 @@ Only state addresses expose an `invert outgoing` toggle to flip KNX payloads.
|
|||||||
- `xyy_state_address` (DPT 242.600): KNX group address that receives HA XY color state.
|
- `xyy_state_address` (DPT 242.600): KNX group address that receives HA XY color state.
|
||||||
- `color_temperature_address` (DPT 5.001/7.600/9): KNX group address for color temperature commands.
|
- `color_temperature_address` (DPT 5.001/7.600/9): KNX group address for color temperature commands.
|
||||||
- `color_temperature_state_address` (DPT 5.001/7.600/9): KNX group address that receives HA color temperature state.
|
- `color_temperature_state_address` (DPT 5.001/7.600/9): KNX group address that receives HA color temperature state.
|
||||||
|
- `relative_color_temperature_address` (DPT 3.007): KNX group address for relative color temperature steps.
|
||||||
- `color_temperature_mode`: `relative` (DPT 5.001 percent), `absolute` (DPT 7.600 Kelvin), or `absolute_float` (DPT 9 Kelvin).
|
- `color_temperature_mode`: `relative` (DPT 5.001 percent), `absolute` (DPT 7.600 Kelvin), or `absolute_float` (DPT 9 Kelvin).
|
||||||
- `min_kelvin` / `max_kelvin`: Kelvin range used for `relative` color temperature mapping.
|
- `min_kelvin` / `max_kelvin`: Kelvin range used for `relative` color temperature mapping.
|
||||||
|
- `relative_dimming_address` (DPT 3.007): KNX group address for relative dimming steps.
|
||||||
- Individual colors (DPT 1.001 + 5.001): `red_*`, `green_*`, `blue_*`, `white_*` on/off and brightness addresses with matching state addresses.
|
- Individual colors (DPT 1.001 + 5.001): `red_*`, `green_*`, `blue_*`, `white_*` on/off and brightness addresses with matching state addresses.
|
||||||
|
|
||||||
Notes:
|
Notes:
|
||||||
- For XY color, the bridge sends the brightness as the Y (luminance) component.
|
- For XY color, the bridge sends the brightness as the Y (luminance) component.
|
||||||
|
- Relative dimming (DPT 3.007) maps KNX step values (control/stepcode) 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.
|
||||||
|
- Step values `1..7` dim down, `9..15` dim up, and `0/8` stop; the bridge uses the raw step value as the percent step size.
|
||||||
|
- 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). The bridge sends HA color temperature using `color_temp_kelvin`.
|
||||||
|
|
||||||
## Notes
|
## Notes
|
||||||
- For DPT 1.008 (Up/Down), the bridge treats `0 = Up/Open` and `1 = Down/Close`.
|
- For DPT 1.008 (Up/Down), the bridge treats `0 = Up/Open` and `1 = Down/Close`.
|
||||||
@@ -95,6 +102,8 @@ Notes:
|
|||||||
- Light `saturation_address` / `saturation_state_address`: DPT 5.001
|
- Light `saturation_address` / `saturation_state_address`: DPT 5.001
|
||||||
- Light `xyy_address` / `xyy_state_address`: DPT 242.600
|
- Light `xyy_address` / `xyy_state_address`: DPT 242.600
|
||||||
- Light `color_temperature_address` / `color_temperature_state_address`: DPT 5.001/7.600/9
|
- Light `color_temperature_address` / `color_temperature_state_address`: DPT 5.001/7.600/9
|
||||||
|
- Light `relative_dimming_address`: DPT 3.007
|
||||||
|
- Light `relative_color_temperature_address`: DPT 3.007
|
||||||
- Light `red_*`, `green_*`, `blue_*`, `white_*` brightness: DPT 5.001
|
- Light `red_*`, `green_*`, `blue_*`, `white_*` brightness: DPT 5.001
|
||||||
- Light `red_*`, `green_*`, `blue_*`, `white_*` on/off: DPT 1.001
|
- Light `red_*`, `green_*`, `blue_*`, `white_*` on/off: DPT 1.001
|
||||||
|
|
||||||
@@ -104,5 +113,5 @@ Notes:
|
|||||||
- Advanced DPT mapping options and inversion settings.
|
- Advanced DPT mapping options and inversion settings.
|
||||||
|
|
||||||
## Versioning and Releases
|
## Versioning and Releases
|
||||||
- Current version: 0.0.22
|
- Current version: 0.0.34
|
||||||
- `CHANGELOG.md` lists versions with the newest entries at the top.
|
- `CHANGELOG.md` lists versions with the newest entries at the top.
|
||||||
|
|||||||
@@ -1,13 +1,13 @@
|
|||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
from dataclasses import dataclass
|
from dataclasses import dataclass
|
||||||
|
import asyncio
|
||||||
import logging
|
import logging
|
||||||
from typing import Any
|
from typing import Any
|
||||||
|
|
||||||
from homeassistant.components.light import (
|
from homeassistant.components.light import (
|
||||||
ATTR_BRIGHTNESS,
|
ATTR_BRIGHTNESS,
|
||||||
ATTR_COLOR_MODE,
|
ATTR_COLOR_MODE,
|
||||||
ATTR_COLOR_TEMP,
|
|
||||||
ATTR_HS_COLOR,
|
ATTR_HS_COLOR,
|
||||||
ATTR_RGB_COLOR,
|
ATTR_RGB_COLOR,
|
||||||
ATTR_RGBW_COLOR,
|
ATTR_RGBW_COLOR,
|
||||||
@@ -43,6 +43,8 @@ from .const import (
|
|||||||
CONF_LIGHT_COLOR_TEMPERATURE_ADDRESS,
|
CONF_LIGHT_COLOR_TEMPERATURE_ADDRESS,
|
||||||
CONF_LIGHT_COLOR_TEMPERATURE_STATE_ADDRESS,
|
CONF_LIGHT_COLOR_TEMPERATURE_STATE_ADDRESS,
|
||||||
CONF_LIGHT_COLOR_TEMPERATURE_MODE,
|
CONF_LIGHT_COLOR_TEMPERATURE_MODE,
|
||||||
|
CONF_LIGHT_RELATIVE_COLOR_TEMPERATURE_ADDRESS,
|
||||||
|
CONF_LIGHT_RELATIVE_DIMMING_ADDRESS,
|
||||||
CONF_LIGHT_MIN_KELVIN,
|
CONF_LIGHT_MIN_KELVIN,
|
||||||
CONF_LIGHT_MAX_KELVIN,
|
CONF_LIGHT_MAX_KELVIN,
|
||||||
CONF_LIGHT_RED_ADDRESS,
|
CONF_LIGHT_RED_ADDRESS,
|
||||||
@@ -76,6 +78,11 @@ _LOGGER = logging.getLogger(__name__)
|
|||||||
|
|
||||||
KNX_DOMAIN = "knx"
|
KNX_DOMAIN = "knx"
|
||||||
|
|
||||||
|
try:
|
||||||
|
from homeassistant.components.light import ATTR_COLOR_TEMP
|
||||||
|
except ImportError: # pragma: no cover - fallback for newer HA
|
||||||
|
ATTR_COLOR_TEMP = "color_temp"
|
||||||
|
|
||||||
try:
|
try:
|
||||||
from homeassistant.components.light import ATTR_COLOR_TEMP_KELVIN
|
from homeassistant.components.light import ATTR_COLOR_TEMP_KELVIN
|
||||||
except ImportError: # pragma: no cover - fallback for older HA
|
except ImportError: # pragma: no cover - fallback for older HA
|
||||||
@@ -143,6 +150,8 @@ class LightPort:
|
|||||||
color_temperature_mode: str
|
color_temperature_mode: str
|
||||||
min_kelvin: int | None
|
min_kelvin: int | None
|
||||||
max_kelvin: int | None
|
max_kelvin: int | None
|
||||||
|
relative_color_temperature_address: str | None
|
||||||
|
relative_dimming_address: str | None
|
||||||
red_address: str | None
|
red_address: str | None
|
||||||
red_state_address: str | None
|
red_state_address: str | None
|
||||||
red_state_invert_outgoing: bool
|
red_state_invert_outgoing: bool
|
||||||
@@ -179,6 +188,8 @@ class BridgeManager:
|
|||||||
self._registered_addresses: list[tuple[str, str | None]] = []
|
self._registered_addresses: list[tuple[str, str | None]] = []
|
||||||
self._address_options: dict[str, AddressOptions] = {}
|
self._address_options: dict[str, AddressOptions] = {}
|
||||||
self._light_components: dict[str, dict[str, int]] = {}
|
self._light_components: dict[str, dict[str, int]] = {}
|
||||||
|
self._light_dimming_tasks: dict[str, asyncio.Task] = {}
|
||||||
|
self._light_ct_tasks: dict[str, asyncio.Task] = {}
|
||||||
|
|
||||||
async def async_setup(self) -> None:
|
async def async_setup(self) -> None:
|
||||||
if not self.hass.services.has_service(KNX_DOMAIN, "send"):
|
if not self.hass.services.has_service(KNX_DOMAIN, "send"):
|
||||||
@@ -197,6 +208,13 @@ class BridgeManager:
|
|||||||
self._knx_event_unsub()
|
self._knx_event_unsub()
|
||||||
self._knx_event_unsub = None
|
self._knx_event_unsub = None
|
||||||
|
|
||||||
|
for task in self._light_dimming_tasks.values():
|
||||||
|
task.cancel()
|
||||||
|
self._light_dimming_tasks.clear()
|
||||||
|
for task in self._light_ct_tasks.values():
|
||||||
|
task.cancel()
|
||||||
|
self._light_ct_tasks.clear()
|
||||||
|
|
||||||
await self._unregister_knx_events()
|
await self._unregister_knx_events()
|
||||||
|
|
||||||
def _load_ports(
|
def _load_ports(
|
||||||
@@ -336,6 +354,12 @@ class BridgeManager:
|
|||||||
color_temperature_mode=color_temp_mode,
|
color_temperature_mode=color_temp_mode,
|
||||||
min_kelvin=_clean_int(data.get(CONF_LIGHT_MIN_KELVIN)),
|
min_kelvin=_clean_int(data.get(CONF_LIGHT_MIN_KELVIN)),
|
||||||
max_kelvin=_clean_int(data.get(CONF_LIGHT_MAX_KELVIN)),
|
max_kelvin=_clean_int(data.get(CONF_LIGHT_MAX_KELVIN)),
|
||||||
|
relative_color_temperature_address=_clean_address(
|
||||||
|
data.get(CONF_LIGHT_RELATIVE_COLOR_TEMPERATURE_ADDRESS)
|
||||||
|
),
|
||||||
|
relative_dimming_address=_clean_address(
|
||||||
|
data.get(CONF_LIGHT_RELATIVE_DIMMING_ADDRESS)
|
||||||
|
),
|
||||||
red_address=_clean_address(data.get(CONF_LIGHT_RED_ADDRESS)),
|
red_address=_clean_address(data.get(CONF_LIGHT_RED_ADDRESS)),
|
||||||
red_state_address=_clean_address(
|
red_state_address=_clean_address(
|
||||||
data.get(CONF_LIGHT_RED_STATE_ADDRESS)
|
data.get(CONF_LIGHT_RED_STATE_ADDRESS)
|
||||||
@@ -656,6 +680,18 @@ class BridgeManager:
|
|||||||
port,
|
port,
|
||||||
"color_temperature",
|
"color_temperature",
|
||||||
)
|
)
|
||||||
|
self._register_knx_light_command(
|
||||||
|
port.relative_color_temperature_address,
|
||||||
|
"control_dimming",
|
||||||
|
port,
|
||||||
|
"relative_color_temperature",
|
||||||
|
)
|
||||||
|
self._register_knx_light_command(
|
||||||
|
port.relative_dimming_address,
|
||||||
|
"control_dimming",
|
||||||
|
port,
|
||||||
|
"relative_dimming",
|
||||||
|
)
|
||||||
self._register_knx_light_command(
|
self._register_knx_light_command(
|
||||||
port.red_address,
|
port.red_address,
|
||||||
_get_event_type(CONF_LIGHT_RED_ADDRESS),
|
_get_event_type(CONF_LIGHT_RED_ADDRESS),
|
||||||
@@ -1135,10 +1171,54 @@ class BridgeManager:
|
|||||||
await self._call_light_service(
|
await self._call_light_service(
|
||||||
port.entity_id,
|
port.entity_id,
|
||||||
"turn_on",
|
"turn_on",
|
||||||
{"color_temp": _kelvin_to_mireds(kelvin)},
|
{ATTR_COLOR_TEMP_KELVIN: int(round(kelvin))},
|
||||||
)
|
)
|
||||||
return
|
return
|
||||||
|
|
||||||
|
if action == "relative_dimming":
|
||||||
|
dim_info = _extract_dimming_info(event)
|
||||||
|
if dim_info is not None:
|
||||||
|
control, step_code = dim_info
|
||||||
|
if step_code == 0:
|
||||||
|
self._stop_light_dimming(port.entity_id)
|
||||||
|
return
|
||||||
|
value = _extract_dimming_value(event)
|
||||||
|
if value is None:
|
||||||
|
return
|
||||||
|
if value in (0, 8):
|
||||||
|
self._stop_light_dimming(port.entity_id)
|
||||||
|
return
|
||||||
|
step = _relative_dimming_step(value)
|
||||||
|
if step is None:
|
||||||
|
return
|
||||||
|
direction, percent = step
|
||||||
|
if percent <= 0:
|
||||||
|
return
|
||||||
|
self._start_light_dimming(port.entity_id, direction, percent)
|
||||||
|
return
|
||||||
|
|
||||||
|
if action == "relative_color_temperature":
|
||||||
|
dim_info = _extract_dimming_info(event)
|
||||||
|
if dim_info is not None:
|
||||||
|
control, step_code = dim_info
|
||||||
|
if step_code == 0:
|
||||||
|
self._stop_light_ct_adjust(port.entity_id)
|
||||||
|
return
|
||||||
|
value = _extract_dimming_value(event)
|
||||||
|
if value is None:
|
||||||
|
return
|
||||||
|
if value in (0, 8):
|
||||||
|
self._stop_light_ct_adjust(port.entity_id)
|
||||||
|
return
|
||||||
|
step = _relative_dimming_step(value)
|
||||||
|
if step is None:
|
||||||
|
return
|
||||||
|
direction, percent = step
|
||||||
|
if percent <= 0:
|
||||||
|
return
|
||||||
|
self._start_light_ct_adjust(port, direction, percent)
|
||||||
|
return
|
||||||
|
|
||||||
if action.startswith("red_"):
|
if action.startswith("red_"):
|
||||||
await self._handle_light_component_action(port, "red", action, event)
|
await self._handle_light_component_action(port, "red", action, event)
|
||||||
elif action.startswith("green_"):
|
elif action.startswith("green_"):
|
||||||
@@ -1367,6 +1447,110 @@ class BridgeManager:
|
|||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
||||||
|
def _start_light_dimming(
|
||||||
|
self, entity_id: str, direction: str, percent: int
|
||||||
|
) -> None:
|
||||||
|
self._stop_light_dimming(entity_id)
|
||||||
|
|
||||||
|
async def _runner() -> None:
|
||||||
|
while True:
|
||||||
|
step = percent if direction == "up" else -percent
|
||||||
|
await self._call_light_service(
|
||||||
|
entity_id, "turn_on", {"brightness_step_pct": step}
|
||||||
|
)
|
||||||
|
await asyncio.sleep(0.3)
|
||||||
|
|
||||||
|
self._light_dimming_tasks[entity_id] = self.hass.async_create_task(
|
||||||
|
_runner()
|
||||||
|
)
|
||||||
|
|
||||||
|
def _apply_light_dimming_step(
|
||||||
|
self, entity_id: str, direction: str, step_code: int
|
||||||
|
) -> None:
|
||||||
|
percent = _relative_dimming_percent(step_code)
|
||||||
|
if percent is None or percent <= 0:
|
||||||
|
return
|
||||||
|
|
||||||
|
async def _runner() -> None:
|
||||||
|
step = percent if direction == "up" else -percent
|
||||||
|
await self._call_light_service(
|
||||||
|
entity_id, "turn_on", {"brightness_step_pct": step}
|
||||||
|
)
|
||||||
|
|
||||||
|
self.hass.async_create_task(_runner())
|
||||||
|
|
||||||
|
def _stop_light_dimming(self, entity_id: str) -> None:
|
||||||
|
task = self._light_dimming_tasks.pop(entity_id, None)
|
||||||
|
if task is not None:
|
||||||
|
task.cancel()
|
||||||
|
|
||||||
|
def _start_light_ct_adjust(
|
||||||
|
self, port: LightPort, direction: str, percent: int
|
||||||
|
) -> None:
|
||||||
|
self._stop_light_ct_adjust(port.entity_id)
|
||||||
|
|
||||||
|
async def _runner() -> None:
|
||||||
|
while True:
|
||||||
|
current_kelvin = _current_color_temp_kelvin(self.hass, port)
|
||||||
|
if current_kelvin is None:
|
||||||
|
current_kelvin = _light_min_kelvin(port)
|
||||||
|
delta = (_light_max_kelvin(port) - _light_min_kelvin(port)) * (
|
||||||
|
percent / 100
|
||||||
|
)
|
||||||
|
if direction == "up":
|
||||||
|
next_kelvin = current_kelvin + delta
|
||||||
|
else:
|
||||||
|
next_kelvin = current_kelvin - delta
|
||||||
|
next_kelvin = min(
|
||||||
|
max(next_kelvin, _light_min_kelvin(port)),
|
||||||
|
_light_max_kelvin(port),
|
||||||
|
)
|
||||||
|
await self._call_light_service(
|
||||||
|
port.entity_id,
|
||||||
|
"turn_on",
|
||||||
|
{ATTR_COLOR_TEMP_KELVIN: int(round(next_kelvin))},
|
||||||
|
)
|
||||||
|
await asyncio.sleep(0.3)
|
||||||
|
|
||||||
|
self._light_ct_tasks[port.entity_id] = self.hass.async_create_task(
|
||||||
|
_runner()
|
||||||
|
)
|
||||||
|
|
||||||
|
def _apply_light_ct_step_once(
|
||||||
|
self, port: LightPort, direction: str, step_code: int
|
||||||
|
) -> None:
|
||||||
|
percent = _relative_dimming_percent(step_code)
|
||||||
|
if percent is None or percent <= 0:
|
||||||
|
return
|
||||||
|
|
||||||
|
async def _runner() -> None:
|
||||||
|
current_kelvin = _current_color_temp_kelvin(self.hass, port)
|
||||||
|
if current_kelvin is None:
|
||||||
|
current_kelvin = _light_min_kelvin(port)
|
||||||
|
delta = (_light_max_kelvin(port) - _light_min_kelvin(port)) * (
|
||||||
|
percent / 100
|
||||||
|
)
|
||||||
|
if direction == "up":
|
||||||
|
next_kelvin = current_kelvin + delta
|
||||||
|
else:
|
||||||
|
next_kelvin = current_kelvin - delta
|
||||||
|
next_kelvin = min(
|
||||||
|
max(next_kelvin, _light_min_kelvin(port)),
|
||||||
|
_light_max_kelvin(port),
|
||||||
|
)
|
||||||
|
await self._call_light_service(
|
||||||
|
port.entity_id,
|
||||||
|
"turn_on",
|
||||||
|
{ATTR_COLOR_TEMP_KELVIN: int(round(next_kelvin))},
|
||||||
|
)
|
||||||
|
|
||||||
|
self.hass.async_create_task(_runner())
|
||||||
|
|
||||||
|
def _stop_light_ct_adjust(self, entity_id: str) -> None:
|
||||||
|
task = self._light_ct_tasks.pop(entity_id, None)
|
||||||
|
if task is not None:
|
||||||
|
task.cancel()
|
||||||
|
|
||||||
|
|
||||||
def _extract_event_value(event: Event) -> int | None:
|
def _extract_event_value(event: Event) -> int | None:
|
||||||
if "value" in event.data:
|
if "value" in event.data:
|
||||||
@@ -1388,6 +1572,59 @@ def _extract_event_value(event: Event) -> int | None:
|
|||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
def _extract_dimming_value(event: Event) -> int | None:
|
||||||
|
info = _extract_dimming_info(event)
|
||||||
|
if info is not None:
|
||||||
|
control, step_code = info
|
||||||
|
return ((1 if control else 0) << 3) | (step_code & 0x07)
|
||||||
|
return _extract_event_value(event)
|
||||||
|
|
||||||
|
|
||||||
|
def _extract_dimming_info(event: Event) -> tuple[bool, int] | None:
|
||||||
|
if "value" in event.data:
|
||||||
|
value = event.data["value"]
|
||||||
|
if isinstance(value, dict):
|
||||||
|
control = value.get("control")
|
||||||
|
step = value.get("stepcode", value.get("step_code"))
|
||||||
|
if control is not None and step is not None:
|
||||||
|
control_bit = _parse_control_value(control)
|
||||||
|
if control_bit is None:
|
||||||
|
return None
|
||||||
|
try:
|
||||||
|
return control_bit, int(step) & 0x07
|
||||||
|
except (TypeError, ValueError):
|
||||||
|
return None
|
||||||
|
if isinstance(value, (int, float)):
|
||||||
|
raw = int(value)
|
||||||
|
return bool(raw & 0x08), raw & 0x07
|
||||||
|
if isinstance(value, (list, tuple)) and len(value) >= 2:
|
||||||
|
try:
|
||||||
|
return bool(int(value[0])), int(value[1]) & 0x07
|
||||||
|
except (TypeError, ValueError):
|
||||||
|
return None
|
||||||
|
data = event.data.get("data")
|
||||||
|
if isinstance(data, (list, tuple)) and len(data) >= 2:
|
||||||
|
try:
|
||||||
|
return bool(int(data[0])), int(data[1]) & 0x07
|
||||||
|
except (TypeError, ValueError):
|
||||||
|
return None
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
def _parse_control_value(value: Any) -> bool | None:
|
||||||
|
if isinstance(value, bool):
|
||||||
|
return value
|
||||||
|
if isinstance(value, (int, float)):
|
||||||
|
return bool(int(value))
|
||||||
|
if isinstance(value, str):
|
||||||
|
text = value.strip().lower()
|
||||||
|
if text in ("increase", "up", "raise", "1", "true", "on"):
|
||||||
|
return True
|
||||||
|
if text in ("decrease", "down", "lower", "0", "false", "off"):
|
||||||
|
return False
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
def _clean_address(address: Any) -> str | None:
|
def _clean_address(address: Any) -> str | None:
|
||||||
if not address:
|
if not address:
|
||||||
return None
|
return None
|
||||||
@@ -1464,12 +1701,6 @@ def _percent_to_brightness(percent: int) -> int:
|
|||||||
return int(round(percent / 100 * 255))
|
return int(round(percent / 100 * 255))
|
||||||
|
|
||||||
|
|
||||||
def _kelvin_to_mireds(kelvin: float) -> int:
|
|
||||||
if kelvin <= 0:
|
|
||||||
return 0
|
|
||||||
return int(round(1000000 / kelvin))
|
|
||||||
|
|
||||||
|
|
||||||
def _mireds_to_kelvin(mireds: float) -> float:
|
def _mireds_to_kelvin(mireds: float) -> float:
|
||||||
if mireds <= 0:
|
if mireds <= 0:
|
||||||
return 0
|
return 0
|
||||||
@@ -1576,13 +1807,33 @@ def _current_hs_color(
|
|||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
def _current_color_temp_kelvin(
|
||||||
|
hass: HomeAssistant, port: LightPort
|
||||||
|
) -> float | None:
|
||||||
|
state = hass.states.get(port.entity_id)
|
||||||
|
if state is None:
|
||||||
|
return None
|
||||||
|
if ATTR_COLOR_TEMP_KELVIN in state.attributes:
|
||||||
|
try:
|
||||||
|
return float(state.attributes[ATTR_COLOR_TEMP_KELVIN])
|
||||||
|
except (TypeError, ValueError):
|
||||||
|
return None
|
||||||
|
mireds = state.attributes.get(ATTR_COLOR_TEMP)
|
||||||
|
if mireds is None:
|
||||||
|
return None
|
||||||
|
try:
|
||||||
|
return _mireds_to_kelvin(float(mireds))
|
||||||
|
except (TypeError, ValueError):
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
def _light_color_temperature_event_type(mode: str) -> str | None:
|
def _light_color_temperature_event_type(mode: str) -> str | None:
|
||||||
if mode == "relative":
|
if mode == "relative":
|
||||||
return "percent"
|
return "percent"
|
||||||
if mode == "absolute":
|
if mode == "absolute":
|
||||||
return "7.600"
|
return "2byte_unsigned"
|
||||||
if mode == "absolute_float":
|
if mode == "absolute_float":
|
||||||
return "9"
|
return "2byte_float"
|
||||||
return None
|
return None
|
||||||
|
|
||||||
|
|
||||||
@@ -1597,8 +1848,8 @@ def _color_temperature_payload(
|
|||||||
percent = (kelvin - min_kelvin) / (max_kelvin - min_kelvin) * 100
|
percent = (kelvin - min_kelvin) / (max_kelvin - min_kelvin) * 100
|
||||||
return int(round(_clamp_percent(int(round(percent))))), "percent"
|
return int(round(_clamp_percent(int(round(percent))))), "percent"
|
||||||
if port.color_temperature_mode == "absolute_float":
|
if port.color_temperature_mode == "absolute_float":
|
||||||
return float(kelvin), "9"
|
return float(kelvin), "2byte_float"
|
||||||
return int(round(kelvin)), "7.600"
|
return int(round(kelvin)), "2byte_unsigned"
|
||||||
|
|
||||||
|
|
||||||
def _color_temperature_from_value(
|
def _color_temperature_from_value(
|
||||||
@@ -1635,6 +1886,39 @@ def _light_uses_white_channel(port: LightPort) -> bool:
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def _relative_dimming_step(value: int) -> tuple[str, int] | None:
|
||||||
|
value = value & 0x0F
|
||||||
|
if value == 0 or value == 8:
|
||||||
|
return None
|
||||||
|
if value <= 7:
|
||||||
|
direction = "down"
|
||||||
|
percent = value
|
||||||
|
else:
|
||||||
|
direction = "up"
|
||||||
|
percent = value
|
||||||
|
if percent <= 0:
|
||||||
|
return None
|
||||||
|
return direction, percent
|
||||||
|
|
||||||
|
|
||||||
|
def _relative_dimming_percent(step_code: int) -> int | None:
|
||||||
|
percent_map = {
|
||||||
|
1: 10,
|
||||||
|
2: 8,
|
||||||
|
3: 6,
|
||||||
|
4: 4,
|
||||||
|
5: 3,
|
||||||
|
6: 2,
|
||||||
|
7: 1,
|
||||||
|
}
|
||||||
|
step = int(step_code)
|
||||||
|
if step <= 0:
|
||||||
|
step = 1
|
||||||
|
if step > 7:
|
||||||
|
step = 7
|
||||||
|
return percent_map.get(step)
|
||||||
|
|
||||||
|
|
||||||
def _map_scalar_value(value: Any) -> int | None:
|
def _map_scalar_value(value: Any) -> int | None:
|
||||||
if isinstance(value, bool):
|
if isinstance(value, bool):
|
||||||
return 1 if value else 0
|
return 1 if value else 0
|
||||||
|
|||||||
@@ -33,6 +33,8 @@ from .const import (
|
|||||||
CONF_LIGHT_COLOR_TEMPERATURE_ADDRESS,
|
CONF_LIGHT_COLOR_TEMPERATURE_ADDRESS,
|
||||||
CONF_LIGHT_COLOR_TEMPERATURE_STATE_ADDRESS,
|
CONF_LIGHT_COLOR_TEMPERATURE_STATE_ADDRESS,
|
||||||
CONF_LIGHT_COLOR_TEMPERATURE_MODE,
|
CONF_LIGHT_COLOR_TEMPERATURE_MODE,
|
||||||
|
CONF_LIGHT_RELATIVE_COLOR_TEMPERATURE_ADDRESS,
|
||||||
|
CONF_LIGHT_RELATIVE_DIMMING_ADDRESS,
|
||||||
CONF_LIGHT_MIN_KELVIN,
|
CONF_LIGHT_MIN_KELVIN,
|
||||||
CONF_LIGHT_MAX_KELVIN,
|
CONF_LIGHT_MAX_KELVIN,
|
||||||
CONF_LIGHT_RED_ADDRESS,
|
CONF_LIGHT_RED_ADDRESS,
|
||||||
@@ -634,6 +636,12 @@ def _light_schema(defaults: dict | None = None) -> vol.Schema:
|
|||||||
): selector.TextSelector(
|
): selector.TextSelector(
|
||||||
selector.TextSelectorConfig(type="text")
|
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(
|
vol.Optional(
|
||||||
CONF_LIGHT_BRIGHTNESS_STATE_ADDRESS,
|
CONF_LIGHT_BRIGHTNESS_STATE_ADDRESS,
|
||||||
default=defaults.get(CONF_LIGHT_BRIGHTNESS_STATE_ADDRESS, ""),
|
default=defaults.get(CONF_LIGHT_BRIGHTNESS_STATE_ADDRESS, ""),
|
||||||
@@ -732,6 +740,12 @@ def _light_schema(defaults: dict | None = None) -> vol.Schema:
|
|||||||
)
|
)
|
||||||
),
|
),
|
||||||
): selector.BooleanSelector(),
|
): selector.BooleanSelector(),
|
||||||
|
vol.Optional(
|
||||||
|
CONF_LIGHT_RELATIVE_COLOR_TEMPERATURE_ADDRESS,
|
||||||
|
default=defaults.get(CONF_LIGHT_RELATIVE_COLOR_TEMPERATURE_ADDRESS, ""),
|
||||||
|
): selector.TextSelector(
|
||||||
|
selector.TextSelectorConfig(type="text")
|
||||||
|
),
|
||||||
vol.Optional(
|
vol.Optional(
|
||||||
CONF_LIGHT_COLOR_TEMPERATURE_MODE,
|
CONF_LIGHT_COLOR_TEMPERATURE_MODE,
|
||||||
default=defaults.get(CONF_LIGHT_COLOR_TEMPERATURE_MODE, "absolute"),
|
default=defaults.get(CONF_LIGHT_COLOR_TEMPERATURE_MODE, "absolute"),
|
||||||
@@ -944,6 +958,8 @@ def _port_keys(port_type: str) -> list[str]:
|
|||||||
CONF_LIGHT_XYY_STATE_ADDRESS,
|
CONF_LIGHT_XYY_STATE_ADDRESS,
|
||||||
CONF_LIGHT_COLOR_TEMPERATURE_ADDRESS,
|
CONF_LIGHT_COLOR_TEMPERATURE_ADDRESS,
|
||||||
CONF_LIGHT_COLOR_TEMPERATURE_STATE_ADDRESS,
|
CONF_LIGHT_COLOR_TEMPERATURE_STATE_ADDRESS,
|
||||||
|
CONF_LIGHT_RELATIVE_COLOR_TEMPERATURE_ADDRESS,
|
||||||
|
CONF_LIGHT_RELATIVE_DIMMING_ADDRESS,
|
||||||
CONF_LIGHT_RED_ADDRESS,
|
CONF_LIGHT_RED_ADDRESS,
|
||||||
CONF_LIGHT_RED_STATE_ADDRESS,
|
CONF_LIGHT_RED_STATE_ADDRESS,
|
||||||
CONF_LIGHT_RED_BRIGHTNESS_ADDRESS,
|
CONF_LIGHT_RED_BRIGHTNESS_ADDRESS,
|
||||||
|
|||||||
@@ -34,6 +34,8 @@ CONF_LIGHT_XYY_ADDRESS = "xyy_address"
|
|||||||
CONF_LIGHT_XYY_STATE_ADDRESS = "xyy_state_address"
|
CONF_LIGHT_XYY_STATE_ADDRESS = "xyy_state_address"
|
||||||
CONF_LIGHT_COLOR_TEMPERATURE_ADDRESS = "color_temperature_address"
|
CONF_LIGHT_COLOR_TEMPERATURE_ADDRESS = "color_temperature_address"
|
||||||
CONF_LIGHT_COLOR_TEMPERATURE_STATE_ADDRESS = "color_temperature_state_address"
|
CONF_LIGHT_COLOR_TEMPERATURE_STATE_ADDRESS = "color_temperature_state_address"
|
||||||
|
CONF_LIGHT_RELATIVE_COLOR_TEMPERATURE_ADDRESS = "relative_color_temperature_address"
|
||||||
|
CONF_LIGHT_RELATIVE_DIMMING_ADDRESS = "relative_dimming_address"
|
||||||
CONF_LIGHT_COLOR_TEMPERATURE_MODE = "color_temperature_mode"
|
CONF_LIGHT_COLOR_TEMPERATURE_MODE = "color_temperature_mode"
|
||||||
CONF_LIGHT_MIN_KELVIN = "min_kelvin"
|
CONF_LIGHT_MIN_KELVIN = "min_kelvin"
|
||||||
CONF_LIGHT_MAX_KELVIN = "max_kelvin"
|
CONF_LIGHT_MAX_KELVIN = "max_kelvin"
|
||||||
@@ -86,6 +88,8 @@ ADDRESS_DPT_MAP: dict[str, str] = {
|
|||||||
CONF_LIGHT_XYY_STATE_ADDRESS: "242.600",
|
CONF_LIGHT_XYY_STATE_ADDRESS: "242.600",
|
||||||
CONF_LIGHT_COLOR_TEMPERATURE_ADDRESS: "5.001/7.600/9",
|
CONF_LIGHT_COLOR_TEMPERATURE_ADDRESS: "5.001/7.600/9",
|
||||||
CONF_LIGHT_COLOR_TEMPERATURE_STATE_ADDRESS: "5.001/7.600/9",
|
CONF_LIGHT_COLOR_TEMPERATURE_STATE_ADDRESS: "5.001/7.600/9",
|
||||||
|
CONF_LIGHT_RELATIVE_COLOR_TEMPERATURE_ADDRESS: "3.007",
|
||||||
|
CONF_LIGHT_RELATIVE_DIMMING_ADDRESS: "3.007",
|
||||||
CONF_LIGHT_RED_ADDRESS: "1.001",
|
CONF_LIGHT_RED_ADDRESS: "1.001",
|
||||||
CONF_LIGHT_RED_STATE_ADDRESS: "1.001",
|
CONF_LIGHT_RED_STATE_ADDRESS: "1.001",
|
||||||
CONF_LIGHT_RED_BRIGHTNESS_ADDRESS: "5.001",
|
CONF_LIGHT_RED_BRIGHTNESS_ADDRESS: "5.001",
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"domain": "ha_knx_bridge",
|
"domain": "ha_knx_bridge",
|
||||||
"name": "HA KNX Bridge",
|
"name": "HA KNX Bridge",
|
||||||
"version": "0.0.22",
|
"version": "0.0.34",
|
||||||
"config_flow": true,
|
"config_flow": true,
|
||||||
"documentation": "https://github.com/bahmcloud/HA-KNX-Bridge",
|
"documentation": "https://github.com/bahmcloud/HA-KNX-Bridge",
|
||||||
"issue_tracker": "https://github.com/bahmcloud/HA-KNX-Bridge/issues",
|
"issue_tracker": "https://github.com/bahmcloud/HA-KNX-Bridge/issues",
|
||||||
|
|||||||
@@ -77,6 +77,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -93,6 +94,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -178,6 +180,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -194,6 +197,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -287,6 +291,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -303,6 +308,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
@@ -60,6 +60,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -76,6 +77,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
@@ -161,6 +163,7 @@
|
|||||||
"light_state_address": "On/off state address (DPT 1.001)",
|
"light_state_address": "On/off state address (DPT 1.001)",
|
||||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"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": "Brightness state address (DPT 5.001)",
|
||||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
@@ -177,6 +180,7 @@
|
|||||||
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
"color_temperature_address": "Color temperature address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
"color_temperature_state_address": "Color temperature state address (DPT 5.001/7.600/9)",
|
||||||
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
"color_temperature_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||||
"color_temperature_mode": "Color temperature mode",
|
"color_temperature_mode": "Color temperature mode",
|
||||||
"min_kelvin": "Min color temperature (K)",
|
"min_kelvin": "Min color temperature (K)",
|
||||||
"max_kelvin": "Max color temperature (K)",
|
"max_kelvin": "Max color temperature (K)",
|
||||||
|
|||||||
Reference in New Issue
Block a user