Updated external content (Jenkins build 1594)
parent
f96af794dd
commit
dbb5e844fe
|
@ -578,6 +578,7 @@ Warnings:
|
||||||
| 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 | String | Read-write | Sets the floodlight to ON/OFF/AUTO |
|
| 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 | 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 |
|
||||||
|
@ -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 |
|
| 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 |
|
| 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 | 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 |
|
||||||
|
|
|
@ -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.
|
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 |  |
|
||||||
|
| oh:openuv:uv-alarm | Yes |  |
|
||||||
|
| oh:openuv:uv-index | Yes |  |
|
||||||
|
|
||||||
## Examples
|
## Examples
|
||||||
|
|
||||||
demo.things:
|
demo.things:
|
||||||
|
|
|
@ -18,15 +18,18 @@
|
||||||
</channel-type>
|
</channel-type>
|
||||||
|
|
||||||
<channel-type id="siren-status">
|
<channel-type id="siren-status">
|
||||||
<item-type>String</item-type>
|
<item-type>Switch</item-type>
|
||||||
<label>Status</label>
|
<label>Siren</label>
|
||||||
<description>Status of the siren</description>
|
<description>Status of the siren</description>
|
||||||
<state pattern="%s" readOnly="true">
|
<category>Soundvolume</category>
|
||||||
<options>
|
<state readOnly="true"/>
|
||||||
<option value="no_sound">Silent</option>
|
</channel-type>
|
||||||
<option value="sound">Alarm</option>
|
|
||||||
</options>
|
<channel-type id="siren-status-rw">
|
||||||
</state>
|
<item-type>Switch</item-type>
|
||||||
|
<label>Siren</label>
|
||||||
|
<description>Status of the siren</description>
|
||||||
|
<category>Soundvolume</category>
|
||||||
</channel-type>
|
</channel-type>
|
||||||
|
|
||||||
<channel-type id="window-open">
|
<channel-type id="window-open">
|
||||||
|
|
|
@ -225,6 +225,7 @@
|
||||||
<channel-group-type id="presence">
|
<channel-group-type id="presence">
|
||||||
<label>Presence Camera</label>
|
<label>Presence Camera</label>
|
||||||
<channels>
|
<channels>
|
||||||
|
<channel id="siren" typeId="siren-status-rw"/>
|
||||||
<channel id="floodlight" typeId="floodlight-mode"/>
|
<channel id="floodlight" typeId="floodlight-mode"/>
|
||||||
</channels>
|
</channels>
|
||||||
</channel-group-type>
|
</channel-group-type>
|
||||||
|
|
|
@ -74,6 +74,7 @@
|
||||||
<item-type>Number</item-type>
|
<item-type>Number</item-type>
|
||||||
<label>UV Index</label>
|
<label>UV Index</label>
|
||||||
<description>UV Index</description>
|
<description>UV Index</description>
|
||||||
|
<category>oh:openuv:uv-index</category>
|
||||||
<state readOnly="true" pattern="%.0f/16" min="0" max="16"/>
|
<state readOnly="true" pattern="%.0f/16" min="0" max="16"/>
|
||||||
</channel-type>
|
</channel-type>
|
||||||
|
|
||||||
|
@ -81,6 +82,7 @@
|
||||||
<item-type>Number</item-type>
|
<item-type>Number</item-type>
|
||||||
<label>UV Max</label>
|
<label>UV Max</label>
|
||||||
<description>Max UV Index for the day (at solar noon)</description>
|
<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"/>
|
<state readOnly="true" pattern="%.0f/16" min="0" max="16"/>
|
||||||
</channel-type>
|
</channel-type>
|
||||||
|
|
||||||
|
@ -88,6 +90,7 @@
|
||||||
<item-type>Number:ArealDensity</item-type>
|
<item-type>Number:ArealDensity</item-type>
|
||||||
<label>Ozone</label>
|
<label>Ozone</label>
|
||||||
<description>Ozone level from OMI data</description>
|
<description>Ozone level from OMI data</description>
|
||||||
|
<category>oh:openuv:ozone</category>
|
||||||
<state readOnly="true" pattern="%.1f %unit%"/>
|
<state readOnly="true" pattern="%.1f %unit%"/>
|
||||||
</channel-type>
|
</channel-type>
|
||||||
|
|
||||||
|
@ -110,7 +113,7 @@
|
||||||
<item-type>Number:Time</item-type>
|
<item-type>Number:Time</item-type>
|
||||||
<label>Safe Exposure</label>
|
<label>Safe Exposure</label>
|
||||||
<description>Safe exposure duration for Fitzpatrick Skin Types.</description>
|
<description>Safe exposure duration for Fitzpatrick Skin Types.</description>
|
||||||
<category>time</category>
|
<category>Time</category>
|
||||||
<state readOnly="true" pattern="%d %unit%"/>
|
<state readOnly="true" pattern="%d %unit%"/>
|
||||||
<config-description>
|
<config-description>
|
||||||
<parameter name="index" type="text">
|
<parameter name="index" type="text">
|
||||||
|
@ -147,7 +150,7 @@
|
||||||
<channel-type id="Alert">
|
<channel-type id="Alert">
|
||||||
<item-type>Number</item-type>
|
<item-type>Number</item-type>
|
||||||
<label>UV Alert</label>
|
<label>UV Alert</label>
|
||||||
<category>alarm</category>
|
<category>oh:openuv:uv-alarm</category>
|
||||||
<state readOnly="true">
|
<state readOnly="true">
|
||||||
<options>
|
<options>
|
||||||
<option value="0">Low</option>
|
<option value="0">Low</option>
|
||||||
|
|
|
@ -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.
|
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.
|
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.
|
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.
|
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.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue