Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/creating_integration_manifest.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,21 +96,21 @@ If your integration supports discovery via [Zeroconf](https://en.wikipedia.org/w

## SSDP

If your integration supports discovery via [SSDP](https://en.wikipedia.org/wiki/Simple_Service_Discovery_Protocol), you can add the type to your manifest. If the user has the `ssdp` integration loaded, it will load the `ssdp` step of your integration's config flow when it is discovered. We support SSDP discovery by ST, manufacturer and device type. Your integration is discovered if any of the specified info is found. It's up to your config flow to filter out duplicates.
If your integration supports discovery via [SSDP](https://en.wikipedia.org/wiki/Simple_Service_Discovery_Protocol), you can add the type to your manifest. If the user has the `ssdp` integration loaded, it will load the `ssdp` step of your integration's config flow when it is discovered. We support SSDP discovery by ST, and all data in UPnP device description. The manifest value is a list of matcher dictionaries, your integration is discovered if all items of any of the specified matchers are found in the SSDP/UPnP data. It's up to your config flow to filter out duplicates.

```json5
{
"ssdp": {
"ssdp": [{
Comment thread
scop marked this conversation as resolved.
Outdated
"st": [
"roku:ecp"
],
"manufacturer": [
"Roku"
],
"device_type": [
"deviceType": [
"urn:roku-com:device:player:1-0"
]
}
}]
}
```

Expand Down