forked from rinal13/openhab-openwebnet
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
998 additions
and
205 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
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
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,35 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<thing:thing-descriptions bindingId="openwebnet" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns:thing="http://eclipse.org/smarthome/schemas/thing-description/v1.0.0" | ||
xsi:schemaLocation="http://eclipse.org/smarthome/schemas/thing-description/v1.0.0 http://eclipse.org/smarthome/schemas/thing-description-1.0.0.xsd"> | ||
|
||
<!-- Thing for BUS Temperature Sensor (BTicino xxx/xxx/...) --> | ||
<thing-type id="bus_temp_sensor"> | ||
<supported-bridge-type-refs> | ||
<bridge-type-ref id="bus_gateway" /> | ||
</supported-bridge-type-refs> | ||
<label>BUS Temperature Sensor</label> | ||
<description>A OpenWebNet BUS/SCS temperature sensor. BTicino models: xxx/yyyy/etc.</description> | ||
|
||
<channels> | ||
<channel id="temperature" typeId="temperature" /> | ||
</channels> | ||
|
||
<properties> | ||
<property name="vendor">BTicino/Legrand</property> | ||
<property name="model">BTI-xxxx/yyyy/etc.</property> | ||
<property name="ownDeviceType">---</property> | ||
</properties> | ||
|
||
<config-description> | ||
<parameter name="where" type="text"> | ||
<label>OpenWebNet Device Address (WHERE)</label> | ||
<description>Example: Zone 2 --> WHERE=2. For external sensors: sensor 5 --> WHERE=500</description> | ||
<required>true</required> | ||
</parameter> | ||
</config-description> | ||
|
||
</thing-type> | ||
</thing:thing-descriptions> | ||
|
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,46 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<thing:thing-descriptions bindingId="openwebnet" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns:thing="http://eclipse.org/smarthome/schemas/thing-description/v1.0.0" | ||
xsi:schemaLocation="http://eclipse.org/smarthome/schemas/thing-description/v1.0.0 http://eclipse.org/smarthome/schemas/thing-description-1.0.0.xsd"> | ||
|
||
<!-- Thing for BUS Thermostat (BTicino xxx/xxx/...) --> | ||
<thing-type id="bus_thermostat"> | ||
<supported-bridge-type-refs> | ||
<bridge-type-ref id="bus_gateway" /> | ||
</supported-bridge-type-refs> | ||
<label>BUS Thermostat</label> | ||
<description>A OpenWebNet BUS/SCS zone thermostat. BTicino models: xxx/yyyy/etc.</description> | ||
|
||
<channels> | ||
<!-- read only --> | ||
<channel id="temperature" typeId="temperature" /> | ||
<channel id="targetTemperature" typeId="targetTemperature" /> | ||
<channel id="thermoFunction" typeId="thermoFunction"/> | ||
<channel id="heatingCoolingMode" typeId="heatingCoolingMode"/> | ||
<channel id="heating" typeId="heating" /> | ||
<channel id="cooling" typeId="cooling" /> | ||
<channel id="activeMode" typeId="activeMode" /> | ||
<channel id="localMode" typeId="localMode" /> | ||
<!-- read/write --> | ||
<channel id="setpointTemperature" typeId="setpointTemperature" /> | ||
<channel id="setMode" typeId="setMode" /> | ||
</channels> | ||
|
||
<properties> | ||
<property name="vendor">BTicino/Legrand</property> | ||
<property name="model">BTI-xxxx/yyyy/etc.</property> | ||
<property name="ownDeviceType">---</property> | ||
</properties> | ||
|
||
<config-description> | ||
<parameter name="where" type="text"> | ||
<label>OpenWebNet Device Address (WHERE)</label> | ||
<description>Example: Zone 2 --> WHERE=2.</description> | ||
<required>true</required> | ||
</parameter> | ||
</config-description> | ||
|
||
</thing-type> | ||
</thing:thing-descriptions> | ||
|
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
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
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
Oops, something went wrong.