mirror of
https://github.com/bahmcloud/HA-KNX-Bridge.git
synced 2026-04-06 14:31:13 +00:00
Fix light port key collisions
This commit is contained in:
@@ -882,38 +882,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 +919,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,
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"domain": "ha_knx_bridge",
|
||||
"name": "HA KNX Bridge",
|
||||
"version": "0.0.21",
|
||||
"version": "0.0.22",
|
||||
"config_flow": true,
|
||||
"documentation": "https://github.com/bahmcloud/HA-KNX-Bridge",
|
||||
"issue_tracker": "https://github.com/bahmcloud/HA-KNX-Bridge/issues",
|
||||
|
||||
@@ -73,9 +73,9 @@
|
||||
"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",
|
||||
@@ -174,9 +174,9 @@
|
||||
"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",
|
||||
@@ -283,9 +283,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
@@ -56,9 +56,9 @@
|
||||
"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",
|
||||
@@ -157,9 +157,9 @@
|
||||
"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",
|
||||
|
||||
Reference in New Issue
Block a user