Updated external content (Jenkins build 1372)
parent
efcf04eab9
commit
d3bd32109f
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,61 @@
|
||||||
|
---
|
||||||
|
id: bluetooth.radoneye
|
||||||
|
label: radoneye
|
||||||
|
title: radoneye - Bindings
|
||||||
|
type: binding
|
||||||
|
description: "This extension adds support for [RadonEye](http://radonftlab.com/radon-sensor-product/radon-detector/rd200/) radon bluetooth detector."
|
||||||
|
since: 3x
|
||||||
|
install: manual
|
||||||
|
---
|
||||||
|
|
||||||
|
<!-- Attention authors: Do not edit directly. Please add your changes to the appropriate source repository -->
|
||||||
|
|
||||||
|
{% include base.html %}
|
||||||
|
|
||||||
|
# radoneye
|
||||||
|
|
||||||
|
This extension adds support for [RadonEye](http://radonftlab.com/radon-sensor-product/radon-detector/rd200/) radon bluetooth detector.
|
||||||
|
|
||||||
|
## Supported Things
|
||||||
|
|
||||||
|
Following thing types are supported by this extension:
|
||||||
|
|
||||||
|
| Thing Type ID | Description |
|
||||||
|
| ------------------- | -------------------------------------- |
|
||||||
|
| radoneye_rd200 | Original RadonEye (RD200) |
|
||||||
|
|
||||||
|
## Discovery
|
||||||
|
|
||||||
|
As any other Bluetooth device, RadonEye devices are discovered automatically by the corresponding bridge.
|
||||||
|
|
||||||
|
## Thing Configuration
|
||||||
|
|
||||||
|
Supported configuration parameters for the things:
|
||||||
|
|
||||||
|
| Property | Type | Default | Required | Description |
|
||||||
|
|---------------------------------|---------|---------|----------|-----------------------------------------------------------------|
|
||||||
|
| address | String | | Yes | Bluetooth address of the device (in format "XX:XX:XX:XX:XX:XX") |
|
||||||
|
| refreshInterval | Integer | 300 | No | How often a refresh shall occur in seconds |
|
||||||
|
|
||||||
|
## Channels
|
||||||
|
|
||||||
|
Following channels are supported for `RadonEye` thing:
|
||||||
|
|
||||||
|
| Channel ID | Item Type | Description |
|
||||||
|
| ------------------ | ------------------------ | ------------------------------------------- |
|
||||||
|
| radon | Number:Density | The measured radon level |
|
||||||
|
|
||||||
|
|
||||||
|
## Example
|
||||||
|
|
||||||
|
radoneye.things (assuming you have a Bluetooth bridge with the ID `bluetooth:bluegiga:adapter1`:
|
||||||
|
|
||||||
|
```
|
||||||
|
bluetooth:radoneye_rd200:adapter1:sensor1 "radoneye Wave Plus Sensor 1" (bluetooth:bluegiga:adapter1) [ address="12:34:56:78:9A:BC", refreshInterval=300 ]
|
||||||
|
```
|
||||||
|
|
||||||
|
radoneye.items:
|
||||||
|
|
||||||
|
```
|
||||||
|
Number:Density radon "Radon level [%d %unit%]" { channel="bluetooth:radoneye_rd200:adapter1:sensor1:radon" }
|
||||||
|
```
|
|
@ -552,7 +552,7 @@ Warnings:
|
||||||
| live | vpn-stream-url (*) | String | Read-only | Url of the live stream for this camera through Netatmo VPN. |
|
| live | vpn-stream-url (*) | String | Read-only | Url of the live stream for this camera through Netatmo VPN. |
|
||||||
| signal | strength | Number | Read-only | Signal strength (0 for no signal, 1 for weak...) |
|
| signal | strength | Number | Read-only | Signal strength (0 for no signal, 1 for weak...) |
|
||||||
| signal | value | Number:Power | Read-only | Signal strength in dBm |
|
| signal | value | Number:Power | Read-only | Signal strength in dBm |
|
||||||
| presence | floodlight | Switch | Read-write | Sets the floodlight to ON/OFF/AUTO |
|
| presence | floodlight | String | Read-write | Sets the floodlight to ON/OFF/AUTO |
|
||||||
| last-event | type | String | Read-only | Type of event |
|
| last-event | type | String | Read-only | Type of event |
|
||||||
| last-event | subtype | String | Read-only | Sub-type of event |
|
| last-event | subtype | String | Read-only | Sub-type of event |
|
||||||
| last-event | time | DateTime | Read-only | Time of occurrence of event |
|
| last-event | time | DateTime | Read-only | Time of occurrence of event |
|
||||||
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<thing:thing-descriptions bindingId="bluetooth"
|
||||||
|
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="radoneye_rd200">
|
||||||
|
<supported-bridge-type-refs>
|
||||||
|
<bridge-type-ref id="roaming"/>
|
||||||
|
<bridge-type-ref id="bluegiga"/>
|
||||||
|
<bridge-type-ref id="bluez"/>
|
||||||
|
</supported-bridge-type-refs>
|
||||||
|
|
||||||
|
<label>RadonEye RD200</label>
|
||||||
|
<description>Indoor radon monitor</description>
|
||||||
|
|
||||||
|
<channels>
|
||||||
|
<channel id="rssi" typeId="rssi"/>
|
||||||
|
<channel id="radon" typeId="radoneye_radon"/>
|
||||||
|
</channels>
|
||||||
|
|
||||||
|
<config-description>
|
||||||
|
<parameter name="address" type="text">
|
||||||
|
<label>Address</label>
|
||||||
|
<description>Bluetooth address in XX:XX:XX:XX:XX:XX format</description>
|
||||||
|
</parameter>
|
||||||
|
<parameter name="refreshInterval" type="integer" min="10">
|
||||||
|
<label>Refresh Interval</label>
|
||||||
|
<description>States how often a refresh shall occur in seconds. This could have impact to battery lifetime</description>
|
||||||
|
<default>300</default>
|
||||||
|
</parameter>
|
||||||
|
</config-description>
|
||||||
|
</thing-type>
|
||||||
|
|
||||||
|
<channel-type id="radoneye_radon">
|
||||||
|
<item-type>Number:Density</item-type>
|
||||||
|
<label>Radon Current Level</label>
|
||||||
|
<description>Radon gas level</description>
|
||||||
|
<state readOnly="true" pattern="%.0f %unit%"/>
|
||||||
|
</channel-type>
|
||||||
|
</thing:thing-descriptions>
|
|
@ -152,6 +152,7 @@
|
||||||
<item-type>String</item-type>
|
<item-type>String</item-type>
|
||||||
<label>Floodlight</label>
|
<label>Floodlight</label>
|
||||||
<description>State of the floodlight (On/Off/Auto)</description>
|
<description>State of the floodlight (On/Off/Auto)</description>
|
||||||
|
<category>Lightbulb</category>
|
||||||
<state pattern="%s">
|
<state pattern="%s">
|
||||||
<options>
|
<options>
|
||||||
<option value="ON">On</option>
|
<option value="ON">On</option>
|
||||||
|
|
|
@ -373,7 +373,7 @@ This has a few disadvantages:
|
||||||
* Read status aren't synced between devices.
|
* Read status aren't synced between devices.
|
||||||
* The maximum number of messages that can be received during one fetch is limited to 20.
|
* The maximum number of messages that can be received during one fetch is limited to 20.
|
||||||
|
|
||||||
### I have issues with openHAB 3 UI or HABPanel
|
### I have issues with Main UI or HABPanel
|
||||||
|
|
||||||
The app uses Android WebViews to render all UIs except Sitemaps.
|
The app uses Android WebViews to render all UIs except Sitemaps.
|
||||||
Please make sure you're running the latest WebView version: https://play.google.com/store/apps/details?id=com.google.android.webview
|
Please make sure you're running the latest WebView version: https://play.google.com/store/apps/details?id=com.google.android.webview
|
||||||
|
|
Loading…
Reference in New Issue