[onkyo] Add support for TX-NR807 (#13006)
Signed-off-by: Ravi Nadahar <nadahar@rediffmail.com>
This commit is contained in:
parent
440f603e88
commit
e8e7ca8653
|
@ -41,6 +41,7 @@ At the moment only the following models are supported:
|
|||
- TX-NR737
|
||||
- TX-NR747
|
||||
- TX-NR757
|
||||
- TX-NR807
|
||||
- TX-NR809
|
||||
- TX-NR818
|
||||
- TX-NR828
|
||||
|
|
|
@ -49,6 +49,7 @@ public enum OnkyoModel {
|
|||
TX_NR737("TX-NR737"),
|
||||
TX_NR747("TX-NR747"),
|
||||
TX_NR757("TX-NR757"),
|
||||
TX_NR807("TX-NR807"),
|
||||
TX_NR809("TX-NR809"),
|
||||
TX_NR818("TX-NR818"),
|
||||
TX_NR828("TX-NR828"),
|
||||
|
|
|
@ -60,6 +60,8 @@ thing-type.onkyo.TX-NR737.label = Onkyo TX-NR737 AV Receiver
|
|||
thing-type.onkyo.TX-NR737.description = Network enabled Onkyo AV Receiver
|
||||
thing-type.onkyo.TX-NR747.label = Onkyo TX-NR747 AV Receiver
|
||||
thing-type.onkyo.TX-NR747.description = Network enabled Onkyo AV Receiver
|
||||
thing-type.onkyo.TX-NR807.label = Onkyo TX-NR807 AV Receiver
|
||||
thing-type.onkyo.TX-NR807.description = Network enabled Onkyo AV Receiver
|
||||
thing-type.onkyo.TX-NR809.label = Onkyo TX-NR809 AV Receiver
|
||||
thing-type.onkyo.TX-NR809.description = Network enabled Onkyo AV Receivers
|
||||
thing-type.onkyo.TX-NR818.label = Onkyo TX-NR818 AV Receiver
|
||||
|
|
|
@ -0,0 +1,23 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<thing:thing-descriptions bindingId="onkyo"
|
||||
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="TX-NR807">
|
||||
<label>Onkyo TX-NR807 AV Receiver</label>
|
||||
<description>Network enabled Onkyo AV Receiver</description>
|
||||
|
||||
<channel-groups>
|
||||
<channel-group typeId="zone1Controls" id="zone1"/>
|
||||
<channel-group typeId="zone2Controls" id="zone2"/>
|
||||
<channel-group typeId="zone3Controls" id="zone3"/>
|
||||
<channel-group typeId="playerControls" id="player"/>
|
||||
<channel-group typeId="netMenuControls" id="netmenu"/>
|
||||
<channel-group typeId="information" id="info"/>
|
||||
</channel-groups>
|
||||
|
||||
<config-description-ref uri="thing-type:onkyo:config"/>
|
||||
</thing-type>
|
||||
|
||||
</thing:thing-descriptions>
|
Loading…
Reference in New Issue