From dbe8c29d743f2ea621a75e267e155817eb16d3eb Mon Sep 17 00:00:00 2001 From: Bouwe Westerdijk Date: Sat, 7 Feb 2026 15:08:23 +0100 Subject: [PATCH 1/3] Remove serial_number --- custom_components/plugwise_usb/__init__.py | 1 - custom_components/plugwise_usb/entity.py | 1 - 2 files changed, 2 deletions(-) diff --git a/custom_components/plugwise_usb/__init__.py b/custom_components/plugwise_usb/__init__.py index 8a35c6b5..7d928370 100644 --- a/custom_components/plugwise_usb/__init__.py +++ b/custom_components/plugwise_usb/__init__.py @@ -75,7 +75,6 @@ def _async_migrate_entity_entry( manufacturer="Plugwise", model="Stick", name=str(api_stick.name), - serial_number=str(api_stick.mac_stick), sw_version=str(api_stick.firmware), ) diff --git a/custom_components/plugwise_usb/entity.py b/custom_components/plugwise_usb/entity.py index aa47e050..045da4bb 100644 --- a/custom_components/plugwise_usb/entity.py +++ b/custom_components/plugwise_usb/entity.py @@ -60,7 +60,6 @@ def device_info(self) -> DeviceInfo: model=str(self._node_info.model), model_id=self._node_info.model_type, name=str(self._node_info.name), - serial_number=str(self._node_info.mac), sw_version=str(self._node_info.firmware), via_device=self._via_device, ) From 53fbede276c4c68b704e66574d3e26af97620fc6 Mon Sep 17 00:00:00 2001 From: Bouwe Westerdijk Date: Sat, 7 Feb 2026 15:09:55 +0100 Subject: [PATCH 2/3] Update CHANGELOG --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5588bdbd..a5b89883 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## Ongoing + +- Remove serial_number, ZigBee MAC address is now shown in HA, via PR []() + ## v0.58.2 - 2026-01-29 - Update plugwise_usb to [v0.47.2](https://github.com/plugwise/python-plugwise-usb/releases/tag/v0.47.2) fixing a bug. From ea6a988dc2e7ab2b7263b375e6e8ca17992c4bba Mon Sep 17 00:00:00 2001 From: Bouwe Westerdijk Date: Sat, 7 Feb 2026 16:53:26 +0100 Subject: [PATCH 3/3] Add links --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a5b89883..e589f6e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## Ongoing -- Remove serial_number, ZigBee MAC address is now shown in HA, via PR []() +- Remove serial_number, ZigBee MAC address is now shown in HA, via PR [400](https://github.com/plugwise/plugwise_usb-beta/pull/400) ## v0.58.2 - 2026-01-29