Updated external content (Jenkins build 1004)

pull/1847/head
openHAB Build Server 2022-06-23 22:23:39 +00:00
parent 464633b285
commit 277f0b8bb5
3 changed files with 50 additions and 0 deletions

View File

@ -23,6 +23,7 @@ The Netatmo binding integrates the following Netatmo products:
- *Siren*
- *Outdoor Camera / Presence*. Reports last event, consult picture and video from event/camera.
- *Doorbell*
- *Smoke Detector*
See https://www.netatmo.com/ for details on their product.
@ -589,6 +590,22 @@ Person things are automatically created in discovery process for all known perso
All these channels except at-home are read only.
### Netatmo Smart Smoke Detector
All these channels are read only.
**Supported channels for the Smoke Detector thing:**
| Channel Group | Channel Id | Item Type | Description |
|---------------|--------------|--------------|--------------------------------------------------|
| signal | strength | Number | Signal strength (0 for no signal, 1 for weak...) |
| signal | value | Number:Power | Signal strength in dBm |
| timestamp | last-seen | DateTime | Last time the module reported its presence |
| last-event | type | String | Type of event |
| last-event | time | DateTime | Moment of the last event for this person |
| last-event | subtype | String | Sub-type of event |
| last-event | message | String | Last event message from this person |
## Configuration Examples

View File

@ -357,6 +357,14 @@
<option value="ACCEPTED_CALL">Call is incoming</option>
<option value="INCOMING_CALL">Call has been answered by a user</option>
<option value="MISSED_CALL">Call has not been answered by anyone</option>
<option value="HUSH">Smoke detector status</option>
<option value="SMOKE">Smoke detection</option>
<option value="TAMPERED">Smoke Detector tamper</option>
<option value="WIFI_STATUS">Wifi status</option>
<option value="BATTERY_STATUS">Battery status</option>
<option value="DETECTION_CHAMBER_STATUS">Detection chamber status</option>
<option value="SOUND_TEST">Sound test</option>
<option value="NEW_DEVICE">A device has been added</option>
</options>
</state>
</channel-type>
@ -382,6 +390,18 @@
<option value="MOVEMENT_HUMAN">Human seen</option>
<option value="MOVEMENT_VEHICLE">Car seen</option>
<option value="MOVEMENT_ANIMAL">Animal seen</option>
<option value="SOUND_TEST_OK">Alarm test successful</option>
<option value="SOUND_TEST_ERROR">Alarm test failed</option>
<option value="DETECTOR_READY">Smoke detector installed</option>
<option value="DETECTOR_TAMPERED">Smoke detector tampered</option>
<option value="DETECTION_CHAMBER_CLEAN">Detection chamber clean</option>
<option value="DETECTION_CHAMBER_DIRTY">Detection chamber dusty</option>
<option value="BATTERY_LOW">Battery low</option>
<option value="BATTERY_VERY_LOW">Battery very low</option>
<option value="SMOKE_CLEARED">Smoke cleared</option>
<option value="SMOKE_DETECTED">Smoke detected</option>
<option value="WIFI_STATUS_OK">Wi-Fi status ok</option>
<option value="WIFI_STATUS_ERROR">Wi-Fi status error</option>
</options>
</state>
</channel-type>

View File

@ -140,6 +140,19 @@
</channels>
</channel-group-type>
<channel-group-type id="last-event-smoke">
<label>Last Event</label>
<channels>
<channel id="type" typeId="event-type"/>
<channel id="time" typeId="timestamp">
<label>Event Timestamp</label>
<description>Moment when event occurred.</description>
</channel>
<channel id="subtype" typeId="event-subtype"/>
<channel id="message" typeId="message"/>
</channels>
</channel-group-type>
<channel-group-type id="last-event-person">
<label>Last Event</label>
<channels>