added migrated 2.x add-ons

Signed-off-by: Kai Kreuzer <kai@openhab.org>
This commit is contained in:
Kai Kreuzer
2020-09-21 01:58:32 +02:00
parent bbf1a7fd29
commit 6df6783b60
11662 changed files with 1302875 additions and 11 deletions

View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<binding:binding id="yioremote" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:binding="https://openhab.org/schemas/binding/v1.0.0"
xsi:schemaLocation="https://openhab.org/schemas/binding/v1.0.0 https://openhab.org/schemas/binding-1.0.0.xsd">
<name>YIOremote Binding</name>
<description>This is the binding for YIOremote.</description>
<author>Michael Loercher</author>
</binding:binding>

View File

@@ -0,0 +1,20 @@
# binding
binding.yioremote.name = YIO Remote Binding
binding.yioremote.description = Dieses Addon steuert eine YIO Dock / Remote-Kombination
# thing types
thing-type.yioremote.yioremotedock.label = YIO Remote Dock
thing-type.yioremote.yioremotedock.description = Stellt das YIO Remote Dock Thing bereit
# thing type config description
thing-type.config.yioremote.yioremotedock.host.label = IP-Adresse oder Hostname
thing-type.config.yioremote.yioremotedock.host.description = IP-Adresse oder Hostname des YIO Docks
thing-type.config.yioremote.yioremotedock.token.label = Das Authentifizierungstoken
thing-type.config.yioremote.yioremotedock.token.description = Das Authentifizierungstoken fuer den Zugriff ist derzeit 0
# channel types
channel-type.yioremotedock.receiverswitch.label = Schalter zum Aktivieren/Deaktivieren der IR-Empfängerdiode /-funktion
channel-type.yioremotedock.receiverswitch.description = Der Schalter zum Aktivieren/Deaktivieren der IR-Empfängerdiode /-funktion
channel-type.yioremotedock.sendircode.description = Der IR-Code Format(3; 0x20DF40BF; 32; 0), das vom YIO-Dock gesendet wird
channel-type.yioremotedock.status.label = YIO Dock Status
channel-type.yioremotedock.status.description = Der Status des YIO-Docks. Wenn der Empfänger eingeschaltet ist, wird der erkannte IR-Code angezeigt, andernfalls wird der IR-Sendestatus des letzten gesendeten IR-Codes angezeigt.

View File

@@ -0,0 +1,52 @@
<?xml version="1.0" encoding="UTF-8"?>
<thing:thing-descriptions bindingId="yioremote"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:thing="https://openhab.org/schemas/thing-description/v1.0.0"
xsi:schemaLocation="https://openhab.org/schemas/thing-description/v1.0.0 https://openhab.org/schemas/thing-description-1.0.0.xsd">
<thing-type id="yioRemoteDock">
<label>YIO Remote Dock</label>
<description>YIOremote Dock Binding Thing</description>
<channel-groups>
<channel-group id="input" typeId="input"/>
<channel-group id="output" typeId="output"/>
</channel-groups>
<config-description>
<parameter name="host" type="text" required="true">
<label>Network Address</label>
<description>Network address of the YIO Remote Dock</description>
<context>network-address</context>
</parameter>
<parameter name="accessToken" type="text" required="true">
<label>Access Token</label>
<description>The authentication token for the access currently 0</description>
<default>0</default>
</parameter>
</config-description>
</thing-type>
<channel-group-type id="input">
<label>Inputs</label>
<description>The channels used for Input</description>
<channels>
<channel id="receiverswitch" typeId="receiverswitch"/>
</channels>
</channel-group-type>
<channel-group-type id="output">
<label>Outputs</label>
<description>The channels used for Output</description>
<channels>
<channel id="status" typeId="status"/>
</channels>
</channel-group-type>
<channel-type id="receiverswitch">
<item-type>Switch</item-type>
<label>Receiver Switch</label>
<description>The switch to enable disable the IR receiving diode/function</description>
</channel-type>
<channel-type id="status">
<item-type>String</item-type>
<label>Status</label>
<description>The status of the YIO Dock. If the reciever is on than the recognized IR code will be displayed otherwise
the IR send status is displayed of the last IR code send.</description>
</channel-type>
</thing:thing-descriptions>