mirror of
https://github.com/bahmcloud/HA-KNX-Bridge.git
synced 2026-04-06 18:01:14 +00:00
Remove payload_length from KNX send
This commit is contained in:
@@ -1,5 +1,8 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 0.0.15 - 2026-02-13
|
||||||
|
- Remove unsupported `payload_length` field from KNX send calls.
|
||||||
|
|
||||||
## 0.0.14 - 2026-02-13
|
## 0.0.14 - 2026-02-13
|
||||||
- Improve KNX event decoding for cover commands and address the up/down mapping.
|
- Improve KNX event decoding for cover commands and address the up/down mapping.
|
||||||
|
|
||||||
|
|||||||
@@ -67,6 +67,6 @@ Each group address has `invert incoming` and `invert outgoing` toggles to flip K
|
|||||||
- Advanced DPT mapping options and inversion settings.
|
- Advanced DPT mapping options and inversion settings.
|
||||||
|
|
||||||
## Versioning and Releases
|
## Versioning and Releases
|
||||||
- Current version: 0.0.14
|
- Current version: 0.0.15
|
||||||
- `CHANGELOG.md` lists versions with the newest entries at the top.
|
- `CHANGELOG.md` lists versions with the newest entries at the top.
|
||||||
- Release creation is manual and only done when explicitly requested.
|
- Release creation is manual and only done when explicitly requested.
|
||||||
|
|||||||
@@ -564,7 +564,7 @@ class BridgeManager:
|
|||||||
await self.hass.services.async_call(
|
await self.hass.services.async_call(
|
||||||
KNX_DOMAIN,
|
KNX_DOMAIN,
|
||||||
"send",
|
"send",
|
||||||
{"address": address, "payload": payload, "payload_length": 0},
|
{"address": address, "payload": payload},
|
||||||
blocking=False,
|
blocking=False,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"domain": "ha_knx_bridge",
|
"domain": "ha_knx_bridge",
|
||||||
"name": "HA KNX Bridge",
|
"name": "HA KNX Bridge",
|
||||||
"version": "0.0.14",
|
"version": "0.0.15",
|
||||||
"config_flow": true,
|
"config_flow": true,
|
||||||
"documentation": "https://github.com/bahmcloud/HA-KNX-Bridge",
|
"documentation": "https://github.com/bahmcloud/HA-KNX-Bridge",
|
||||||
"issue_tracker": "https://github.com/bahmcloud/HA-KNX-Bridge/issues",
|
"issue_tracker": "https://github.com/bahmcloud/HA-KNX-Bridge/issues",
|
||||||
|
|||||||
Reference in New Issue
Block a user