Skip to content

Commit

Permalink
openhab#14 Add detailed description for purity channel
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Oeing <[email protected]>
  • Loading branch information
coeing committed Nov 18, 2020
1 parent b7afe69 commit 23f15a6
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
32 changes: 16 additions & 16 deletions bundles/org.openhab.binding.boschshc/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Binding for the Bosch Smart Home Controller.
**Thing Type ID**: `in-wall-switch`

| Channel Type ID | Item Type | Description |
| ------------------ | ------------- | -------------------------------------------- |
|--------------------|---------------|----------------------------------------------|
| power-switch | Switch | Current state of the switch. |
| power-consumption | Number:Power | Current power consumption (W) of the device. |
| energy-consumption | Number:Energy | Energy consumption of the device. |
Expand All @@ -34,47 +34,47 @@ Binding for the Bosch Smart Home Controller.

**Thing Type ID**: `twinguard`

| Channel Type ID | Item Type | Description |
| ------------------ | -------------------- | --------------------------------------------- |
| temperature | Number:Temperature | Current measured temperature. |
| temperature-rating | String | Rating of the currently measured temperature. |
| humidity | Number:Dimensionless | Current measured humidity. |
| humidity-rating | String | Rating of current measured humidity. |
| purity | String | Purity of the air. |
| purity-rating | String | Rating of current measured purity. |
| air-description | String | Overall description of the air quality. |
| combined-rating | String | Combined rating of the air quality. |
| Channel Type ID | Item Type | Description |
|--------------------|----------------------|---------------------------------------------------------------------------------------------------|
| temperature | Number:Temperature | Current measured temperature. |
| temperature-rating | String | Rating of the currently measured temperature. |
| humidity | Number:Dimensionless | Current measured humidity. |
| humidity-rating | String | Rating of current measured humidity. |
| purity | Number:Dimensionless | Purity of the air (ppm). Range from 500 to 5500 ppm. A higher value indicates a higher pollution. |
| purity-rating | String | Rating of current measured purity. |
| air-description | String | Overall description of the air quality. |
| combined-rating | String | Combined rating of the air quality. |

### Bosch Window/Door contacts

**Thing Type ID**: `window-contact`

| Channel Type ID | Item Type | Description |
| --------------- | --------- | ---------------------------- |
|-----------------|-----------|------------------------------|
| contact | Contact | Contact state of the device. |

### Bosch Motion Detector

**Thing Type ID**: `motion-detector`

| Channel Type ID | Item Type | Description |
| --------------- | --------- | ------------------------------ |
|-----------------|-----------|--------------------------------|
| latest-motion | DateTime | The date of the latest motion. |

### Bosch Shutter Control in-wall

**Thing Type ID**: `shutter-control`

| Channel Type ID | Item Type | Description |
| --------------- | ------------- | ---------------------------------------- |
|-----------------|---------------|------------------------------------------|
| level | Rollershutter | Current open ratio (0 to 100, Step 0.5). |

### Bosch Thermostat

**Thing Type ID**: `thermostat`

| Channel Type ID | Item Type | Description |
| --------------------- | -------------------- | ---------------------------------------------- |
|-----------------------|----------------------|------------------------------------------------|
| temperature | Number:Temperature | Current measured temperature. |
| valve-tappet-position | Number:Dimensionless | Current open ratio of valve tappet (0 to 100). |

Expand All @@ -83,7 +83,7 @@ Binding for the Bosch Smart Home Controller.
**Thing Type ID**: `climate-control`

| Channel Type ID | Item Type | Description |
| -------------------- | ------------------ | ----------------------------- |
|----------------------|--------------------|-------------------------------|
| temperature | Number:Temperature | Current measured temperature. |
| setpoint-temperature | Number:Temperature | Desired temperature. |

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -175,10 +175,10 @@
</channel-type>

<channel-type id="purity">
<item-type>Number</item-type>
<item-type>Number:Dimensionless</item-type>
<label>Purity</label>
<description>Purity of the air.</description>
<state readOnly="true"/>
<description>Purity of the air. A higher value indicates a higher pollution.</description>
<state min="500" max="5500" pattern="%.1f ppm" readOnly="true"/>
</channel-type>

<channel-type id="air-description">
Expand Down

0 comments on commit 23f15a6

Please sign in to comment.