From 9078f380c948cd1053080bc1faa2e0cbf876d740 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Thu, 8 Apr 2021 09:03:20 -1000 Subject: [PATCH] Add manufacturer filter support to zeroconf (#877) --- docs/creating_integration_manifest.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/creating_integration_manifest.md b/docs/creating_integration_manifest.md index 0c335c72..942ff6ad 100644 --- a/docs/creating_integration_manifest.md +++ b/docs/creating_integration_manifest.md @@ -130,13 +130,14 @@ Zeroconf is a list so you can specify multiple types to match on. } ``` -Certain zeroconf types are very generic (i.e., `_printer._tcp.local.`, `_axis-video._tcp.local.` or `_http._tcp.local`). In such cases you should include a name or MAC address filter: +Certain zeroconf types are very generic (i.e., `_printer._tcp.local.`, `_axis-video._tcp.local.` or `_http._tcp.local`). In such cases you should include a Name (`name`), MAC address (`macaddress`), or Manufacturer (`manufacturer`) filter: ```json { "zeroconf": [ {"type":"_axis-video._tcp.local.","macaddress":"00408C*"}, - {"type":"_axis-video._tcp.local.","name":"Example*"}, + {"type":"_axis-video._tcp.local.","name":"example*"}, + {"type":"_airplay._tcp.local.","manufacturer":"samsung*"}, ] } ```