Updated external content (Jenkins build 1048)
parent
3ccea799ea
commit
083d060335
File diff suppressed because one or more lines are too long
|
@ -244,6 +244,7 @@ This binding currently supports following channels for F1x45 pump models:
|
|||
| 40129 | Number | -32767 | 32767 | Setting | EP21-BT3 Return temp S2 | |
|
||||
| 40155 | Number | -32767 | 32767 | Setting | EQ1-BT57 Collector temp. | |
|
||||
| 40156 | Number | -32767 | 32767 | Setting | EQ1-BT75 Heatdump temp. | |
|
||||
| 40940 | Number | -30000 | 30000 | Setting | Degree Minutes (32 bit) | |
|
||||
| 43001 | Number | 0 | 65535 | Setting | Software version | |
|
||||
| 43005 | Number | -30000 | 30000 | Setting | Degree Minutes | |
|
||||
| 43006 | Number | -32767 | 32767 | Setting | Calculated Supply Temperature S4 | |
|
||||
|
@ -693,6 +694,7 @@ This binding currently supports following channels for F1x45 pump models:
|
|||
| 44911 | Number | -32767 | 32767 | Setting | Brine pump dT act. | |
|
||||
| 44912 | Switch | 0 | 1 | Sensor | Brine pump auto controlled | |
|
||||
| 45001 | Number | -32767 | 32767 | Sensor | Alarm Number | |
|
||||
| 45171 | Number | 0 | 255 | Setting | Alarm Reset | |
|
||||
| 47291 | Number | 0 | 10000 | Sensor | Floor drying timer | |
|
||||
| 47325 | Number | 0 | 7 | Sensor | Step controlled add. max. step | |
|
||||
| 47004 | Number | 0 | 15 | Sensor | Heat curve S4 | |
|
||||
|
|
|
@ -31,6 +31,7 @@ All supported Onkyo devices are registered as an audio sink in the framework.
|
|||
This binding can discover the supported Onkyo AV receivers.
|
||||
At the moment only the following models are supported:
|
||||
|
||||
- HT-RC440
|
||||
- HT-RC560
|
||||
- TX-NR414
|
||||
- TX-NR474
|
||||
|
|
|
@ -516,8 +516,10 @@
|
|||
<channel-group-type id="f1x45-setting-group-channels">
|
||||
<label>Settings</label>
|
||||
<channels>
|
||||
<channel id="40940" typeId="f1x45-40940"/>
|
||||
<channel id="43005" typeId="f1x45-43005"/>
|
||||
<channel id="44266" typeId="f1x45-44266"/>
|
||||
<channel id="45171" typeId="f1x45-45171"/>
|
||||
<channel id="47004" typeId="f1x45-47004"/>
|
||||
<channel id="47005" typeId="f1x45-47005"/>
|
||||
<channel id="47006" typeId="f1x45-47006"/>
|
||||
|
|
|
@ -382,6 +382,13 @@
|
|||
<state pattern="%.1f °C" readOnly="true">
|
||||
</state>
|
||||
</channel-type>
|
||||
<channel-type id="f1x45-40940" advanced="true">
|
||||
<item-type>Number</item-type>
|
||||
<label>Degree Minutes (32 Bit)</label>
|
||||
<description>Degree minutes, 32bit value. Full resolution.</description>
|
||||
<state min="-30000" max="30000" step="1" pattern="%.1f" readOnly="false">
|
||||
</state>
|
||||
</channel-type>
|
||||
<channel-type id="f1x45-43001" advanced="true">
|
||||
<item-type>Number</item-type>
|
||||
<label>Software Version</label>
|
||||
|
@ -3712,6 +3719,13 @@
|
|||
<state pattern="%d" readOnly="true">
|
||||
</state>
|
||||
</channel-type>
|
||||
<channel-type id="f1x45-45171" advanced="true">
|
||||
<item-type>Number</item-type>
|
||||
<label>Alarm Reset</label>
|
||||
<description>Reset alarm by setting value 1</description>
|
||||
<state min="0" max="255" step="1" pattern="%d" readOnly="false">
|
||||
</state>
|
||||
</channel-type>
|
||||
<channel-type id="f1x45-47291" advanced="true">
|
||||
<item-type>Number</item-type>
|
||||
<label>Floor Drying Timer</label>
|
||||
|
|
|
@ -0,0 +1,22 @@
|
|||
<?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="HT-RC440">
|
||||
<label>Onkyo HT-RC440 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="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