Updated external content (Jenkins build 3010)
parent
0862074ff5
commit
5f3e24614e
File diff suppressed because one or more lines are too long
|
|
@ -33,6 +33,7 @@ There are three types of Things supported:
|
|||
|
||||
Things of type `bridge` and `accessory` both communicate directly with their HomeKit accessory device via the LAN.
|
||||
Whereas `bridged-accessory` Things communicate via their respective `bridge` Thing.
|
||||
Sometimes a `bridge` may contain a `bridged-accessory` that is physically embedded within the same hardware.
|
||||
|
||||
## Discovery
|
||||
|
||||
|
|
@ -71,6 +72,7 @@ The following table shows the Thing configuration parameters for `bridged-access
|
|||
As a general rule `accessoryID` is set by the auto-discovery process.
|
||||
However you can configure it manually if you wish.
|
||||
It must be the ID of the `bridged-accessory` within the `bridge`.
|
||||
The `accessoryID` is probably "1" for a `bridged-accessory` that is physically embedded within the same hardware as its `bridge`.
|
||||
|
||||
## Thing Pairing
|
||||
|
||||
|
|
|
|||
|
|
@ -62,7 +62,9 @@
|
|||
<options>
|
||||
<option value="38400">38400</option>
|
||||
<option value="57600">57600</option>
|
||||
<option value="115200">115200</option>
|
||||
<option value="115200">115200</option>
|
||||
<option value="230400">230400</option>
|
||||
<option value="460800">460800</option>
|
||||
</options>
|
||||
</parameter>
|
||||
|
||||
|
|
|
|||
|
|
@ -689,6 +689,34 @@
|
|||
<state pattern="%.1f" readOnly="true">
|
||||
</state>
|
||||
</channel-type>
|
||||
|
||||
<!-- Energy - Power Consumption (Reactive)-->
|
||||
<channel-type id="meter_kvar">
|
||||
<item-type>Number</item-type>
|
||||
<label>Electric Power Consumption</label>
|
||||
<description>Indicates the reactive power consumption</description>
|
||||
<category>Energy</category>
|
||||
<tags>
|
||||
<tag>Measurement</tag>
|
||||
<tag>Power</tag>
|
||||
</tags>
|
||||
<state pattern="%.1f" readOnly="true">
|
||||
</state>
|
||||
</channel-type>
|
||||
|
||||
<!-- Energy - Energy Consumption (kvarh) -->
|
||||
<channel-type id="meter_kvarh">
|
||||
<item-type>Number</item-type>
|
||||
<label>Energy Consumption</label>
|
||||
<description>Indicates the reactive energy consumption (kvarh)</description>
|
||||
<category>Energy</category>
|
||||
<tags>
|
||||
<tag>Measurement</tag>
|
||||
<tag>Energy</tag>
|
||||
</tags>
|
||||
<state pattern="%.1f" readOnly="true">
|
||||
</state>
|
||||
</channel-type>
|
||||
|
||||
<!-- Energy - Energy Consumption (kWh) -->
|
||||
<channel-type id="meter_kwh">
|
||||
|
|
|
|||
Loading…
Reference in New Issue