Updated external content (Jenkins build 1822)
parent
0900dc9b4a
commit
f397f2e297
|
@ -44,6 +44,7 @@ Binding for the Bosch Smart Home.
|
|||
## Supported Things
|
||||
|
||||
### Smart Home Controller
|
||||
|
||||
The Smart Home Controller is the central hub that allows you to monitor and control your smart home devices from one place.
|
||||
|
||||
**Bridge Type ID**: ``shc``
|
||||
|
@ -118,6 +119,7 @@ Detects every movement through an intelligent combination of passive infra-red t
|
|||
| Channel Type ID | Item Type | Writable | Description |
|
||||
| --------------- | --------- | :------: | ------------------------------ |
|
||||
| latest-motion | DateTime | ☐ | The date of the latest motion. |
|
||||
| illuminance | Number | ☐ | The illuminance level measured by the sensor as integer value in the range 0 to 1000. Note that the sensor only reports the value if the motion light service is activated or if the illuminance state is used in a scenario trigger condition. |
|
||||
| battery-level | Number | ☐ | Current battery level percentage as integer number. Bosch-specific battery levels are mapped to numbers as follows: `OK`: 100, `LOW_BATTERY`: 10, `CRITICAL_LOW`: 1, `CRITICALLY_LOW_BATTERY`: 1, `NOT_AVAILABLE`: `UNDEF`. |
|
||||
| low-battery | Switch | ☐ | Indicates whether the battery is low (`ON`) or OK (`OFF`). |
|
||||
|
||||
|
|
|
@ -114,10 +114,15 @@
|
|||
|
||||
<channels>
|
||||
<channel id="latest-motion" typeId="latest-motion"/>
|
||||
<channel id="illuminance" typeId="illuminance"/>
|
||||
<channel id="battery-level" typeId="system.battery-level"/>
|
||||
<channel id="low-battery" typeId="system.low-battery"/>
|
||||
</channels>
|
||||
|
||||
<properties>
|
||||
<property name="thingTypeVersion">1</property>
|
||||
</properties>
|
||||
|
||||
<config-description-ref uri="thing-type:boschshc:device"/>
|
||||
|
||||
</thing-type>
|
||||
|
@ -490,6 +495,13 @@
|
|||
<state readOnly="true"/>
|
||||
</channel-type>
|
||||
|
||||
<channel-type id="illuminance">
|
||||
<item-type>Number</item-type>
|
||||
<label>Illuminance</label>
|
||||
<description>The illuminance level measured by the sensor (0 to 1000).</description>
|
||||
<state min="0" max="1000" step="1" readOnly="true"/>
|
||||
</channel-type>
|
||||
|
||||
<channel-type id="level">
|
||||
<item-type>Rollershutter</item-type>
|
||||
<label>Level</label>
|
||||
|
|
Loading…
Reference in New Issue