Updated external content (Jenkins build 1156)
parent
1e476cb9ea
commit
c7684f63a8
|
@ -24,6 +24,7 @@ The Netatmo binding integrates the following Netatmo products:
|
|||
- *Outdoor Camera / Presence*. Reports last event, consult picture and video from event/camera.
|
||||
- *Doorbell*
|
||||
- *Smoke Detector*
|
||||
- *Smart Door Sensor*
|
||||
|
||||
See https://www.netatmo.com/ for details on their product.
|
||||
|
||||
|
@ -67,6 +68,13 @@ The Account bridge has the following configuration elements:
|
|||
|
||||
(*) Strictly said this parameter is not mandatory at first run, until you grant your binding on Netatmo Connect. Once present, you'll not have to grant again.
|
||||
|
||||
**Supported channels for the Account bridge thing:**
|
||||
|
||||
| Channel Group | Channel Id | Item Type | Description |
|
||||
|---------------|---------------|-----------|--------------------------------------------------------------------|
|
||||
| monitoring | request-count | Number | Number of requests transmitted to Netatmo API during the last hour |
|
||||
|
||||
|
||||
### Configure the Bridge
|
||||
|
||||
1. Complete the Netatmo Application Registration if you have not already done so, see above.
|
||||
|
@ -102,6 +110,7 @@ Now that you have got your bridge _ONLINE_ you can now start a scan with the bin
|
|||
| thermostat | Thing | NATherm1 | The Thermostat device placed in a given room. | id |
|
||||
| room | Thing | NARoom | A room in your house. | id |
|
||||
| valve | Thing | NRV | A valve controlling a radiator. | id |
|
||||
| tag | Thing | NACamDoorTag | A door / window sensor | id |
|
||||
|
||||
|
||||
|
||||
|
@ -618,6 +627,17 @@ Note: live feeds either locally or via VPN are not available in Netatmo API.
|
|||
| battery | low-battery | Switch | Read-only | Low battery |
|
||||
|
||||
|
||||
**Supported channels for the Door Tag thing:**
|
||||
|
||||
| Channel Group | Channel ID | Item Type | Read/Write | Description |
|
||||
|---------------|-------------------|--------------|------------|------------------------------------------------------|
|
||||
| tag | status | Contact | Read-only | Status of tag (OPEN,CLOSED) |
|
||||
| signal | strength | Number | Read-only | Signal strength (0 for no signal, 1 for weak...) |
|
||||
| signal | value | Number:Power | Read-only | Signal strength in dBm |
|
||||
| timestamp | last-seen | DateTime | Read-only | Last time the module reported its presence |
|
||||
| battery | value | Number | Read-only | Battery level |
|
||||
| battery | low-battery | Switch | Read-only | Low battery |
|
||||
|
||||
### Welcome Person
|
||||
|
||||
Netatmo API distinguishes two kinds of persons:
|
||||
|
|
|
@ -37,6 +37,13 @@
|
|||
<state readOnly="true"/>
|
||||
</channel-type>
|
||||
|
||||
<channel-type id="tag-status">
|
||||
<item-type>Contact</item-type>
|
||||
<label>Door Status</label>
|
||||
<category>Door</category>
|
||||
<state readOnly="true"/>
|
||||
</channel-type>
|
||||
|
||||
<channel-type id="anticipating-heating">
|
||||
<item-type>Switch</item-type>
|
||||
<label>Anticipated Heating</label>
|
||||
|
@ -85,6 +92,13 @@
|
|||
<state readOnly="false" pattern="%s"/>
|
||||
</channel-type>
|
||||
|
||||
<channel-type id="request-count" advanced="true">
|
||||
<item-type>Number</item-type>
|
||||
<label>Request Count</label>
|
||||
<description>Number of requests transmitted to Netatmo API during the last hour.</description>
|
||||
<state readOnly="true" pattern="%d"/>
|
||||
</channel-type>
|
||||
|
||||
<channel-type id="person-count">
|
||||
<item-type>Number</item-type>
|
||||
<label>Person Count</label>
|
||||
|
|
|
@ -4,6 +4,13 @@
|
|||
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">
|
||||
|
||||
<channel-group-type id="monitoring">
|
||||
<label>API Monitoring</label>
|
||||
<channels>
|
||||
<channel id="request-count" typeId="request-count"/>
|
||||
</channels>
|
||||
</channel-group-type>
|
||||
|
||||
<channel-group-type id="signal">
|
||||
<label>Signal</label>
|
||||
<channels>
|
||||
|
|
|
@ -187,6 +187,13 @@
|
|||
</channels>
|
||||
</channel-group-type>
|
||||
|
||||
<channel-group-type id="tag">
|
||||
<label>Door Tag</label>
|
||||
<channels>
|
||||
<channel id="status" typeId="tag-status"/>
|
||||
</channels>
|
||||
</channel-group-type>
|
||||
|
||||
<channel-group-type id="presence">
|
||||
<label>Presence Camera</label>
|
||||
<channels>
|
||||
|
|
Loading…
Reference in New Issue