From 2dc3ced6442ba9632a51c325af3abb148e352faa Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Wed, 26 Jan 2022 00:07:52 +0100 Subject: [PATCH] Add WLED hw version to device info (#64924) --- homeassistant/components/wled/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/homeassistant/components/wled/models.py b/homeassistant/components/wled/models.py index 664bc309e33..c6f10daeff4 100644 --- a/homeassistant/components/wled/models.py +++ b/homeassistant/components/wled/models.py @@ -24,5 +24,6 @@ class WLEDEntity(CoordinatorEntity): manufacturer=self.coordinator.data.info.brand, model=self.coordinator.data.info.product, sw_version=str(self.coordinator.data.info.version), + hw_version=self.coordinator.data.info.architecture, configuration_url=f"http://{self.coordinator.wled.host}", )