Add DHCP Discovery for SimpliSafe (#58560)
* Add DHCP Discovery for SimpliSafe * Fix tests * Docstring * Code reviewpull/58628/head
parent
0c2f126012
commit
669e36caec
|
@ -5,5 +5,11 @@
|
||||||
"documentation": "https://www.home-assistant.io/integrations/simplisafe",
|
"documentation": "https://www.home-assistant.io/integrations/simplisafe",
|
||||||
"requirements": ["simplisafe-python==12.0.2"],
|
"requirements": ["simplisafe-python==12.0.2"],
|
||||||
"codeowners": ["@bachya"],
|
"codeowners": ["@bachya"],
|
||||||
"iot_class": "cloud_polling"
|
"iot_class": "cloud_polling",
|
||||||
|
"dhcp": [
|
||||||
|
{
|
||||||
|
"hostname": "simplisafe*",
|
||||||
|
"macaddress": "30AEA4*"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
|
@ -307,6 +307,11 @@ DHCP = [
|
||||||
"hostname": "sense-*",
|
"hostname": "sense-*",
|
||||||
"macaddress": "A4D578*"
|
"macaddress": "A4D578*"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"domain": "simplisafe",
|
||||||
|
"hostname": "simplisafe*",
|
||||||
|
"macaddress": "30AEA4*"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"domain": "smartthings",
|
"domain": "smartthings",
|
||||||
"hostname": "st*",
|
"hostname": "st*",
|
||||||
|
|
Loading…
Reference in New Issue