Updated external content (Jenkins build 1594)

pull/2109/head
openHAB Build Server 2023-07-14 05:33:06 +00:00
parent f96af794dd
commit dbb5e844fe
6 changed files with 30 additions and 12 deletions

View File

@ -578,6 +578,7 @@ Warnings:
| signal | strength | Number | Read-only | Signal strength (0 for no signal, 1 for weak...) |
| signal | value | Number:Power | Read-only | Signal strength in dBm |
| presence | floodlight | String | Read-write | Sets the floodlight to ON/OFF/AUTO |
| presence | siren | Switch | Read-write | Status of the siren, if silent or emitting an alarm |
| last-event | type | String | Read-only | Type of event |
| last-event | subtype | String | Read-only | Sub-type of event |
| last-event | time | DateTime | Read-only | Time of occurrence of event |
@ -629,7 +630,7 @@ Note: live feeds either locally or via VPN are not available in Netatmo API.
| Channel Group | Channel ID | Item Type | Read/Write | Description |
| ------------- | ----------- | ------------ | ---------- | --------------------------------------------------- |
| siren | status | String | Read-only | Status of the siren, if silent or emitting an alarm |
| siren | status | Switch | Read-only | Status of the siren, if silent or emitting an alarm |
| siren | monitoring | Switch | Read-only | State of the siren device |
| signal | strength | Number | Read-only | Signal strength (0 for no signal, 1 for weak...) |
| signal | value | Number:Power | Read-only | Signal strength in dBm |

View File

@ -77,6 +77,16 @@ This is quite useful with a free OpenUV account (50 req/day included): in this c
Thing can be extended with as many SafeExposure channels as needed for each skin type.
## Provided icon set
This binding has its own IconProvider and makes available the following list of icons
| Icon Name | Dynamic | Illustration |
|--------------------|---------|--------------|
| oh:openuv:ozone | No | ![](src/main/resources/icon/ozone.svg) |
| oh:openuv:uv-alarm | Yes | ![](src/main/resources/icon/uv-alarm.svg) |
| oh:openuv:uv-index | Yes | ![](src/main/resources/icon/uv-index.svg) |
## Examples
demo.things:

View File

@ -18,15 +18,18 @@
</channel-type>
<channel-type id="siren-status">
<item-type>String</item-type>
<label>Status</label>
<item-type>Switch</item-type>
<label>Siren</label>
<description>Status of the siren</description>
<state pattern="%s" readOnly="true">
<options>
<option value="no_sound">Silent</option>
<option value="sound">Alarm</option>
</options>
</state>
<category>Soundvolume</category>
<state readOnly="true"/>
</channel-type>
<channel-type id="siren-status-rw">
<item-type>Switch</item-type>
<label>Siren</label>
<description>Status of the siren</description>
<category>Soundvolume</category>
</channel-type>
<channel-type id="window-open">

View File

@ -225,6 +225,7 @@
<channel-group-type id="presence">
<label>Presence Camera</label>
<channels>
<channel id="siren" typeId="siren-status-rw"/>
<channel id="floodlight" typeId="floodlight-mode"/>
</channels>
</channel-group-type>

View File

@ -74,6 +74,7 @@
<item-type>Number</item-type>
<label>UV Index</label>
<description>UV Index</description>
<category>oh:openuv:uv-index</category>
<state readOnly="true" pattern="%.0f/16" min="0" max="16"/>
</channel-type>
@ -81,6 +82,7 @@
<item-type>Number</item-type>
<label>UV Max</label>
<description>Max UV Index for the day (at solar noon)</description>
<category>oh:openuv:uv-index</category>
<state readOnly="true" pattern="%.0f/16" min="0" max="16"/>
</channel-type>
@ -88,6 +90,7 @@
<item-type>Number:ArealDensity</item-type>
<label>Ozone</label>
<description>Ozone level from OMI data</description>
<category>oh:openuv:ozone</category>
<state readOnly="true" pattern="%.1f %unit%"/>
</channel-type>
@ -110,7 +113,7 @@
<item-type>Number:Time</item-type>
<label>Safe Exposure</label>
<description>Safe exposure duration for Fitzpatrick Skin Types.</description>
<category>time</category>
<category>Time</category>
<state readOnly="true" pattern="%d %unit%"/>
<config-description>
<parameter name="index" type="text">
@ -147,7 +150,7 @@
<channel-type id="Alert">
<item-type>Number</item-type>
<label>UV Alert</label>
<category>alarm</category>
<category>oh:openuv:uv-alarm</category>
<state readOnly="true">
<options>
<option value="0">Low</option>

View File

@ -64,7 +64,7 @@ To see debug output during the image installation process, you need to use the p
If you have a console available (monitor and keyboard), you may attach it to follow the install process **but** be aware that attaching a keyboard may cause the installation to fail.
Now insert the SD card and turn on your system.
If you don't have any console, access the web console at `http://<yourhostip>:80/`.
If you don't have any console, access the web console at `http://<yourhostip>:81/`.
It will display the contents of `/boot/first-log.boot` at intervals of some seconds while installing.
Mind you that if installation fails, network access may or may not be possible so you might need to access the box via console anyway in order to find out what went wrong.