Add dhcp discovery to smartthings (#50306)

This commit is contained in:
J. Nick Koston 2021-05-11 17:10:33 -05:00 committed by GitHub
parent dc39edd090
commit 3b272ec54c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 39 additions and 1 deletions

View File

@ -7,5 +7,23 @@
"dependencies": ["webhook"], "dependencies": ["webhook"],
"after_dependencies": ["cloud"], "after_dependencies": ["cloud"],
"codeowners": ["@andrewsayre"], "codeowners": ["@andrewsayre"],
"iot_class": "cloud_push" "iot_class": "cloud_push",
"dhcp": [
{
"hostname": "st*",
"macaddress": "24FD5B*"
},
{
"hostname": "smartthings*",
"macaddress": "24FD5B*"
},
{
"hostname": "hub*",
"macaddress": "24FD5B*"
},
{
"hostname": "hub*",
"macaddress": "D052A8*"
}
]
} }

View File

@ -178,6 +178,26 @@ DHCP = [
"hostname": "sense-*", "hostname": "sense-*",
"macaddress": "DCEFCA*" "macaddress": "DCEFCA*"
}, },
{
"domain": "smartthings",
"hostname": "st*",
"macaddress": "24FD5B*"
},
{
"domain": "smartthings",
"hostname": "smartthings*",
"macaddress": "24FD5B*"
},
{
"domain": "smartthings",
"hostname": "hub*",
"macaddress": "24FD5B*"
},
{
"domain": "smartthings",
"hostname": "hub*",
"macaddress": "D052A8*"
},
{ {
"domain": "solaredge", "domain": "solaredge",
"hostname": "target", "hostname": "target",