From 2113368b850feda575e6cb1c7e48b2f54d1d0b15 Mon Sep 17 00:00:00 2001 From: Eric Severance Date: Sun, 22 Aug 2021 14:12:02 -0700 Subject: [PATCH] Add zigbee connection for wemo bridge lights (#53813) --- homeassistant/components/wemo/light.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/homeassistant/components/wemo/light.py b/homeassistant/components/wemo/light.py index ecb64296171..13f375ad726 100644 --- a/homeassistant/components/wemo/light.py +++ b/homeassistant/components/wemo/light.py @@ -16,6 +16,7 @@ from homeassistant.components.light import ( LightEntity, ) from homeassistant.core import callback +from homeassistant.helpers.device_registry import CONNECTION_ZIGBEE from homeassistant.helpers.dispatcher import async_dispatcher_connect import homeassistant.util.color as color_util @@ -105,6 +106,7 @@ class WemoLight(WemoEntity, LightEntity): """Return the device info.""" return { "name": self.name, + "connections": {(CONNECTION_ZIGBEE, self._unique_id)}, "identifiers": {(WEMO_DOMAIN, self._unique_id)}, "model": self._model_name, "manufacturer": "Belkin",