From 6134a224dd73869faede5226826671af876a25ee Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Tue, 15 Feb 2022 16:14:52 -0600 Subject: [PATCH] Enable dhcp flows for wiz registered devices (#66595) --- homeassistant/components/wiz/manifest.json | 1 + homeassistant/generated/dhcp.py | 1 + 2 files changed, 2 insertions(+) diff --git a/homeassistant/components/wiz/manifest.json b/homeassistant/components/wiz/manifest.json index e333691d20c..7ee19346958 100644 --- a/homeassistant/components/wiz/manifest.json +++ b/homeassistant/components/wiz/manifest.json @@ -3,6 +3,7 @@ "name": "WiZ", "config_flow": true, "dhcp": [ + {"registered_devices": true}, {"macaddress":"A8BB50*"}, {"hostname":"wiz_*"} ], diff --git a/homeassistant/generated/dhcp.py b/homeassistant/generated/dhcp.py index a4dd8b092c8..687eea81dcf 100644 --- a/homeassistant/generated/dhcp.py +++ b/homeassistant/generated/dhcp.py @@ -151,6 +151,7 @@ DHCP: list[dict[str, str | bool]] = [ {'domain': 'unifiprotect', 'macaddress': '74ACB9*'}, {'domain': 'verisure', 'macaddress': '0023C1*'}, {'domain': 'vicare', 'macaddress': 'B87424*'}, + {'domain': 'wiz', 'registered_devices': True}, {'domain': 'wiz', 'macaddress': 'A8BB50*'}, {'domain': 'wiz', 'hostname': 'wiz_*'}, {'domain': 'yeelight', 'hostname': 'yeelink-*'}]