Enable dhcp flows for wiz registered devices (#66595)

This commit is contained in:
J. Nick Koston 2022-02-15 16:14:52 -06:00 committed by GitHub
parent d64ef2ba73
commit 6134a224dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -3,6 +3,7 @@
"name": "WiZ", "name": "WiZ",
"config_flow": true, "config_flow": true,
"dhcp": [ "dhcp": [
{"registered_devices": true},
{"macaddress":"A8BB50*"}, {"macaddress":"A8BB50*"},
{"hostname":"wiz_*"} {"hostname":"wiz_*"}
], ],

View File

@ -151,6 +151,7 @@ DHCP: list[dict[str, str | bool]] = [
{'domain': 'unifiprotect', 'macaddress': '74ACB9*'}, {'domain': 'unifiprotect', 'macaddress': '74ACB9*'},
{'domain': 'verisure', 'macaddress': '0023C1*'}, {'domain': 'verisure', 'macaddress': '0023C1*'},
{'domain': 'vicare', 'macaddress': 'B87424*'}, {'domain': 'vicare', 'macaddress': 'B87424*'},
{'domain': 'wiz', 'registered_devices': True},
{'domain': 'wiz', 'macaddress': 'A8BB50*'}, {'domain': 'wiz', 'macaddress': 'A8BB50*'},
{'domain': 'wiz', 'hostname': 'wiz_*'}, {'domain': 'wiz', 'hostname': 'wiz_*'},
{'domain': 'yeelight', 'hostname': 'yeelink-*'}] {'domain': 'yeelight', 'hostname': 'yeelink-*'}]