Remove payload_length from KNX send

This commit is contained in:
2026-02-13 20:36:37 +01:00
parent 22afc5addf
commit 6ce60029a1
4 changed files with 6 additions and 3 deletions

View File

@@ -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.

View File

@@ -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.

View File

@@ -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,
) )

View File

@@ -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",