Updated external content (Jenkins build 808)
parent
b430ab8ccf
commit
16b4fb692c
File diff suppressed because one or more lines are too long
|
@ -43,6 +43,7 @@ Any home automation system based on the OverKiz API is potentially supported.
|
|||
- occupancy sensors (OPEN/CLOSE contact)
|
||||
- smoke sensors (OPEN/CLOSE contact, alarm check)
|
||||
- contact sensors (OPEN/CLOSE contact)
|
||||
- rain sensors (OPEN/CLOSE contact)
|
||||
- temperature sensors (get temperature)
|
||||
- electricity sensors (get energy consumption)
|
||||
- door locks (LOCK/UNLOCK, OPEN/CLOSE commands)
|
||||
|
@ -95,7 +96,7 @@ Please see the example below.
|
|||
| action group | execute_action | switch which reacts to ON command and triggers the predefined Tahoma action |
|
||||
| onoff, light | switch | reacts to standard ON/OFF commands |
|
||||
| dimmer light | light_intensity | sets/gets intensity of the dimmer light or ON/OFF |
|
||||
| smoke sensor, occupancy sensor, contact sensor & water sensor | contact | normal value is CLOSE, changes to OPEN when detection triggered |
|
||||
| smoke sensor, occupancy sensor, contact sensor, water sensor & rain sensor | contact | normal value is CLOSE, changes to OPEN when detection triggered |
|
||||
| smoke sensor, occupancy sensor, contact sensor & water sensor | sensor_defect | indicates the health of the sensor (dead, lowBatter, maintenanceRequired, noDefect) |
|
||||
| smoke sensor | radio_battery | maintenance radio part battery state (low, normal) |
|
||||
| smoke sensor | sensor_battery | maintenance sensor part battery state (absence, low, normal) |
|
||||
|
|
|
@ -18,6 +18,7 @@
|
|||
<context>serial-port</context>
|
||||
<label>USB Port</label>
|
||||
<description>USB port the device is connected to i.e. /dev/ttyUSB0</description>
|
||||
<limitToOptions>false</limitToOptions>
|
||||
</parameter>
|
||||
<parameter name="reporting" type="boolean">
|
||||
<default>true</default>
|
||||
|
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<thing:thing-descriptions bindingId="somfytahoma"
|
||||
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="rainsensor">
|
||||
<supported-bridge-type-refs>
|
||||
<bridge-type-ref id="bridge"/>
|
||||
</supported-bridge-type-refs>
|
||||
<label>Somfy Rain Sensor</label>
|
||||
<channels>
|
||||
<channel id="contact" typeId="contact"></channel>
|
||||
</channels>
|
||||
<representation-property>url</representation-property>
|
||||
<config-description-ref uri="thing-type:somfytahoma:device"/>
|
||||
</thing-type>
|
||||
|
||||
</thing:thing-descriptions>
|
|
@ -1042,14 +1042,14 @@
|
|||
</channel-type>
|
||||
|
||||
<channel-type id="button">
|
||||
<kind>trigger</kind>
|
||||
<item-type>Switch</item-type>
|
||||
<label>Button</label>
|
||||
<description>Button to trigger something</description>
|
||||
<category>Switch</category>
|
||||
</channel-type>
|
||||
|
||||
<channel-type id="buttonReadOnly">
|
||||
<kind>trigger</kind>
|
||||
<item-type>Switch</item-type>
|
||||
<label>Button</label>
|
||||
<description>Button to trigger something</description>
|
||||
<category>Switch</category>
|
||||
|
@ -1154,7 +1154,6 @@
|
|||
|
||||
<channel-type id="float6n">
|
||||
<item-type>Number</item-type>
|
||||
<kind>trigger</kind>
|
||||
<label>Setpoint</label>
|
||||
<description>Floating Point Input</description>
|
||||
<category>Temperature</category>
|
||||
|
@ -1186,7 +1185,7 @@
|
|||
<state readOnly="true" pattern="%.1f %unit%"/>
|
||||
</channel-type>
|
||||
|
||||
<channel-type id="setpointTemperature" advanced="true">
|
||||
<channel-type id="setpointTemperature">
|
||||
<item-type>Number:Temperature</item-type>
|
||||
<label>Setpoint Temperature</label>
|
||||
<description>Setpoint temperature</description>
|
||||
|
|
|
@ -504,7 +504,8 @@ If you want to get involved, you found a bug, or just want to see what's planned
|
|||
|
||||
<a id="changelog"></a>
|
||||
### Where can I find a changelog for openHABian?
|
||||
Official announcements are co-located with the download links [here](https://github.com/openhab/openhabian/releases).
|
||||
Official announcements are displayed on starting `openhabian-config` and stored in `NEWS.md` (a file in `/opt/openhabian`).
|
||||
Release notes are also co-located with the download links [here](https://github.com/openhab/openhabian/releases).
|
||||
If you want to stay in touch with all the latest code changes under the hood, see [commit history](https://github.com/openhab/openhabian/commits/main) for openHABian.
|
||||
You'll also see commits "fly by" when executing the "Update" function within the openHABian Configuration Tool.
|
||||
|
||||
|
|
Loading…
Reference in New Issue