mirror of
https://github.com/bahmcloud/HA-KNX-Bridge.git
synced 2026-04-06 16:51:14 +00:00
Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9825e748cf | |||
| a9fb58c87a | |||
| c8d05acae9 | |||
| 082ce93334 | |||
| 0afbcc4f70 | |||
| e76cfeb98c |
8
.idea/PROJECT_STATE.md
generated
8
.idea/PROJECT_STATE.md
generated
@@ -39,7 +39,13 @@ Completed:
|
||||
- README includes initial DPT mapping and roadmap.
|
||||
- Incoming invert toggles removed; outgoing inversion remains only for state addresses.
|
||||
- Light port support added with full KNX color/temperature mappings and individual color channels.
|
||||
- Project version set to 0.0.21 and `CHANGELOG.md` maintained.
|
||||
- Light port keys renamed to avoid conflicts; outgoing updates now only target light state addresses.
|
||||
- Light port optional relative dimming address (DPT 3.007) added.
|
||||
- Light color temperature event type mapping and relative dimming decoding fixed.
|
||||
- Relative dimming step mapping tuned to avoid on/off jumps.
|
||||
- Relative dimming now repeats steps until a stop telegram is received.
|
||||
- Relative color temperature steps (DPT 3.007) added for lights.
|
||||
- Project version set to 0.0.27 and `CHANGELOG.md` maintained.
|
||||
|
||||
Files created:
|
||||
- `custom_components/ha_knx_bridge/__init__.py`
|
||||
|
||||
18
CHANGELOG.md
18
CHANGELOG.md
@@ -1,5 +1,23 @@
|
||||
# Changelog
|
||||
|
||||
## 0.0.27 - 2026-02-15
|
||||
- Add optional relative color temperature address (DPT 3.007) for lights.
|
||||
|
||||
## 0.0.26 - 2026-02-15
|
||||
- Repeat relative dimming steps until a stop telegram is received.
|
||||
|
||||
## 0.0.25 - 2026-02-15
|
||||
- Tune light relative dimming step mapping to avoid on/off jumps.
|
||||
|
||||
## 0.0.24 - 2026-02-15
|
||||
- Fix light color temperature event type mapping and improve relative dimming decoding.
|
||||
|
||||
## 0.0.23 - 2026-02-15
|
||||
- Add optional light relative dimming address (DPT 3.007).
|
||||
|
||||
## 0.0.22 - 2026-02-15
|
||||
- Fix light port key collisions and restrict outgoing updates to state addresses only.
|
||||
|
||||
## 0.0.21 - 2026-02-15
|
||||
- Add full light port support with KNX color/temperature mappings and individual color channels.
|
||||
|
||||
|
||||
17
README.md
17
README.md
@@ -50,8 +50,8 @@ Only state addresses expose an `invert outgoing` toggle to flip KNX payloads.
|
||||
|
||||
### Light Port
|
||||
- `entity_id`: the HA light to control/monitor.
|
||||
- `address` (DPT 1.001): KNX group address for on/off commands.
|
||||
- `state_address` (DPT 1.001): KNX group address that receives HA on/off state.
|
||||
- `light_address` (DPT 1.001): KNX group address for on/off commands.
|
||||
- `light_state_address` (DPT 1.001): KNX group address that receives HA on/off state.
|
||||
- `brightness_address` (DPT 5.001): KNX group address for brightness commands.
|
||||
- `brightness_state_address` (DPT 5.001): KNX group address that receives HA brightness.
|
||||
- `color_address` (DPT 232.600): KNX group address for RGB commands.
|
||||
@@ -66,13 +66,18 @@ 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.
|
||||
- `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.
|
||||
- `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).
|
||||
- `min_kelvin` / `max_kelvin`: Kelvin range used for `relative` color temperature mapping.
|
||||
- `relative_dimming_address` (DPT 3.007): KNX group address for relative dimming steps.
|
||||
- Individual colors (DPT 1.001 + 5.001): `red_*`, `green_*`, `blue_*`, `white_*` on/off and brightness addresses with matching state addresses.
|
||||
|
||||
Notes:
|
||||
- If `state_address` or `*_state_address` is empty, the command address is reused for outgoing updates.
|
||||
- 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.
|
||||
- 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.
|
||||
|
||||
## Notes
|
||||
- For DPT 1.008 (Up/Down), the bridge treats `0 = Up/Open` and `1 = Down/Close`.
|
||||
@@ -88,7 +93,7 @@ Notes:
|
||||
- Cover `position_state_address`: DPT 5.001
|
||||
- Cover `angle_address`: DPT 5.001
|
||||
- Cover `angle_state_address`: DPT 5.001
|
||||
- Light `address` / `state_address`: DPT 1.001
|
||||
- Light `light_address` / `light_state_address`: DPT 1.001
|
||||
- Light `brightness_address` / `brightness_state_address`: DPT 5.001
|
||||
- Light `color_address` / `color_state_address`: DPT 232.600
|
||||
- Light `rgbw_address` / `rgbw_state_address`: DPT 251.600
|
||||
@@ -96,6 +101,8 @@ Notes:
|
||||
- Light `saturation_address` / `saturation_state_address`: DPT 5.001
|
||||
- Light `xyy_address` / `xyy_state_address`: DPT 242.600
|
||||
- Light `color_temperature_address` / `color_temperature_state_address`: DPT 5.001/7.600/9
|
||||
- Light `relative_dimming_address`: DPT 3.007
|
||||
- Light `relative_color_temperature_address`: DPT 3.007
|
||||
- Light `red_*`, `green_*`, `blue_*`, `white_*` brightness: DPT 5.001
|
||||
- Light `red_*`, `green_*`, `blue_*`, `white_*` on/off: DPT 1.001
|
||||
|
||||
@@ -105,5 +112,5 @@ Notes:
|
||||
- Advanced DPT mapping options and inversion settings.
|
||||
|
||||
## Versioning and Releases
|
||||
- Current version: 0.0.21
|
||||
- Current version: 0.0.27
|
||||
- `CHANGELOG.md` lists versions with the newest entries at the top.
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
from __future__ import annotations
|
||||
|
||||
from dataclasses import dataclass
|
||||
import asyncio
|
||||
import logging
|
||||
from typing import Any
|
||||
|
||||
@@ -43,6 +44,8 @@ from .const import (
|
||||
CONF_LIGHT_COLOR_TEMPERATURE_ADDRESS,
|
||||
CONF_LIGHT_COLOR_TEMPERATURE_STATE_ADDRESS,
|
||||
CONF_LIGHT_COLOR_TEMPERATURE_MODE,
|
||||
CONF_LIGHT_RELATIVE_COLOR_TEMPERATURE_ADDRESS,
|
||||
CONF_LIGHT_RELATIVE_DIMMING_ADDRESS,
|
||||
CONF_LIGHT_MIN_KELVIN,
|
||||
CONF_LIGHT_MAX_KELVIN,
|
||||
CONF_LIGHT_RED_ADDRESS,
|
||||
@@ -143,6 +146,8 @@ class LightPort:
|
||||
color_temperature_mode: str
|
||||
min_kelvin: int | None
|
||||
max_kelvin: int | None
|
||||
relative_color_temperature_address: str | None
|
||||
relative_dimming_address: str | None
|
||||
red_address: str | None
|
||||
red_state_address: str | None
|
||||
red_state_invert_outgoing: bool
|
||||
@@ -179,6 +184,8 @@ class BridgeManager:
|
||||
self._registered_addresses: list[tuple[str, str | None]] = []
|
||||
self._address_options: dict[str, AddressOptions] = {}
|
||||
self._light_components: dict[str, dict[str, int]] = {}
|
||||
self._light_dimming_tasks: dict[str, asyncio.Task] = {}
|
||||
self._light_ct_tasks: dict[str, asyncio.Task] = {}
|
||||
|
||||
async def async_setup(self) -> None:
|
||||
if not self.hass.services.has_service(KNX_DOMAIN, "send"):
|
||||
@@ -197,6 +204,13 @@ class BridgeManager:
|
||||
self._knx_event_unsub()
|
||||
self._knx_event_unsub = None
|
||||
|
||||
for task in self._light_dimming_tasks.values():
|
||||
task.cancel()
|
||||
self._light_dimming_tasks.clear()
|
||||
for task in self._light_ct_tasks.values():
|
||||
task.cancel()
|
||||
self._light_ct_tasks.clear()
|
||||
|
||||
await self._unregister_knx_events()
|
||||
|
||||
def _load_ports(
|
||||
@@ -336,6 +350,12 @@ class BridgeManager:
|
||||
color_temperature_mode=color_temp_mode,
|
||||
min_kelvin=_clean_int(data.get(CONF_LIGHT_MIN_KELVIN)),
|
||||
max_kelvin=_clean_int(data.get(CONF_LIGHT_MAX_KELVIN)),
|
||||
relative_color_temperature_address=_clean_address(
|
||||
data.get(CONF_LIGHT_RELATIVE_COLOR_TEMPERATURE_ADDRESS)
|
||||
),
|
||||
relative_dimming_address=_clean_address(
|
||||
data.get(CONF_LIGHT_RELATIVE_DIMMING_ADDRESS)
|
||||
),
|
||||
red_address=_clean_address(data.get(CONF_LIGHT_RED_ADDRESS)),
|
||||
red_state_address=_clean_address(
|
||||
data.get(CONF_LIGHT_RED_STATE_ADDRESS)
|
||||
@@ -656,6 +676,18 @@ class BridgeManager:
|
||||
port,
|
||||
"color_temperature",
|
||||
)
|
||||
self._register_knx_light_command(
|
||||
port.relative_color_temperature_address,
|
||||
None,
|
||||
port,
|
||||
"relative_color_temperature",
|
||||
)
|
||||
self._register_knx_light_command(
|
||||
port.relative_dimming_address,
|
||||
None,
|
||||
port,
|
||||
"relative_dimming",
|
||||
)
|
||||
self._register_knx_light_command(
|
||||
port.red_address,
|
||||
_get_event_type(CONF_LIGHT_RED_ADDRESS),
|
||||
@@ -882,38 +914,35 @@ class BridgeManager:
|
||||
if color_temp_kelvin is None and color_temp_mired is not None:
|
||||
color_temp_kelvin = _mireds_to_kelvin(color_temp_mired)
|
||||
|
||||
if port.state_address or port.address:
|
||||
if port.state_address:
|
||||
payload = 1 if is_on else 0
|
||||
target = port.state_address or port.address
|
||||
if port.state_address:
|
||||
payload = _invert_value(
|
||||
payload, port.state_address, self._address_options
|
||||
)
|
||||
await self._knx_send_raw(target, payload)
|
||||
payload = _invert_value(
|
||||
payload, port.state_address, self._address_options
|
||||
)
|
||||
await self._knx_send_raw(port.state_address, payload)
|
||||
|
||||
if port.brightness_state_address or port.brightness_address:
|
||||
if port.brightness_state_address:
|
||||
if is_on:
|
||||
if brightness_percent is None:
|
||||
pass
|
||||
else:
|
||||
target = (
|
||||
port.brightness_state_address or port.brightness_address
|
||||
)
|
||||
if brightness_percent is not None:
|
||||
payload = brightness_percent
|
||||
if port.brightness_state_address:
|
||||
payload = _invert_value(
|
||||
payload, port.brightness_state_address, self._address_options
|
||||
)
|
||||
await self._knx_send_percent(target, payload)
|
||||
payload = _invert_value(
|
||||
payload,
|
||||
port.brightness_state_address,
|
||||
self._address_options,
|
||||
)
|
||||
await self._knx_send_percent(
|
||||
port.brightness_state_address, payload
|
||||
)
|
||||
else:
|
||||
target = port.brightness_state_address or port.brightness_address
|
||||
if target:
|
||||
payload = 0
|
||||
if port.brightness_state_address:
|
||||
payload = _invert_value(
|
||||
payload, port.brightness_state_address, self._address_options
|
||||
)
|
||||
await self._knx_send_percent(target, payload)
|
||||
payload = 0
|
||||
payload = _invert_value(
|
||||
payload,
|
||||
port.brightness_state_address,
|
||||
self._address_options,
|
||||
)
|
||||
await self._knx_send_percent(
|
||||
port.brightness_state_address, payload
|
||||
)
|
||||
|
||||
if rgb_color is None and hs_color is not None:
|
||||
rgb_color = color_util.color_hs_to_RGB(*hs_color)
|
||||
@@ -922,65 +951,56 @@ class BridgeManager:
|
||||
xy_color[0], xy_color[1], brightness or 255
|
||||
)
|
||||
|
||||
if port.color_state_address or port.color_address:
|
||||
target = port.color_state_address or port.color_address
|
||||
if rgb_color is not None and target:
|
||||
await self._knx_send_typed(target, list(rgb_color), "232.600")
|
||||
|
||||
if port.rgbw_state_address or port.rgbw_address:
|
||||
target = port.rgbw_state_address or port.rgbw_address
|
||||
if rgbw_color is not None and target:
|
||||
await self._knx_send_typed(target, list(rgbw_color), "251.600")
|
||||
|
||||
if port.hue_state_address or port.hue_address:
|
||||
target = port.hue_state_address or port.hue_address
|
||||
if hs_color is not None and target:
|
||||
await self._knx_send_typed(target, int(round(hs_color[0])), "5.003")
|
||||
|
||||
if port.saturation_state_address or port.saturation_address:
|
||||
target = port.saturation_state_address or port.saturation_address
|
||||
if hs_color is not None and target:
|
||||
payload = int(round(hs_color[1]))
|
||||
if port.saturation_state_address:
|
||||
payload = _invert_value(
|
||||
payload, port.saturation_state_address, self._address_options
|
||||
)
|
||||
await self._knx_send_percent(target, payload)
|
||||
|
||||
if port.xyy_state_address or port.xyy_address:
|
||||
target = port.xyy_state_address or port.xyy_address
|
||||
if xy_color is not None and target:
|
||||
if brightness_percent is None:
|
||||
brightness_value = 100 if is_on else 0
|
||||
else:
|
||||
brightness_value = brightness_percent
|
||||
await self._knx_send_typed(
|
||||
target,
|
||||
[float(xy_color[0]), float(xy_color[1]), int(brightness_value)],
|
||||
"242.600",
|
||||
)
|
||||
|
||||
if port.color_temperature_state_address or port.color_temperature_address:
|
||||
target = (
|
||||
port.color_temperature_state_address
|
||||
or port.color_temperature_address
|
||||
if port.color_state_address and rgb_color is not None:
|
||||
await self._knx_send_typed(
|
||||
port.color_state_address, list(rgb_color), "232.600"
|
||||
)
|
||||
if target and color_temp_kelvin is not None:
|
||||
payload, dpt_type = _color_temperature_payload(
|
||||
color_temp_kelvin,
|
||||
port,
|
||||
clamp=True,
|
||||
|
||||
if port.rgbw_state_address and rgbw_color is not None:
|
||||
await self._knx_send_typed(
|
||||
port.rgbw_state_address, list(rgbw_color), "251.600"
|
||||
)
|
||||
|
||||
if port.hue_state_address and hs_color is not None:
|
||||
await self._knx_send_typed(
|
||||
port.hue_state_address, int(round(hs_color[0])), "5.003"
|
||||
)
|
||||
|
||||
if port.saturation_state_address and hs_color is not None:
|
||||
payload = int(round(hs_color[1]))
|
||||
payload = _invert_value(
|
||||
payload, port.saturation_state_address, self._address_options
|
||||
)
|
||||
await self._knx_send_percent(
|
||||
port.saturation_state_address, payload
|
||||
)
|
||||
|
||||
if port.xyy_state_address and xy_color is not None:
|
||||
if brightness_percent is None:
|
||||
brightness_value = 100 if is_on else 0
|
||||
else:
|
||||
brightness_value = brightness_percent
|
||||
await self._knx_send_typed(
|
||||
port.xyy_state_address,
|
||||
[float(xy_color[0]), float(xy_color[1]), int(brightness_value)],
|
||||
"242.600",
|
||||
)
|
||||
|
||||
if port.color_temperature_state_address and color_temp_kelvin is not None:
|
||||
payload, dpt_type = _color_temperature_payload(
|
||||
color_temp_kelvin,
|
||||
port,
|
||||
clamp=True,
|
||||
)
|
||||
if port.color_temperature_mode == "relative":
|
||||
payload = _invert_value(
|
||||
int(round(payload)),
|
||||
port.color_temperature_state_address,
|
||||
self._address_options,
|
||||
)
|
||||
if (
|
||||
port.color_temperature_state_address
|
||||
and port.color_temperature_mode == "relative"
|
||||
):
|
||||
payload = _invert_value(
|
||||
int(round(payload)),
|
||||
port.color_temperature_state_address,
|
||||
self._address_options,
|
||||
)
|
||||
await self._knx_send_typed(target, payload, dpt_type)
|
||||
await self._knx_send_typed(
|
||||
port.color_temperature_state_address, payload, dpt_type
|
||||
)
|
||||
|
||||
self._update_light_components_from_state(
|
||||
port,
|
||||
@@ -1151,6 +1171,38 @@ class BridgeManager:
|
||||
)
|
||||
return
|
||||
|
||||
if action == "relative_dimming":
|
||||
value = _extract_event_value(event)
|
||||
if value is None:
|
||||
return
|
||||
if value in (0, 8):
|
||||
self._stop_light_dimming(port.entity_id)
|
||||
return
|
||||
step = _relative_dimming_step(value)
|
||||
if step is None:
|
||||
return
|
||||
direction, percent = step
|
||||
if percent <= 0:
|
||||
return
|
||||
self._start_light_dimming(port.entity_id, direction, percent)
|
||||
return
|
||||
|
||||
if action == "relative_color_temperature":
|
||||
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_"):
|
||||
await self._handle_light_component_action(port, "red", action, event)
|
||||
elif action.startswith("green_"):
|
||||
@@ -1379,6 +1431,65 @@ class BridgeManager:
|
||||
},
|
||||
)
|
||||
|
||||
def _start_light_dimming(
|
||||
self, entity_id: str, direction: str, percent: int
|
||||
) -> None:
|
||||
self._stop_light_dimming(entity_id)
|
||||
|
||||
async def _runner() -> None:
|
||||
while True:
|
||||
step = percent if direction == "up" else -percent
|
||||
await self._call_light_service(
|
||||
entity_id, "turn_on", {"brightness_step_pct": step}
|
||||
)
|
||||
await asyncio.sleep(0.3)
|
||||
|
||||
self._light_dimming_tasks[entity_id] = self.hass.async_create_task(
|
||||
_runner()
|
||||
)
|
||||
|
||||
def _stop_light_dimming(self, entity_id: str) -> None:
|
||||
task = self._light_dimming_tasks.pop(entity_id, None)
|
||||
if task is not None:
|
||||
task.cancel()
|
||||
|
||||
def _start_light_ct_adjust(
|
||||
self, port: LightPort, direction: str, percent: int
|
||||
) -> None:
|
||||
self._stop_light_ct_adjust(port.entity_id)
|
||||
|
||||
async def _runner() -> None:
|
||||
while True:
|
||||
current_kelvin = _current_color_temp_kelvin(self.hass, port)
|
||||
if current_kelvin is None:
|
||||
current_kelvin = _light_min_kelvin(port)
|
||||
delta = (_light_max_kelvin(port) - _light_min_kelvin(port)) * (
|
||||
percent / 100
|
||||
)
|
||||
if direction == "up":
|
||||
next_kelvin = current_kelvin + delta
|
||||
else:
|
||||
next_kelvin = current_kelvin - delta
|
||||
next_kelvin = min(
|
||||
max(next_kelvin, _light_min_kelvin(port)),
|
||||
_light_max_kelvin(port),
|
||||
)
|
||||
await self._call_light_service(
|
||||
port.entity_id,
|
||||
"turn_on",
|
||||
{"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:
|
||||
if "value" in event.data:
|
||||
@@ -1588,13 +1699,33 @@ def _current_hs_color(
|
||||
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:
|
||||
if mode == "relative":
|
||||
return "percent"
|
||||
if mode == "absolute":
|
||||
return "7.600"
|
||||
return "2byte_unsigned"
|
||||
if mode == "absolute_float":
|
||||
return "9"
|
||||
return "2byte_float"
|
||||
return None
|
||||
|
||||
|
||||
@@ -1647,6 +1778,31 @@ def _light_uses_white_channel(port: LightPort) -> bool:
|
||||
)
|
||||
|
||||
|
||||
def _relative_dimming_step(value: int) -> tuple[str, int] | None:
|
||||
value = value & 0x0F
|
||||
if value == 0 or value == 8:
|
||||
return None
|
||||
if value <= 7:
|
||||
direction = "down"
|
||||
step = value
|
||||
else:
|
||||
direction = "up"
|
||||
step = value - 8
|
||||
percent_map = {
|
||||
1: 10,
|
||||
2: 8,
|
||||
3: 6,
|
||||
4: 4,
|
||||
5: 3,
|
||||
6: 2,
|
||||
7: 1,
|
||||
}
|
||||
percent = percent_map.get(step)
|
||||
if percent is None:
|
||||
return None
|
||||
return direction, percent
|
||||
|
||||
|
||||
def _map_scalar_value(value: Any) -> int | None:
|
||||
if isinstance(value, bool):
|
||||
return 1 if value else 0
|
||||
|
||||
@@ -33,6 +33,8 @@ from .const import (
|
||||
CONF_LIGHT_COLOR_TEMPERATURE_ADDRESS,
|
||||
CONF_LIGHT_COLOR_TEMPERATURE_STATE_ADDRESS,
|
||||
CONF_LIGHT_COLOR_TEMPERATURE_MODE,
|
||||
CONF_LIGHT_RELATIVE_COLOR_TEMPERATURE_ADDRESS,
|
||||
CONF_LIGHT_RELATIVE_DIMMING_ADDRESS,
|
||||
CONF_LIGHT_MIN_KELVIN,
|
||||
CONF_LIGHT_MAX_KELVIN,
|
||||
CONF_LIGHT_RED_ADDRESS,
|
||||
@@ -646,6 +648,12 @@ def _light_schema(defaults: dict | None = None) -> vol.Schema:
|
||||
defaults.get(_invert_out_key(CONF_LIGHT_BRIGHTNESS_STATE_ADDRESS))
|
||||
),
|
||||
): selector.BooleanSelector(),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_RELATIVE_DIMMING_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_RELATIVE_DIMMING_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_COLOR_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_COLOR_ADDRESS, ""),
|
||||
@@ -732,6 +740,12 @@ def _light_schema(defaults: dict | None = None) -> vol.Schema:
|
||||
)
|
||||
),
|
||||
): 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(
|
||||
CONF_LIGHT_COLOR_TEMPERATURE_MODE,
|
||||
default=defaults.get(CONF_LIGHT_COLOR_TEMPERATURE_MODE, "absolute"),
|
||||
@@ -944,6 +958,8 @@ def _port_keys(port_type: str) -> list[str]:
|
||||
CONF_LIGHT_XYY_STATE_ADDRESS,
|
||||
CONF_LIGHT_COLOR_TEMPERATURE_ADDRESS,
|
||||
CONF_LIGHT_COLOR_TEMPERATURE_STATE_ADDRESS,
|
||||
CONF_LIGHT_RELATIVE_COLOR_TEMPERATURE_ADDRESS,
|
||||
CONF_LIGHT_RELATIVE_DIMMING_ADDRESS,
|
||||
CONF_LIGHT_RED_ADDRESS,
|
||||
CONF_LIGHT_RED_STATE_ADDRESS,
|
||||
CONF_LIGHT_RED_BRIGHTNESS_ADDRESS,
|
||||
|
||||
@@ -18,8 +18,8 @@ CONF_POSITION_STATE_ADDRESS = "position_state_address"
|
||||
CONF_ANGLE_ADDRESS = "angle_address"
|
||||
CONF_ANGLE_STATE_ADDRESS = "angle_state_address"
|
||||
|
||||
CONF_LIGHT_ADDRESS = "address"
|
||||
CONF_LIGHT_STATE_ADDRESS = "state_address"
|
||||
CONF_LIGHT_ADDRESS = "light_address"
|
||||
CONF_LIGHT_STATE_ADDRESS = "light_state_address"
|
||||
CONF_LIGHT_BRIGHTNESS_ADDRESS = "brightness_address"
|
||||
CONF_LIGHT_BRIGHTNESS_STATE_ADDRESS = "brightness_state_address"
|
||||
CONF_LIGHT_COLOR_ADDRESS = "color_address"
|
||||
@@ -34,6 +34,8 @@ CONF_LIGHT_XYY_ADDRESS = "xyy_address"
|
||||
CONF_LIGHT_XYY_STATE_ADDRESS = "xyy_state_address"
|
||||
CONF_LIGHT_COLOR_TEMPERATURE_ADDRESS = "color_temperature_address"
|
||||
CONF_LIGHT_COLOR_TEMPERATURE_STATE_ADDRESS = "color_temperature_state_address"
|
||||
CONF_LIGHT_RELATIVE_COLOR_TEMPERATURE_ADDRESS = "relative_color_temperature_address"
|
||||
CONF_LIGHT_RELATIVE_DIMMING_ADDRESS = "relative_dimming_address"
|
||||
CONF_LIGHT_COLOR_TEMPERATURE_MODE = "color_temperature_mode"
|
||||
CONF_LIGHT_MIN_KELVIN = "min_kelvin"
|
||||
CONF_LIGHT_MAX_KELVIN = "max_kelvin"
|
||||
@@ -86,6 +88,8 @@ ADDRESS_DPT_MAP: dict[str, str] = {
|
||||
CONF_LIGHT_XYY_STATE_ADDRESS: "242.600",
|
||||
CONF_LIGHT_COLOR_TEMPERATURE_ADDRESS: "5.001/7.600/9",
|
||||
CONF_LIGHT_COLOR_TEMPERATURE_STATE_ADDRESS: "5.001/7.600/9",
|
||||
CONF_LIGHT_RELATIVE_COLOR_TEMPERATURE_ADDRESS: "3.007",
|
||||
CONF_LIGHT_RELATIVE_DIMMING_ADDRESS: "3.007",
|
||||
CONF_LIGHT_RED_ADDRESS: "1.001",
|
||||
CONF_LIGHT_RED_STATE_ADDRESS: "1.001",
|
||||
CONF_LIGHT_RED_BRIGHTNESS_ADDRESS: "5.001",
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"domain": "ha_knx_bridge",
|
||||
"name": "HA KNX Bridge",
|
||||
"version": "0.0.21",
|
||||
"version": "0.0.27",
|
||||
"config_flow": true,
|
||||
"documentation": "https://github.com/bahmcloud/HA-KNX-Bridge",
|
||||
"issue_tracker": "https://github.com/bahmcloud/HA-KNX-Bridge/issues",
|
||||
|
||||
@@ -73,12 +73,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -93,6 +94,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -174,12 +176,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -194,6 +197,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -283,12 +287,13 @@
|
||||
"title": "Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -303,6 +308,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
@@ -56,12 +56,13 @@
|
||||
"title": "Add Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -76,6 +77,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
@@ -157,12 +159,13 @@
|
||||
"title": "Edit Light Port",
|
||||
"data": {
|
||||
"entity_id": "Light entity",
|
||||
"address": "On/off address (DPT 1.001)",
|
||||
"state_address": "On/off state address (DPT 1.001)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"light_address": "On/off address (DPT 1.001)",
|
||||
"light_state_address": "On/off state address (DPT 1.001)",
|
||||
"light_state_address_invert_outgoing": "Invert outgoing",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"relative_dimming_address": "Relative dimming address (DPT 3.007)",
|
||||
"color_address": "RGB color address (DPT 232.600)",
|
||||
"color_state_address": "RGB color state address (DPT 232.600)",
|
||||
"rgbw_address": "RGBW color address (DPT 251.600)",
|
||||
@@ -177,6 +180,7 @@
|
||||
"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_invert_outgoing": "Invert outgoing",
|
||||
"relative_color_temperature_address": "Relative color temperature address (DPT 3.007)",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
|
||||
Reference in New Issue
Block a user