Updated external content (Jenkins build 2497)

final
openHAB Build Server 2025-01-31 05:45:23 +00:00
parent 8f085ab464
commit c67eaead66
2 changed files with 18 additions and 5 deletions

View File

@ -42,9 +42,10 @@ Supported configuration parameters for the things:
Following channels are supported for `RadonEye` thing:
| Channel ID | Item Type | Description |
| ------------------ | ------------------------ | ------------------------------------------- |
| radon | Number:Density | The measured radon level |
| Channel ID | Item Type | Description |
|------------|----------------------------------|----------------------------------------|
| radon | Number:RadiationSpecificActivity | The measured radon level |
| decay | Number:Dimensionless | The decay count in the last time frame |
## Example
@ -57,5 +58,6 @@ bluetooth:radoneye_rd200:adapter1:sensor1 "radoneye Wave Plus Sensor 1" (blueto
radoneye.items:
```java
Number:Density radon "Radon level [%d %unit%]" { channel="bluetooth:radoneye_rd200:adapter1:sensor1:radon" }
Number:RadiationSpecificActivity radon "Radon level [%d %unit%]" { channel="bluetooth:radoneye_rd200:adapter1:sensor1:radon" }
Number:Dimensionless decay "Decay count [%d %unit%]" { channel="bluetooth:radoneye_rd200:adapter1:sensor1:decay" }
```

View File

@ -17,8 +17,13 @@
<channels>
<channel id="rssi" typeId="rssi"/>
<channel id="radon" typeId="radoneye_radon"/>
<channel id="decay" typeId="radoneye_decay"/>
</channels>
<properties>
<property name="thingTypeVersion">1</property>
</properties>
<config-description>
<parameter name="address" type="text">
<label>Address</label>
@ -38,9 +43,15 @@
</thing-type>
<channel-type id="radoneye_radon">
<item-type>Number:Density</item-type>
<item-type>Number:RadiationSpecificActivity</item-type>
<label>Radon Current Level</label>
<description>Radon gas level</description>
<state readOnly="true" pattern="%.0f %unit%"/>
</channel-type>
<channel-type id="radoneye_decay">
<item-type>Number:Dimensionless</item-type>
<label>Decay Counter</label>
<description>The decay count in the last time frame</description>
<state readOnly="true" pattern="%.0f"/>
</channel-type>
</thing:thing-descriptions>