mirror of
https://github.com/bahmcloud/HA-KNX-Bridge.git
synced 2026-04-06 16:51:14 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b59455909c | |||
| 6a5589e60a | |||
| 0af4fc8375 |
@@ -1,8 +1,17 @@
|
||||
# Changelog
|
||||
|
||||
## 0.0.19 - 2026-02-13
|
||||
- Fix port enable switches by updating config entry options properly.
|
||||
- Show port switches under the main integration device instead of per-port devices.
|
||||
|
||||
## 0.0.18 - 2026-02-13
|
||||
- Add port devices with enable toggles and an edit-port flow.
|
||||
- Provide locale fallback translations for all Home Assistant languages.
|
||||
|
||||
## 0.0.17 - 2026-02-13
|
||||
- Add edit port flow to update existing option-based ports.
|
||||
- Add fallback translations for all supported Home Assistant locales.
|
||||
- Add per-port enable switches and device entries for quick overview.
|
||||
|
||||
## 0.0.16 - 2026-02-13
|
||||
- Normalize incoming event destinations and clamp percent payloads even without inversion.
|
||||
|
||||
@@ -23,6 +23,7 @@ Current minimal scope:
|
||||
2. Add Ports from the integration's configuration page.
|
||||
If the "Add Port" UI is missing, open the integration options and manage ports
|
||||
there (fallback for HA versions without subentry support).
|
||||
3. Each Port shows up as a device with an enable switch for quick on/off control.
|
||||
|
||||
### Binary Sensor Port
|
||||
- `entity_id`: the HA binary_sensor to mirror.
|
||||
@@ -67,6 +68,6 @@ Each group address has `invert incoming` and `invert outgoing` toggles to flip K
|
||||
- Advanced DPT mapping options and inversion settings.
|
||||
|
||||
## Versioning and Releases
|
||||
- Current version: 0.0.17
|
||||
- Current version: 0.0.19
|
||||
- `CHANGELOG.md` lists versions with the newest entries at the top.
|
||||
- Release creation is manual and only done when explicitly requested.
|
||||
|
||||
@@ -16,6 +16,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
||||
raise
|
||||
entry.runtime_data = manager
|
||||
entry.async_on_unload(entry.add_update_listener(_update_listener))
|
||||
await hass.config_entries.async_forward_entry_setups(entry, ["switch"])
|
||||
return True
|
||||
|
||||
|
||||
@@ -24,6 +25,7 @@ async def async_unload_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
|
||||
if manager is None:
|
||||
return True
|
||||
await manager.async_unload()
|
||||
await hass.config_entries.async_unload_platforms(entry, ["switch"])
|
||||
return True
|
||||
|
||||
|
||||
|
||||
@@ -19,6 +19,7 @@ from .const import (
|
||||
CONF_INVERT_OUTGOING,
|
||||
CONF_MOVE_LONG_ADDRESS,
|
||||
CONF_MOVE_SHORT_ADDRESS,
|
||||
CONF_PORT_ENABLED,
|
||||
CONF_PORTS,
|
||||
CONF_POSITION_ADDRESS,
|
||||
CONF_POSITION_STATE_ADDRESS,
|
||||
@@ -119,7 +120,12 @@ class BridgeManager:
|
||||
switch_ports: list[SwitchPort] = []
|
||||
cover_ports: list[CoverPort] = []
|
||||
|
||||
for port_type, data in _iter_port_configs(self.entry):
|
||||
enabled_overrides = dict(self.entry.options.get(CONF_PORT_ENABLED, {}))
|
||||
for port in _iter_port_configs(self.entry):
|
||||
port_type = port.port_type
|
||||
data = port.data
|
||||
if not _is_port_enabled(port, enabled_overrides):
|
||||
continue
|
||||
if port_type == "binary_sensor":
|
||||
binary_ports.append(
|
||||
BinarySensorPort(
|
||||
@@ -683,15 +689,52 @@ def _event_destination(event: Event) -> str | None:
|
||||
)
|
||||
|
||||
|
||||
def _iter_port_configs(entry: ConfigEntry) -> list[tuple[str, dict[str, Any]]]:
|
||||
ports: list[tuple[str, dict[str, Any]]] = []
|
||||
@dataclass(frozen=True)
|
||||
class PortConfig:
|
||||
port_id: str
|
||||
port_type: str
|
||||
title: str
|
||||
data: dict[str, Any]
|
||||
enabled: bool | None
|
||||
|
||||
|
||||
def _iter_port_configs(entry: ConfigEntry) -> list[PortConfig]:
|
||||
ports: list[PortConfig] = []
|
||||
subentries = getattr(entry, "subentries", [])
|
||||
for subentry in subentries:
|
||||
ports.append((subentry.type, subentry.data))
|
||||
ports.append(
|
||||
PortConfig(
|
||||
port_id=subentry.entry_id,
|
||||
port_type=subentry.type,
|
||||
title=subentry.title or subentry.entry_id,
|
||||
data=subentry.data,
|
||||
enabled=subentry.data.get(CONF_ENABLED),
|
||||
)
|
||||
)
|
||||
option_ports = entry.options.get(CONF_PORTS, [])
|
||||
for port in option_ports:
|
||||
port_type = port.get("type")
|
||||
data = port.get("data", {})
|
||||
if port_type and isinstance(data, dict):
|
||||
ports.append((port_type, data))
|
||||
ports.append(
|
||||
PortConfig(
|
||||
port_id=port.get("id", ""),
|
||||
port_type=port_type,
|
||||
title=port.get("title", port.get("id", "Port")),
|
||||
data=data,
|
||||
enabled=port.get("enabled"),
|
||||
)
|
||||
)
|
||||
return ports
|
||||
|
||||
|
||||
def _is_port_enabled(port: PortConfig, overrides: dict[str, Any]) -> bool:
|
||||
if port.port_id and port.port_id in overrides:
|
||||
return bool(overrides[port.port_id])
|
||||
if port.enabled is None:
|
||||
return True
|
||||
return bool(port.enabled)
|
||||
|
||||
|
||||
def iter_ports(entry: ConfigEntry) -> list[PortConfig]:
|
||||
return _iter_port_configs(entry)
|
||||
|
||||
@@ -23,6 +23,8 @@ from .const import (
|
||||
CONF_PORT_ID,
|
||||
CONF_POSITION_ADDRESS,
|
||||
CONF_POSITION_STATE_ADDRESS,
|
||||
CONF_ENABLED,
|
||||
CONF_PORT_ENABLED,
|
||||
CONF_STATE_ADDRESS,
|
||||
CONF_STOP_ADDRESS,
|
||||
DOMAIN,
|
||||
@@ -170,7 +172,12 @@ class HAKnxBridgeOptionsFlow(config_entries.OptionsFlow):
|
||||
if user_input is not None:
|
||||
port_id = user_input[CONF_PORT_ID]
|
||||
ports = [port for port in ports if port.get("id") != port_id]
|
||||
return self.async_create_entry(title="", data={CONF_PORTS: ports})
|
||||
overrides = dict(self._config_entry.options.get(CONF_PORT_ENABLED, {}))
|
||||
overrides.pop(port_id, None)
|
||||
return self.async_create_entry(
|
||||
title="",
|
||||
data={CONF_PORTS: ports, CONF_PORT_ENABLED: overrides},
|
||||
)
|
||||
|
||||
options = [
|
||||
{
|
||||
@@ -250,15 +257,22 @@ class HAKnxBridgeOptionsFlow(config_entries.OptionsFlow):
|
||||
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])
|
||||
enabled = bool(user_input.get(CONF_ENABLED, True))
|
||||
ports.append(
|
||||
{
|
||||
"id": uuid.uuid4().hex,
|
||||
"type": port_type,
|
||||
"title": title,
|
||||
"data": user_input,
|
||||
"enabled": enabled,
|
||||
}
|
||||
)
|
||||
return self.async_create_entry(title="", data={CONF_PORTS: ports})
|
||||
overrides = dict(self._config_entry.options.get(CONF_PORT_ENABLED, {}))
|
||||
overrides[ports[-1]["id"]] = enabled
|
||||
return self.async_create_entry(
|
||||
title="",
|
||||
data={CONF_PORTS: ports, CONF_PORT_ENABLED: overrides},
|
||||
)
|
||||
|
||||
async def _async_edit_port(self, port_type: str, user_input, schema_factory):
|
||||
ports = list(self._config_entry.options.get(CONF_PORTS, []))
|
||||
@@ -284,9 +298,16 @@ class HAKnxBridgeOptionsFlow(config_entries.OptionsFlow):
|
||||
errors=errors,
|
||||
)
|
||||
|
||||
enabled = bool(user_input.get(CONF_ENABLED, True))
|
||||
port["data"] = user_input
|
||||
port["enabled"] = enabled
|
||||
port["title"] = _entity_title(self.hass, user_input[CONF_ENTITY_ID])
|
||||
return self.async_create_entry(title="", data={CONF_PORTS: ports})
|
||||
overrides = dict(self._config_entry.options.get(CONF_PORT_ENABLED, {}))
|
||||
overrides[port_id] = enabled
|
||||
return self.async_create_entry(
|
||||
title="",
|
||||
data={CONF_PORTS: ports, CONF_PORT_ENABLED: overrides},
|
||||
)
|
||||
|
||||
|
||||
class BinarySensorPortSubentryFlow(config_entries.ConfigSubentryFlow):
|
||||
@@ -390,6 +411,9 @@ def _binary_sensor_schema(defaults: dict | None = None) -> vol.Schema:
|
||||
): (
|
||||
selector.BooleanSelector()
|
||||
),
|
||||
vol.Optional(CONF_ENABLED, default=bool(defaults.get(CONF_ENABLED, True))): (
|
||||
selector.BooleanSelector()
|
||||
),
|
||||
}
|
||||
)
|
||||
|
||||
@@ -530,6 +554,9 @@ def _cover_schema(defaults: dict | None = None) -> vol.Schema:
|
||||
): (
|
||||
selector.BooleanSelector()
|
||||
),
|
||||
vol.Optional(CONF_ENABLED, default=bool(defaults.get(CONF_ENABLED, True))): (
|
||||
selector.BooleanSelector()
|
||||
),
|
||||
}
|
||||
)
|
||||
|
||||
@@ -580,6 +607,9 @@ def _switch_schema(defaults: dict | None = None) -> vol.Schema:
|
||||
): (
|
||||
selector.BooleanSelector()
|
||||
),
|
||||
vol.Optional(CONF_ENABLED, default=bool(defaults.get(CONF_ENABLED, True))): (
|
||||
selector.BooleanSelector()
|
||||
),
|
||||
}
|
||||
)
|
||||
|
||||
|
||||
@@ -8,6 +8,8 @@ CONF_INVERT_INCOMING = "invert_incoming"
|
||||
CONF_INVERT_OUTGOING = "invert_outgoing"
|
||||
CONF_PORTS = "ports"
|
||||
CONF_PORT_ID = "port_id"
|
||||
CONF_PORT_ENABLED = "port_enabled"
|
||||
CONF_ENABLED = "enabled"
|
||||
|
||||
CONF_MOVE_LONG_ADDRESS = "move_long_address"
|
||||
CONF_MOVE_SHORT_ADDRESS = "move_short_address"
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"domain": "ha_knx_bridge",
|
||||
"name": "HA KNX Bridge",
|
||||
"version": "0.0.17",
|
||||
"version": "0.0.19",
|
||||
"config_flow": true,
|
||||
"documentation": "https://github.com/bahmcloud/HA-KNX-Bridge",
|
||||
"issue_tracker": "https://github.com/bahmcloud/HA-KNX-Bridge/issues",
|
||||
|
||||
@@ -99,7 +99,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -115,7 +116,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -146,7 +148,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
76
custom_components/ha_knx_bridge/switch.py
Normal file
76
custom_components/ha_knx_bridge/switch.py
Normal file
@@ -0,0 +1,76 @@
|
||||
from __future__ import annotations
|
||||
|
||||
from dataclasses import dataclass
|
||||
from typing import Any
|
||||
|
||||
from homeassistant.config_entries import ConfigEntry
|
||||
from homeassistant.core import HomeAssistant
|
||||
from homeassistant.helpers.entity import DeviceInfo
|
||||
from homeassistant.components.switch import SwitchEntity
|
||||
|
||||
from .const import CONF_PORTS, CONF_PORT_ENABLED, DOMAIN
|
||||
from .bridge import iter_ports
|
||||
|
||||
|
||||
@dataclass(frozen=True)
|
||||
class PortDescriptor:
|
||||
port_id: str
|
||||
port_type: str
|
||||
title: str
|
||||
|
||||
|
||||
async def async_setup_entry(
|
||||
hass: HomeAssistant, entry: ConfigEntry, async_add_entities
|
||||
) -> None:
|
||||
entities: list[SwitchEntity] = []
|
||||
for port in iter_ports(entry):
|
||||
entities.append(
|
||||
PortEnabledSwitch(entry, port.port_id, port.port_type, port.title)
|
||||
)
|
||||
async_add_entities(entities, update_before_add=True)
|
||||
|
||||
|
||||
class PortEnabledSwitch(SwitchEntity):
|
||||
_attr_has_entity_name = True
|
||||
|
||||
def __init__(self, entry: ConfigEntry, port_id: str, port_type: str, title: str):
|
||||
self._entry = entry
|
||||
self._port_id = port_id
|
||||
self._port_type = port_type
|
||||
self._title = title
|
||||
self._attr_unique_id = f"{entry.entry_id}_{port_id}_enabled"
|
||||
|
||||
@property
|
||||
def name(self) -> str:
|
||||
return f"{self._title} Enabled"
|
||||
|
||||
@property
|
||||
def device_info(self) -> DeviceInfo:
|
||||
return DeviceInfo(
|
||||
identifiers={(DOMAIN, self._entry.entry_id)},
|
||||
name="HA KNX Bridge",
|
||||
manufacturer="HA KNX Bridge",
|
||||
model="Integration",
|
||||
)
|
||||
|
||||
@property
|
||||
def is_on(self) -> bool:
|
||||
overrides = self._entry.options.get(CONF_PORT_ENABLED, {})
|
||||
if self._port_id in overrides:
|
||||
return bool(overrides[self._port_id])
|
||||
return True
|
||||
|
||||
async def async_turn_on(self, **kwargs: Any) -> None:
|
||||
await self._async_set_enabled(True)
|
||||
|
||||
async def async_turn_off(self, **kwargs: Any) -> None:
|
||||
await self._async_set_enabled(False)
|
||||
|
||||
async def _async_set_enabled(self, enabled: bool) -> None:
|
||||
overrides = dict(self._entry.options.get(CONF_PORT_ENABLED, {}))
|
||||
overrides[self._port_id] = enabled
|
||||
self.hass.config_entries.async_update_entry(
|
||||
self._entry,
|
||||
options={**self._entry.options, CONF_PORT_ENABLED: overrides},
|
||||
)
|
||||
await self.hass.config_entries.async_reload(self._entry.entry_id)
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,7 +22,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_switch": {
|
||||
@@ -34,7 +35,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"add_cover": {
|
||||
@@ -61,7 +63,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"remove_port": {
|
||||
@@ -82,7 +85,8 @@
|
||||
"entity_id": "Binary sensor entity",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_switch": {
|
||||
@@ -94,7 +98,8 @@
|
||||
"command_address_invert_outgoing": "Invert outgoing",
|
||||
"state_address": "State group address (DPT 1)",
|
||||
"state_address_invert_incoming": "Invert incoming",
|
||||
"state_address_invert_outgoing": "Invert outgoing"
|
||||
"state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
},
|
||||
"edit_cover": {
|
||||
@@ -121,7 +126,8 @@
|
||||
"angle_address_invert_outgoing": "Invert outgoing",
|
||||
"angle_state_address": "State tilt (DPT 5.001)",
|
||||
"angle_state_address_invert_incoming": "Invert incoming",
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing"
|
||||
"angle_state_address_invert_outgoing": "Invert outgoing",
|
||||
"enabled": "Enabled"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user