Updated external content (Jenkins build 2497)
parent
8f085ab464
commit
c67eaead66
|
@ -43,8 +43,9 @@ Supported configuration parameters for the things:
|
||||||
Following channels are supported for `RadonEye` thing:
|
Following channels are supported for `RadonEye` thing:
|
||||||
|
|
||||||
| Channel ID | Item Type | Description |
|
| Channel ID | Item Type | Description |
|
||||||
| ------------------ | ------------------------ | ------------------------------------------- |
|
|------------|----------------------------------|----------------------------------------|
|
||||||
| radon | Number:Density | The measured radon level |
|
| radon | Number:RadiationSpecificActivity | The measured radon level |
|
||||||
|
| decay | Number:Dimensionless | The decay count in the last time frame |
|
||||||
|
|
||||||
## Example
|
## Example
|
||||||
|
|
||||||
|
@ -57,5 +58,6 @@ bluetooth:radoneye_rd200:adapter1:sensor1 "radoneye Wave Plus Sensor 1" (blueto
|
||||||
radoneye.items:
|
radoneye.items:
|
||||||
|
|
||||||
```java
|
```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" }
|
||||||
```
|
```
|
||||||
|
|
|
@ -17,8 +17,13 @@
|
||||||
<channels>
|
<channels>
|
||||||
<channel id="rssi" typeId="rssi"/>
|
<channel id="rssi" typeId="rssi"/>
|
||||||
<channel id="radon" typeId="radoneye_radon"/>
|
<channel id="radon" typeId="radoneye_radon"/>
|
||||||
|
<channel id="decay" typeId="radoneye_decay"/>
|
||||||
</channels>
|
</channels>
|
||||||
|
|
||||||
|
<properties>
|
||||||
|
<property name="thingTypeVersion">1</property>
|
||||||
|
</properties>
|
||||||
|
|
||||||
<config-description>
|
<config-description>
|
||||||
<parameter name="address" type="text">
|
<parameter name="address" type="text">
|
||||||
<label>Address</label>
|
<label>Address</label>
|
||||||
|
@ -38,9 +43,15 @@
|
||||||
</thing-type>
|
</thing-type>
|
||||||
|
|
||||||
<channel-type id="radoneye_radon">
|
<channel-type id="radoneye_radon">
|
||||||
<item-type>Number:Density</item-type>
|
<item-type>Number:RadiationSpecificActivity</item-type>
|
||||||
<label>Radon Current Level</label>
|
<label>Radon Current Level</label>
|
||||||
<description>Radon gas level</description>
|
<description>Radon gas level</description>
|
||||||
<state readOnly="true" pattern="%.0f %unit%"/>
|
<state readOnly="true" pattern="%.0f %unit%"/>
|
||||||
</channel-type>
|
</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>
|
</thing:thing-descriptions>
|
||||||
|
|
Loading…
Reference in New Issue