-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Binding Descriptor File for vdr Binding
- Loading branch information
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<!-- Binding configuration for the VDR binding in openHAB --> | ||
<binding> | ||
<!-- Full name presented to the user --> | ||
<name>VideoDiskRecorder</name> | ||
<!-- PID name used within the OSGi layer --> | ||
<pid>vdr</pid> | ||
<!-- Binding type: protocol, ui --> | ||
<type>protocol</type> | ||
<!-- Author of the definition --> | ||
<author>Udo Hartmann</author> | ||
<!-- Current version of the binding to which the file is applicable --> | ||
<version>1.7.1</version> | ||
<!-- Minimum version of openHAB required to run this binding --> | ||
<oh_version>1.4.0</oh_version> | ||
|
||
|
||
<!-- Binding configuration settings --> | ||
<binding.config> | ||
</binding.config> | ||
|
||
<!-- The following lines specify the communications interface settings. These may be repeated multiple times --> | ||
<binding.interface> | ||
<interface.setting> | ||
<name>host</name> | ||
<label>IP Address</label> | ||
<description>Set the IP address of the VideoDiskRecorder</description> | ||
<optional>false</optional> | ||
<defaultvalue>127.0.0.1</defaultvalue> | ||
<minimum></minimum> | ||
<maximum></maximum> | ||
<values></values> | ||
</interface.setting> | ||
<interface.setting> | ||
<name>port</name> | ||
<label>IP Port</label> | ||
<description>Port number of the VideoDiskRecorder</description> | ||
<optional>false</optional> | ||
<defaultvalue>6419</defaultvalue> | ||
<minimum>1</minimum> | ||
<maximum>65535</maximum> | ||
<values></values> | ||
</interface.setting> | ||
</binding.interface> | ||
|
||
</binding> |