mirror of
https://github.com/bahmcloud/HA-KNX-Bridge.git
synced 2026-04-06 14:31:13 +00:00
Add relative color temperature dimming
This commit is contained in:
3
.idea/PROJECT_STATE.md
generated
3
.idea/PROJECT_STATE.md
generated
@@ -44,7 +44,8 @@ Completed:
|
|||||||
- Light color temperature event type mapping and relative dimming decoding fixed.
|
- Light color temperature event type mapping and relative dimming decoding fixed.
|
||||||
- Relative dimming step mapping tuned to avoid on/off jumps.
|
- Relative dimming step mapping tuned to avoid on/off jumps.
|
||||||
- Relative dimming now repeats steps until a stop telegram is received.
|
- Relative dimming now repeats steps until a stop telegram is received.
|
||||||
- Project version set to 0.0.26 and `CHANGELOG.md` maintained.
|
- Relative color temperature steps (DPT 3.007) added for lights.
|
||||||
|
- Project version set to 0.0.27 and `CHANGELOG.md` maintained.
|
||||||
|
|
||||||
Files created:
|
Files created:
|
||||||
- `custom_components/ha_knx_bridge/__init__.py`
|
- `custom_components/ha_knx_bridge/__init__.py`
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 0.0.27 - 2026-02-15
|
||||||
|
- Add optional relative color temperature address (DPT 3.007) for lights.
|
||||||
|
|
||||||
## 0.0.26 - 2026-02-15
|
## 0.0.26 - 2026-02-15
|
||||||
- Repeat relative dimming steps until a stop telegram is received.
|
- Repeat relative dimming steps until a stop telegram is received.
|
||||||
|
|
||||||
|
|||||||
@@ -66,6 +66,7 @@ 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.
|
- `relative_dimming_address` (DPT 3.007): KNX group address for relative dimming steps.
|
||||||
@@ -75,6 +76,7 @@ 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 to small `brightness_step_pct` changes in Home Assistant.
|
- Relative dimming (DPT 3.007) maps KNX step values to small `brightness_step_pct` changes in Home Assistant.
|
||||||
- For relative dimming, the bridge repeats steps until a KNX stop telegram (0 or 8) is received.
|
- For relative dimming, the bridge repeats steps until a KNX stop telegram (0 or 8) is received.
|
||||||
|
- Relative color temperature (DPT 3.007) adjusts Kelvin in the same start/stop pattern.
|
||||||
- Color temperature mode must match the KNX telegram DPT: `relative` for 5.001, `absolute` for 7.600, `absolute_float` for DPT 9.
|
- Color temperature mode must match the KNX telegram DPT: `relative` for 5.001, `absolute` for 7.600, `absolute_float` for DPT 9.
|
||||||
|
|
||||||
## Notes
|
## Notes
|
||||||
@@ -100,6 +102,7 @@ Notes:
|
|||||||
- 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_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
|
||||||
|
|
||||||
@@ -109,5 +112,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.26
|
- Current version: 0.0.27
|
||||||
- `CHANGELOG.md` lists versions with the newest entries at the top.
|
- `CHANGELOG.md` lists versions with the newest entries at the top.
|
||||||
|
|||||||
@@ -44,6 +44,7 @@ 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_RELATIVE_DIMMING_ADDRESS,
|
||||||
CONF_LIGHT_MIN_KELVIN,
|
CONF_LIGHT_MIN_KELVIN,
|
||||||
CONF_LIGHT_MAX_KELVIN,
|
CONF_LIGHT_MAX_KELVIN,
|
||||||
@@ -145,6 +146,7 @@ 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
|
relative_dimming_address: str | None
|
||||||
red_address: str | None
|
red_address: str | None
|
||||||
red_state_address: str | None
|
red_state_address: str | None
|
||||||
@@ -183,6 +185,7 @@ class BridgeManager:
|
|||||||
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_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"):
|
||||||
@@ -204,6 +207,9 @@ class BridgeManager:
|
|||||||
for task in self._light_dimming_tasks.values():
|
for task in self._light_dimming_tasks.values():
|
||||||
task.cancel()
|
task.cancel()
|
||||||
self._light_dimming_tasks.clear()
|
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()
|
||||||
|
|
||||||
@@ -344,6 +350,9 @@ 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(
|
relative_dimming_address=_clean_address(
|
||||||
data.get(CONF_LIGHT_RELATIVE_DIMMING_ADDRESS)
|
data.get(CONF_LIGHT_RELATIVE_DIMMING_ADDRESS)
|
||||||
),
|
),
|
||||||
@@ -667,6 +676,12 @@ class BridgeManager:
|
|||||||
port,
|
port,
|
||||||
"color_temperature",
|
"color_temperature",
|
||||||
)
|
)
|
||||||
|
self._register_knx_light_command(
|
||||||
|
port.relative_color_temperature_address,
|
||||||
|
None,
|
||||||
|
port,
|
||||||
|
"relative_color_temperature",
|
||||||
|
)
|
||||||
self._register_knx_light_command(
|
self._register_knx_light_command(
|
||||||
port.relative_dimming_address,
|
port.relative_dimming_address,
|
||||||
None,
|
None,
|
||||||
@@ -1172,6 +1187,22 @@ class BridgeManager:
|
|||||||
self._start_light_dimming(port.entity_id, direction, percent)
|
self._start_light_dimming(port.entity_id, direction, percent)
|
||||||
return
|
return
|
||||||
|
|
||||||
|
if action == "relative_color_temperature":
|
||||||
|
value = _extract_event_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_"):
|
||||||
@@ -1422,6 +1453,43 @@ class BridgeManager:
|
|||||||
if task is not None:
|
if task is not None:
|
||||||
task.cancel()
|
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",
|
||||||
|
{"color_temp": _kelvin_to_mireds(next_kelvin)},
|
||||||
|
)
|
||||||
|
await asyncio.sleep(0.3)
|
||||||
|
|
||||||
|
self._light_ct_tasks[port.entity_id] = 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:
|
||||||
@@ -1631,6 +1699,26 @@ 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"
|
||||||
|
|||||||
@@ -33,6 +33,7 @@ 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_RELATIVE_DIMMING_ADDRESS,
|
||||||
CONF_LIGHT_MIN_KELVIN,
|
CONF_LIGHT_MIN_KELVIN,
|
||||||
CONF_LIGHT_MAX_KELVIN,
|
CONF_LIGHT_MAX_KELVIN,
|
||||||
@@ -647,6 +648,12 @@ def _light_schema(defaults: dict | None = None) -> vol.Schema:
|
|||||||
defaults.get(_invert_out_key(CONF_LIGHT_BRIGHTNESS_STATE_ADDRESS))
|
defaults.get(_invert_out_key(CONF_LIGHT_BRIGHTNESS_STATE_ADDRESS))
|
||||||
),
|
),
|
||||||
): selector.BooleanSelector(),
|
): selector.BooleanSelector(),
|
||||||
|
vol.Optional(
|
||||||
|
CONF_LIGHT_RELATIVE_DIMMING_ADDRESS,
|
||||||
|
default=defaults.get(CONF_LIGHT_RELATIVE_DIMMING_ADDRESS, ""),
|
||||||
|
): selector.TextSelector(
|
||||||
|
selector.TextSelectorConfig(type="text")
|
||||||
|
),
|
||||||
vol.Optional(
|
vol.Optional(
|
||||||
CONF_LIGHT_COLOR_ADDRESS,
|
CONF_LIGHT_COLOR_ADDRESS,
|
||||||
default=defaults.get(CONF_LIGHT_COLOR_ADDRESS, ""),
|
default=defaults.get(CONF_LIGHT_COLOR_ADDRESS, ""),
|
||||||
@@ -733,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"),
|
||||||
@@ -753,12 +766,6 @@ def _light_schema(defaults: dict | None = None) -> vol.Schema:
|
|||||||
): selector.NumberSelector(
|
): selector.NumberSelector(
|
||||||
selector.NumberSelectorConfig(min=1000, max=20000, step=1, mode="box")
|
selector.NumberSelectorConfig(min=1000, max=20000, step=1, mode="box")
|
||||||
),
|
),
|
||||||
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_RED_ADDRESS,
|
CONF_LIGHT_RED_ADDRESS,
|
||||||
default=defaults.get(CONF_LIGHT_RED_ADDRESS, ""),
|
default=defaults.get(CONF_LIGHT_RED_ADDRESS, ""),
|
||||||
@@ -951,6 +958,7 @@ 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_RELATIVE_DIMMING_ADDRESS,
|
||||||
CONF_LIGHT_RED_ADDRESS,
|
CONF_LIGHT_RED_ADDRESS,
|
||||||
CONF_LIGHT_RED_STATE_ADDRESS,
|
CONF_LIGHT_RED_STATE_ADDRESS,
|
||||||
|
|||||||
@@ -34,6 +34,7 @@ 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_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"
|
||||||
@@ -87,6 +88,7 @@ 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_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",
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"domain": "ha_knx_bridge",
|
"domain": "ha_knx_bridge",
|
||||||
"name": "HA KNX Bridge",
|
"name": "HA KNX Bridge",
|
||||||
"version": "0.0.26",
|
"version": "0.0.27",
|
||||||
"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",
|
||||||
|
|||||||
@@ -79,6 +79,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -93,10 +94,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -181,6 +182,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -195,10 +197,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -291,6 +293,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -305,10 +308,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
@@ -62,6 +62,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -76,10 +77,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
@@ -164,6 +165,7 @@
|
|||||||
"brightness_address": "Brightness address (DPT 5.001)",
|
"brightness_address": "Brightness address (DPT 5.001)",
|
||||||
"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",
|
||||||
|
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||||
"color_address": "RGB color address (DPT 232.600)",
|
"color_address": "RGB color address (DPT 232.600)",
|
||||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||||
@@ -178,10 +180,10 @@
|
|||||||
"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)",
|
||||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
|
||||||
"red_address": "Red on/off address (DPT 1.001)",
|
"red_address": "Red on/off address (DPT 1.001)",
|
||||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||||
|
|||||||
Reference in New Issue
Block a user