Index

UPNP

  1. Description
  2. Configuration
  3. Events
  4. Example

Interface to monitor UPNP devices.

Description

This event handler searches for and monitors UPNP devices, primarily Audio and Video devices.

Configuration

This event handler has the following parameters:

Events

The interface generates av events http://id.webbrick.co.uk/events/av/index.html

Example

<?xml version="1.0" encoding="utf-8"?>
<eventInterfaces>
    <eventInterface module='EventHandlers.UPNP' name='UPNP'>

	<!-- these are made visible if the string is in the modelName from the device description, overrides exclude -->
	<includedevice>
	    <modelName>Sonos</modelName>
	</includedevice>

	<!-- these are not made visible if the string is in the modelName from the device description-->
	<excludedevice>
	    <modelName>TwonkyMedia</modelName>
	    <modelName>Roku</modelName>
	    <modelName>Media Player</modelName>
	</excludedevice>

        <webserver serverport='0' interface=''/>

    </eventInterface>
</eventInterfaces>