mirror of
https://github.com/bahmcloud/HA-KNX-Bridge.git
synced 2026-04-06 16:51:14 +00:00
Add light port support
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -16,6 +16,42 @@ from .const import (
|
||||
CONF_COMMAND_ADDRESS,
|
||||
CONF_INVERT_OUTGOING,
|
||||
CONF_KNX_ENTRY_ID,
|
||||
CONF_LIGHT_ADDRESS,
|
||||
CONF_LIGHT_STATE_ADDRESS,
|
||||
CONF_LIGHT_BRIGHTNESS_ADDRESS,
|
||||
CONF_LIGHT_BRIGHTNESS_STATE_ADDRESS,
|
||||
CONF_LIGHT_COLOR_ADDRESS,
|
||||
CONF_LIGHT_COLOR_STATE_ADDRESS,
|
||||
CONF_LIGHT_RGBW_ADDRESS,
|
||||
CONF_LIGHT_RGBW_STATE_ADDRESS,
|
||||
CONF_LIGHT_HUE_ADDRESS,
|
||||
CONF_LIGHT_HUE_STATE_ADDRESS,
|
||||
CONF_LIGHT_SATURATION_ADDRESS,
|
||||
CONF_LIGHT_SATURATION_STATE_ADDRESS,
|
||||
CONF_LIGHT_XYY_ADDRESS,
|
||||
CONF_LIGHT_XYY_STATE_ADDRESS,
|
||||
CONF_LIGHT_COLOR_TEMPERATURE_ADDRESS,
|
||||
CONF_LIGHT_COLOR_TEMPERATURE_STATE_ADDRESS,
|
||||
CONF_LIGHT_COLOR_TEMPERATURE_MODE,
|
||||
CONF_LIGHT_MIN_KELVIN,
|
||||
CONF_LIGHT_MAX_KELVIN,
|
||||
CONF_LIGHT_RED_ADDRESS,
|
||||
CONF_LIGHT_RED_STATE_ADDRESS,
|
||||
CONF_LIGHT_RED_BRIGHTNESS_ADDRESS,
|
||||
CONF_LIGHT_RED_BRIGHTNESS_STATE_ADDRESS,
|
||||
CONF_LIGHT_GREEN_ADDRESS,
|
||||
CONF_LIGHT_GREEN_STATE_ADDRESS,
|
||||
CONF_LIGHT_GREEN_BRIGHTNESS_ADDRESS,
|
||||
CONF_LIGHT_GREEN_BRIGHTNESS_STATE_ADDRESS,
|
||||
CONF_LIGHT_BLUE_ADDRESS,
|
||||
CONF_LIGHT_BLUE_STATE_ADDRESS,
|
||||
CONF_LIGHT_BLUE_BRIGHTNESS_ADDRESS,
|
||||
CONF_LIGHT_BLUE_BRIGHTNESS_STATE_ADDRESS,
|
||||
CONF_LIGHT_WHITE_ADDRESS,
|
||||
CONF_LIGHT_WHITE_STATE_ADDRESS,
|
||||
CONF_LIGHT_WHITE_BRIGHTNESS_ADDRESS,
|
||||
CONF_LIGHT_WHITE_BRIGHTNESS_STATE_ADDRESS,
|
||||
LIGHT_COLOR_TEMPERATURE_MODES,
|
||||
CONF_MOVE_LONG_ADDRESS,
|
||||
CONF_MOVE_SHORT_ADDRESS,
|
||||
CONF_PORTS,
|
||||
@@ -85,6 +121,9 @@ class HAKnxBridgeConfigFlow(config_entries.ConfigFlow, domain=DOMAIN):
|
||||
"cover": subentry_type(
|
||||
name="Cover Port", flow_class=CoverPortSubentryFlow
|
||||
),
|
||||
"light": subentry_type(
|
||||
name="Light Port", flow_class=LightPortSubentryFlow
|
||||
),
|
||||
}
|
||||
|
||||
|
||||
@@ -99,6 +138,7 @@ class HAKnxBridgeOptionsFlow(config_entries.OptionsFlow):
|
||||
"add_binary_sensor",
|
||||
"add_switch",
|
||||
"add_cover",
|
||||
"add_light",
|
||||
"edit_port",
|
||||
"remove_port",
|
||||
],
|
||||
@@ -163,6 +203,19 @@ class HAKnxBridgeOptionsFlow(config_entries.OptionsFlow):
|
||||
|
||||
return self.async_show_form(step_id="add_cover", data_schema=_cover_schema())
|
||||
|
||||
async def async_step_add_light(self, user_input: dict | None = None):
|
||||
if user_input is not None:
|
||||
user_input, errors = _validate_knx_addresses(
|
||||
user_input, _port_keys("light")
|
||||
)
|
||||
if errors:
|
||||
return self.async_show_form(
|
||||
step_id="add_light", data_schema=_light_schema(), errors=errors
|
||||
)
|
||||
return await self._async_store_port("light", user_input)
|
||||
|
||||
return self.async_show_form(step_id="add_light", data_schema=_light_schema())
|
||||
|
||||
async def async_step_remove_port(self, user_input: dict | None = None):
|
||||
ports = list(self._config_entry.options.get(CONF_PORTS, []))
|
||||
if not ports:
|
||||
@@ -223,6 +276,11 @@ class HAKnxBridgeOptionsFlow(config_entries.OptionsFlow):
|
||||
step_id="edit_cover",
|
||||
data_schema=_cover_schema(defaults=data),
|
||||
)
|
||||
if port_type == "light":
|
||||
return self.async_show_form(
|
||||
step_id="edit_light",
|
||||
data_schema=_light_schema(defaults=data),
|
||||
)
|
||||
return self.async_abort(reason="no_ports_to_edit")
|
||||
|
||||
options = [
|
||||
@@ -253,6 +311,9 @@ class HAKnxBridgeOptionsFlow(config_entries.OptionsFlow):
|
||||
async def async_step_edit_cover(self, user_input: dict | None = None):
|
||||
return await self._async_edit_port("cover", user_input, _cover_schema)
|
||||
|
||||
async def async_step_edit_light(self, user_input: dict | None = None):
|
||||
return await self._async_edit_port("light", user_input, _light_schema)
|
||||
|
||||
async def _async_store_port(self, port_type: str, user_input: dict):
|
||||
ports = list(self._config_entry.options.get(CONF_PORTS, []))
|
||||
title = _entity_title(self.hass, user_input[CONF_ENTITY_ID])
|
||||
@@ -375,6 +436,23 @@ class CoverPortSubentryFlow(config_entries.ConfigSubentryFlow):
|
||||
return self.async_show_form(step_id="user", data_schema=_cover_schema())
|
||||
|
||||
|
||||
class LightPortSubentryFlow(config_entries.ConfigSubentryFlow):
|
||||
VERSION = 1
|
||||
|
||||
async def async_step_user(self, user_input: dict | None = None):
|
||||
if user_input is not None:
|
||||
user_input, errors = _validate_knx_addresses(
|
||||
user_input, _port_keys("light")
|
||||
)
|
||||
if errors:
|
||||
return self.async_show_form(
|
||||
step_id="user", data_schema=_light_schema(), errors=errors
|
||||
)
|
||||
title = _entity_title(self.hass, user_input[CONF_ENTITY_ID])
|
||||
return self.async_create_entry(title=title, data=user_input)
|
||||
|
||||
return self.async_show_form(step_id="user", data_schema=_light_schema())
|
||||
|
||||
def _entity_title(hass, entity_id: str) -> str:
|
||||
state = hass.states.get(entity_id)
|
||||
if state is None:
|
||||
@@ -517,6 +595,322 @@ def _switch_schema(defaults: dict | None = None) -> vol.Schema:
|
||||
)
|
||||
|
||||
|
||||
def _light_schema(defaults: dict | None = None) -> vol.Schema:
|
||||
defaults = defaults or {}
|
||||
color_temperature_options = [
|
||||
{
|
||||
"value": mode,
|
||||
"label": mode.replace("_", " ").title(),
|
||||
}
|
||||
for mode in LIGHT_COLOR_TEMPERATURE_MODES
|
||||
]
|
||||
return vol.Schema(
|
||||
{
|
||||
vol.Required(
|
||||
CONF_ENTITY_ID,
|
||||
default=defaults.get(CONF_ENTITY_ID, ""),
|
||||
): selector.EntitySelector(
|
||||
selector.EntitySelectorConfig(domain=["light"])
|
||||
),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_STATE_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_STATE_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
_invert_out_key(CONF_LIGHT_STATE_ADDRESS),
|
||||
default=bool(defaults.get(_invert_out_key(CONF_LIGHT_STATE_ADDRESS))),
|
||||
): selector.BooleanSelector(),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_BRIGHTNESS_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_BRIGHTNESS_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_BRIGHTNESS_STATE_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_BRIGHTNESS_STATE_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
_invert_out_key(CONF_LIGHT_BRIGHTNESS_STATE_ADDRESS),
|
||||
default=bool(
|
||||
defaults.get(_invert_out_key(CONF_LIGHT_BRIGHTNESS_STATE_ADDRESS))
|
||||
),
|
||||
): selector.BooleanSelector(),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_COLOR_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_COLOR_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_COLOR_STATE_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_COLOR_STATE_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_RGBW_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_RGBW_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_RGBW_STATE_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_RGBW_STATE_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_HUE_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_HUE_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_HUE_STATE_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_HUE_STATE_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_SATURATION_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_SATURATION_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_SATURATION_STATE_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_SATURATION_STATE_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
_invert_out_key(CONF_LIGHT_SATURATION_STATE_ADDRESS),
|
||||
default=bool(
|
||||
defaults.get(_invert_out_key(CONF_LIGHT_SATURATION_STATE_ADDRESS))
|
||||
),
|
||||
): selector.BooleanSelector(),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_XYY_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_XYY_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_XYY_STATE_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_XYY_STATE_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_COLOR_TEMPERATURE_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_COLOR_TEMPERATURE_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_COLOR_TEMPERATURE_STATE_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_COLOR_TEMPERATURE_STATE_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
_invert_out_key(CONF_LIGHT_COLOR_TEMPERATURE_STATE_ADDRESS),
|
||||
default=bool(
|
||||
defaults.get(
|
||||
_invert_out_key(CONF_LIGHT_COLOR_TEMPERATURE_STATE_ADDRESS)
|
||||
)
|
||||
),
|
||||
): selector.BooleanSelector(),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_COLOR_TEMPERATURE_MODE,
|
||||
default=defaults.get(CONF_LIGHT_COLOR_TEMPERATURE_MODE, "absolute"),
|
||||
): selector.SelectSelector(
|
||||
selector.SelectSelectorConfig(
|
||||
options=color_temperature_options, mode="dropdown"
|
||||
)
|
||||
),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_MIN_KELVIN,
|
||||
default=defaults.get(CONF_LIGHT_MIN_KELVIN, 2000),
|
||||
): selector.NumberSelector(
|
||||
selector.NumberSelectorConfig(min=1000, max=20000, step=1, mode="box")
|
||||
),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_MAX_KELVIN,
|
||||
default=defaults.get(CONF_LIGHT_MAX_KELVIN, 6500),
|
||||
): selector.NumberSelector(
|
||||
selector.NumberSelectorConfig(min=1000, max=20000, step=1, mode="box")
|
||||
),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_RED_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_RED_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_RED_STATE_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_RED_STATE_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
_invert_out_key(CONF_LIGHT_RED_STATE_ADDRESS),
|
||||
default=bool(
|
||||
defaults.get(_invert_out_key(CONF_LIGHT_RED_STATE_ADDRESS))
|
||||
),
|
||||
): selector.BooleanSelector(),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_RED_BRIGHTNESS_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_RED_BRIGHTNESS_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_RED_BRIGHTNESS_STATE_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_RED_BRIGHTNESS_STATE_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
_invert_out_key(CONF_LIGHT_RED_BRIGHTNESS_STATE_ADDRESS),
|
||||
default=bool(
|
||||
defaults.get(
|
||||
_invert_out_key(CONF_LIGHT_RED_BRIGHTNESS_STATE_ADDRESS)
|
||||
)
|
||||
),
|
||||
): selector.BooleanSelector(),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_GREEN_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_GREEN_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_GREEN_STATE_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_GREEN_STATE_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
_invert_out_key(CONF_LIGHT_GREEN_STATE_ADDRESS),
|
||||
default=bool(
|
||||
defaults.get(_invert_out_key(CONF_LIGHT_GREEN_STATE_ADDRESS))
|
||||
),
|
||||
): selector.BooleanSelector(),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_GREEN_BRIGHTNESS_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_GREEN_BRIGHTNESS_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_GREEN_BRIGHTNESS_STATE_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_GREEN_BRIGHTNESS_STATE_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
_invert_out_key(CONF_LIGHT_GREEN_BRIGHTNESS_STATE_ADDRESS),
|
||||
default=bool(
|
||||
defaults.get(
|
||||
_invert_out_key(CONF_LIGHT_GREEN_BRIGHTNESS_STATE_ADDRESS)
|
||||
)
|
||||
),
|
||||
): selector.BooleanSelector(),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_BLUE_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_BLUE_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_BLUE_STATE_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_BLUE_STATE_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
_invert_out_key(CONF_LIGHT_BLUE_STATE_ADDRESS),
|
||||
default=bool(
|
||||
defaults.get(_invert_out_key(CONF_LIGHT_BLUE_STATE_ADDRESS))
|
||||
),
|
||||
): selector.BooleanSelector(),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_BLUE_BRIGHTNESS_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_BLUE_BRIGHTNESS_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_BLUE_BRIGHTNESS_STATE_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_BLUE_BRIGHTNESS_STATE_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
_invert_out_key(CONF_LIGHT_BLUE_BRIGHTNESS_STATE_ADDRESS),
|
||||
default=bool(
|
||||
defaults.get(
|
||||
_invert_out_key(CONF_LIGHT_BLUE_BRIGHTNESS_STATE_ADDRESS)
|
||||
)
|
||||
),
|
||||
): selector.BooleanSelector(),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_WHITE_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_WHITE_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_WHITE_STATE_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_WHITE_STATE_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
_invert_out_key(CONF_LIGHT_WHITE_STATE_ADDRESS),
|
||||
default=bool(
|
||||
defaults.get(_invert_out_key(CONF_LIGHT_WHITE_STATE_ADDRESS))
|
||||
),
|
||||
): selector.BooleanSelector(),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_WHITE_BRIGHTNESS_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_WHITE_BRIGHTNESS_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
CONF_LIGHT_WHITE_BRIGHTNESS_STATE_ADDRESS,
|
||||
default=defaults.get(CONF_LIGHT_WHITE_BRIGHTNESS_STATE_ADDRESS, ""),
|
||||
): selector.TextSelector(
|
||||
selector.TextSelectorConfig(type="text")
|
||||
),
|
||||
vol.Optional(
|
||||
_invert_out_key(CONF_LIGHT_WHITE_BRIGHTNESS_STATE_ADDRESS),
|
||||
default=bool(
|
||||
defaults.get(
|
||||
_invert_out_key(CONF_LIGHT_WHITE_BRIGHTNESS_STATE_ADDRESS)
|
||||
)
|
||||
),
|
||||
): selector.BooleanSelector(),
|
||||
vol.Optional(CONF_ENABLED, default=bool(defaults.get(CONF_ENABLED, True))): (
|
||||
selector.BooleanSelector()
|
||||
),
|
||||
}
|
||||
)
|
||||
|
||||
|
||||
def _port_keys(port_type: str) -> list[str]:
|
||||
if port_type == "binary_sensor":
|
||||
return [CONF_STATE_ADDRESS]
|
||||
@@ -532,6 +926,41 @@ def _port_keys(port_type: str) -> list[str]:
|
||||
CONF_ANGLE_ADDRESS,
|
||||
CONF_ANGLE_STATE_ADDRESS,
|
||||
]
|
||||
if port_type == "light":
|
||||
return [
|
||||
CONF_LIGHT_ADDRESS,
|
||||
CONF_LIGHT_STATE_ADDRESS,
|
||||
CONF_LIGHT_BRIGHTNESS_ADDRESS,
|
||||
CONF_LIGHT_BRIGHTNESS_STATE_ADDRESS,
|
||||
CONF_LIGHT_COLOR_ADDRESS,
|
||||
CONF_LIGHT_COLOR_STATE_ADDRESS,
|
||||
CONF_LIGHT_RGBW_ADDRESS,
|
||||
CONF_LIGHT_RGBW_STATE_ADDRESS,
|
||||
CONF_LIGHT_HUE_ADDRESS,
|
||||
CONF_LIGHT_HUE_STATE_ADDRESS,
|
||||
CONF_LIGHT_SATURATION_ADDRESS,
|
||||
CONF_LIGHT_SATURATION_STATE_ADDRESS,
|
||||
CONF_LIGHT_XYY_ADDRESS,
|
||||
CONF_LIGHT_XYY_STATE_ADDRESS,
|
||||
CONF_LIGHT_COLOR_TEMPERATURE_ADDRESS,
|
||||
CONF_LIGHT_COLOR_TEMPERATURE_STATE_ADDRESS,
|
||||
CONF_LIGHT_RED_ADDRESS,
|
||||
CONF_LIGHT_RED_STATE_ADDRESS,
|
||||
CONF_LIGHT_RED_BRIGHTNESS_ADDRESS,
|
||||
CONF_LIGHT_RED_BRIGHTNESS_STATE_ADDRESS,
|
||||
CONF_LIGHT_GREEN_ADDRESS,
|
||||
CONF_LIGHT_GREEN_STATE_ADDRESS,
|
||||
CONF_LIGHT_GREEN_BRIGHTNESS_ADDRESS,
|
||||
CONF_LIGHT_GREEN_BRIGHTNESS_STATE_ADDRESS,
|
||||
CONF_LIGHT_BLUE_ADDRESS,
|
||||
CONF_LIGHT_BLUE_STATE_ADDRESS,
|
||||
CONF_LIGHT_BLUE_BRIGHTNESS_ADDRESS,
|
||||
CONF_LIGHT_BLUE_BRIGHTNESS_STATE_ADDRESS,
|
||||
CONF_LIGHT_WHITE_ADDRESS,
|
||||
CONF_LIGHT_WHITE_STATE_ADDRESS,
|
||||
CONF_LIGHT_WHITE_BRIGHTNESS_ADDRESS,
|
||||
CONF_LIGHT_WHITE_BRIGHTNESS_STATE_ADDRESS,
|
||||
]
|
||||
return []
|
||||
|
||||
|
||||
|
||||
@@ -18,6 +18,48 @@ 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_BRIGHTNESS_ADDRESS = "brightness_address"
|
||||
CONF_LIGHT_BRIGHTNESS_STATE_ADDRESS = "brightness_state_address"
|
||||
CONF_LIGHT_COLOR_ADDRESS = "color_address"
|
||||
CONF_LIGHT_COLOR_STATE_ADDRESS = "color_state_address"
|
||||
CONF_LIGHT_RGBW_ADDRESS = "rgbw_address"
|
||||
CONF_LIGHT_RGBW_STATE_ADDRESS = "rgbw_state_address"
|
||||
CONF_LIGHT_HUE_ADDRESS = "hue_address"
|
||||
CONF_LIGHT_HUE_STATE_ADDRESS = "hue_state_address"
|
||||
CONF_LIGHT_SATURATION_ADDRESS = "saturation_address"
|
||||
CONF_LIGHT_SATURATION_STATE_ADDRESS = "saturation_state_address"
|
||||
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_COLOR_TEMPERATURE_MODE = "color_temperature_mode"
|
||||
CONF_LIGHT_MIN_KELVIN = "min_kelvin"
|
||||
CONF_LIGHT_MAX_KELVIN = "max_kelvin"
|
||||
CONF_LIGHT_RED_ADDRESS = "red_address"
|
||||
CONF_LIGHT_RED_STATE_ADDRESS = "red_state_address"
|
||||
CONF_LIGHT_RED_BRIGHTNESS_ADDRESS = "red_brightness_address"
|
||||
CONF_LIGHT_RED_BRIGHTNESS_STATE_ADDRESS = "red_brightness_state_address"
|
||||
CONF_LIGHT_GREEN_ADDRESS = "green_address"
|
||||
CONF_LIGHT_GREEN_STATE_ADDRESS = "green_state_address"
|
||||
CONF_LIGHT_GREEN_BRIGHTNESS_ADDRESS = "green_brightness_address"
|
||||
CONF_LIGHT_GREEN_BRIGHTNESS_STATE_ADDRESS = "green_brightness_state_address"
|
||||
CONF_LIGHT_BLUE_ADDRESS = "blue_address"
|
||||
CONF_LIGHT_BLUE_STATE_ADDRESS = "blue_state_address"
|
||||
CONF_LIGHT_BLUE_BRIGHTNESS_ADDRESS = "blue_brightness_address"
|
||||
CONF_LIGHT_BLUE_BRIGHTNESS_STATE_ADDRESS = "blue_brightness_state_address"
|
||||
CONF_LIGHT_WHITE_ADDRESS = "white_address"
|
||||
CONF_LIGHT_WHITE_STATE_ADDRESS = "white_state_address"
|
||||
CONF_LIGHT_WHITE_BRIGHTNESS_ADDRESS = "white_brightness_address"
|
||||
CONF_LIGHT_WHITE_BRIGHTNESS_STATE_ADDRESS = "white_brightness_state_address"
|
||||
|
||||
LIGHT_COLOR_TEMPERATURE_MODES = [
|
||||
"relative",
|
||||
"absolute",
|
||||
"absolute_float",
|
||||
]
|
||||
|
||||
ADDRESS_DPT_MAP: dict[str, str] = {
|
||||
CONF_STATE_ADDRESS: "1",
|
||||
CONF_COMMAND_ADDRESS: "1",
|
||||
@@ -28,6 +70,38 @@ ADDRESS_DPT_MAP: dict[str, str] = {
|
||||
CONF_POSITION_STATE_ADDRESS: "5.001",
|
||||
CONF_ANGLE_ADDRESS: "5.001",
|
||||
CONF_ANGLE_STATE_ADDRESS: "5.001",
|
||||
CONF_LIGHT_ADDRESS: "1.001",
|
||||
CONF_LIGHT_STATE_ADDRESS: "1.001",
|
||||
CONF_LIGHT_BRIGHTNESS_ADDRESS: "5.001",
|
||||
CONF_LIGHT_BRIGHTNESS_STATE_ADDRESS: "5.001",
|
||||
CONF_LIGHT_COLOR_ADDRESS: "232.600",
|
||||
CONF_LIGHT_COLOR_STATE_ADDRESS: "232.600",
|
||||
CONF_LIGHT_RGBW_ADDRESS: "251.600",
|
||||
CONF_LIGHT_RGBW_STATE_ADDRESS: "251.600",
|
||||
CONF_LIGHT_HUE_ADDRESS: "5.003",
|
||||
CONF_LIGHT_HUE_STATE_ADDRESS: "5.003",
|
||||
CONF_LIGHT_SATURATION_ADDRESS: "5.001",
|
||||
CONF_LIGHT_SATURATION_STATE_ADDRESS: "5.001",
|
||||
CONF_LIGHT_XYY_ADDRESS: "242.600",
|
||||
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_RED_ADDRESS: "1.001",
|
||||
CONF_LIGHT_RED_STATE_ADDRESS: "1.001",
|
||||
CONF_LIGHT_RED_BRIGHTNESS_ADDRESS: "5.001",
|
||||
CONF_LIGHT_RED_BRIGHTNESS_STATE_ADDRESS: "5.001",
|
||||
CONF_LIGHT_GREEN_ADDRESS: "1.001",
|
||||
CONF_LIGHT_GREEN_STATE_ADDRESS: "1.001",
|
||||
CONF_LIGHT_GREEN_BRIGHTNESS_ADDRESS: "5.001",
|
||||
CONF_LIGHT_GREEN_BRIGHTNESS_STATE_ADDRESS: "5.001",
|
||||
CONF_LIGHT_BLUE_ADDRESS: "1.001",
|
||||
CONF_LIGHT_BLUE_STATE_ADDRESS: "1.001",
|
||||
CONF_LIGHT_BLUE_BRIGHTNESS_ADDRESS: "5.001",
|
||||
CONF_LIGHT_BLUE_BRIGHTNESS_STATE_ADDRESS: "5.001",
|
||||
CONF_LIGHT_WHITE_ADDRESS: "1.001",
|
||||
CONF_LIGHT_WHITE_STATE_ADDRESS: "1.001",
|
||||
CONF_LIGHT_WHITE_BRIGHTNESS_ADDRESS: "5.001",
|
||||
CONF_LIGHT_WHITE_BRIGHTNESS_STATE_ADDRESS: "5.001",
|
||||
}
|
||||
|
||||
ADDRESS_VALUE_TYPE: dict[str, str] = {
|
||||
@@ -35,6 +109,12 @@ ADDRESS_VALUE_TYPE: dict[str, str] = {
|
||||
CONF_POSITION_STATE_ADDRESS: "percent",
|
||||
CONF_ANGLE_ADDRESS: "percent",
|
||||
CONF_ANGLE_STATE_ADDRESS: "percent",
|
||||
CONF_LIGHT_BRIGHTNESS_STATE_ADDRESS: "percent",
|
||||
CONF_LIGHT_SATURATION_STATE_ADDRESS: "percent",
|
||||
CONF_LIGHT_RED_BRIGHTNESS_STATE_ADDRESS: "percent",
|
||||
CONF_LIGHT_GREEN_BRIGHTNESS_STATE_ADDRESS: "percent",
|
||||
CONF_LIGHT_BLUE_BRIGHTNESS_STATE_ADDRESS: "percent",
|
||||
CONF_LIGHT_WHITE_BRIGHTNESS_STATE_ADDRESS: "percent",
|
||||
}
|
||||
|
||||
ADDRESS_EVENT_TYPE: dict[str, str] = {
|
||||
@@ -44,4 +124,14 @@ ADDRESS_EVENT_TYPE: dict[str, str] = {
|
||||
CONF_POSITION_STATE_ADDRESS: "percent",
|
||||
CONF_ANGLE_ADDRESS: "percent",
|
||||
CONF_ANGLE_STATE_ADDRESS: "percent",
|
||||
CONF_LIGHT_BRIGHTNESS_ADDRESS: "percent",
|
||||
CONF_LIGHT_COLOR_ADDRESS: "232.600",
|
||||
CONF_LIGHT_RGBW_ADDRESS: "251.600",
|
||||
CONF_LIGHT_HUE_ADDRESS: "angle",
|
||||
CONF_LIGHT_SATURATION_ADDRESS: "percent",
|
||||
CONF_LIGHT_XYY_ADDRESS: "242.600",
|
||||
CONF_LIGHT_RED_BRIGHTNESS_ADDRESS: "percent",
|
||||
CONF_LIGHT_GREEN_BRIGHTNESS_ADDRESS: "percent",
|
||||
CONF_LIGHT_BLUE_BRIGHTNESS_ADDRESS: "percent",
|
||||
CONF_LIGHT_WHITE_BRIGHTNESS_ADDRESS: "percent",
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"domain": "ha_knx_bridge",
|
||||
"name": "HA KNX Bridge",
|
||||
"version": "0.0.20",
|
||||
"version": "0.0.21",
|
||||
"config_flow": true,
|
||||
"documentation": "https://github.com/bahmcloud/HA-KNX-Bridge",
|
||||
"issue_tracker": "https://github.com/bahmcloud/HA-KNX-Bridge/issues",
|
||||
|
||||
@@ -18,7 +18,8 @@
|
||||
},
|
||||
"options": {
|
||||
"abort": {
|
||||
"no_ports_to_remove": "There are no ports to remove yet."
|
||||
"no_ports_to_remove": "There are no ports to remove yet.",
|
||||
"no_ports_to_edit": "There are no ports to edit yet."
|
||||
},
|
||||
"step": {
|
||||
"init": {
|
||||
@@ -28,6 +29,8 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
},
|
||||
@@ -36,7 +39,8 @@
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -44,9 +48,9 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -54,19 +58,69 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -74,6 +128,101 @@
|
||||
"data": {
|
||||
"port_id": "Port to remove"
|
||||
}
|
||||
},
|
||||
"edit_port": {
|
||||
"title": "Edit Port",
|
||||
"data": {
|
||||
"port_id": "Port to edit"
|
||||
}
|
||||
},
|
||||
"edit_binary_sensor": {
|
||||
"title": "Edit Binary Sensor Port",
|
||||
"data": {
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
"title": "Edit Switch Port",
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
"title": "Edit Cover Port",
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -101,7 +250,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -116,23 +264,76 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"light": {
|
||||
"step": {
|
||||
"user": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,6 +12,7 @@
|
||||
"add_binary_sensor": "Add binary sensor port",
|
||||
"add_switch": "Add switch port",
|
||||
"add_cover": "Add cover port",
|
||||
"add_light": "Add light port",
|
||||
"edit_port": "Edit port",
|
||||
"remove_port": "Remove port"
|
||||
}
|
||||
@@ -30,7 +31,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -41,22 +41,71 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
"title": "Remove Port",
|
||||
"data": {
|
||||
@@ -83,7 +132,6 @@
|
||||
"data": {
|
||||
"entity_id": "Switch entity",
|
||||
"command_address": "Command group address (DPT 1)",
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
@@ -94,21 +142,70 @@
|
||||
"data": {
|
||||
"entity_id": "Cover entity",
|
||||
"move_long_address": "Move long (DPT 1.008 Up/Down)",
|
||||
"move_long_address_invert_outgoing": "Invert outgoing",
|
||||
"move_short_address": "Move short (DPT 1.007 Step)",
|
||||
"move_short_address_invert_outgoing": "Invert outgoing",
|
||||
"stop_address": "Stop (DPT 1)",
|
||||
"stop_address_invert_outgoing": "Invert outgoing",
|
||||
"position_address": "Set position (DPT 5.001)",
|
||||
"position_address_invert_outgoing": "Invert outgoing",
|
||||
"position_state_address": "State position (DPT 5.001)",
|
||||
"position_state_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_address": "Set tilt (DPT 5.001)",
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_light": {
|
||||
"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",
|
||||
"brightness_address": "Brightness address (DPT 5.001)",
|
||||
"brightness_state_address": "Brightness state address (DPT 5.001)",
|
||||
"brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"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)",
|
||||
"rgbw_state_address": "RGBW color state address (DPT 251.600)",
|
||||
"hue_address": "Hue address (DPT 5.003)",
|
||||
"hue_state_address": "Hue state address (DPT 5.003)",
|
||||
"saturation_address": "Saturation address (DPT 5.001)",
|
||||
"saturation_state_address": "Saturation state address (DPT 5.001)",
|
||||
"saturation_state_address_invert_outgoing": "Invert outgoing",
|
||||
"xyy_address": "XY color address (DPT 242.600)",
|
||||
"xyy_state_address": "XY color state address (DPT 242.600)",
|
||||
"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",
|
||||
"color_temperature_mode": "Color temperature mode",
|
||||
"min_kelvin": "Min color temperature (K)",
|
||||
"max_kelvin": "Max color temperature (K)",
|
||||
"red_address": "Red on/off address (DPT 1.001)",
|
||||
"red_state_address": "Red on/off state address (DPT 1.001)",
|
||||
"red_state_address_invert_outgoing": "Invert outgoing",
|
||||
"red_brightness_address": "Red brightness address (DPT 5.001)",
|
||||
"red_brightness_state_address": "Red brightness state address (DPT 5.001)",
|
||||
"red_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_address": "Green on/off address (DPT 1.001)",
|
||||
"green_state_address": "Green on/off state address (DPT 1.001)",
|
||||
"green_state_address_invert_outgoing": "Invert outgoing",
|
||||
"green_brightness_address": "Green brightness address (DPT 5.001)",
|
||||
"green_brightness_state_address": "Green brightness state address (DPT 5.001)",
|
||||
"green_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_address": "Blue on/off address (DPT 1.001)",
|
||||
"blue_state_address": "Blue on/off state address (DPT 1.001)",
|
||||
"blue_state_address_invert_outgoing": "Invert outgoing",
|
||||
"blue_brightness_address": "Blue brightness address (DPT 5.001)",
|
||||
"blue_brightness_state_address": "Blue brightness state address (DPT 5.001)",
|
||||
"blue_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_address": "White on/off address (DPT 1.001)",
|
||||
"white_state_address": "White on/off state address (DPT 1.001)",
|
||||
"white_state_address_invert_outgoing": "Invert outgoing",
|
||||
"white_brightness_address": "White brightness address (DPT 5.001)",
|
||||
"white_brightness_state_address": "White brightness state address (DPT 5.001)",
|
||||
"white_brightness_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user