-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ecotouch] Add water and heating power limit channels (#16446)
* limit power compressor flags for water and heating Signed-off-by: tobiroemer <[email protected]>
- Loading branch information
Showing
5 changed files
with
126 additions
and
1 deletion.
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
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
46 changes: 46 additions & 0 deletions
46
bundles/org.openhab.binding.ecotouch/src/main/resources/OH-INF/update/instructions.xml
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" standalone="yes" ?> | ||
<update:update-descriptions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xmlns:update="https://openhab.org/schemas/update-description/v1.0.0" | ||
xsi:schemaLocation="https://openhab.org/schemas/update-description/v1.0.0 https://openhab.org/schemas/update-description-1.0.0.xsd"> | ||
|
||
<thing-type uid="ecotouch:geo"> | ||
<properties> | ||
<property name="thingTypeVersion">1</property> | ||
</properties> | ||
<instruction-set targetVersion="1"> | ||
<add-channel id="percent_water_limit_min"> | ||
<type>Number:Dimensionless</type> | ||
</add-channel> | ||
<add-channel id="percent_water_limit_max"> | ||
<type>Number:Dimensionless</type> | ||
</add-channel> | ||
<add-channel id="percent_heating_limit_min"> | ||
<type>Number:Dimensionless</type> | ||
</add-channel> | ||
<add-channel id="percent_heating_limit_max"> | ||
<type>Number:Dimensionless</type> | ||
</add-channel> | ||
</instruction-set> | ||
</thing-type> | ||
|
||
<thing-type uid="ecotouch:air"> | ||
<properties> | ||
<property name="thingTypeVersion">1</property> | ||
</properties> | ||
<instruction-set targetVersion="1"> | ||
<add-channel id="percent_water_limit_min"> | ||
<type>Number:Dimensionless</type> | ||
</add-channel> | ||
<add-channel id="percent_water_limit_max"> | ||
<type>Number:Dimensionless</type> | ||
</add-channel> | ||
<add-channel id="percent_heating_limit_min"> | ||
<type>Number:Dimensionless</type> | ||
</add-channel> | ||
<add-channel id="percent_heating_limit_max"> | ||
<type>Number:Dimensionless</type> | ||
</add-channel> | ||
</instruction-set> | ||
</thing-type> | ||
|
||
</update:update-descriptions> |